From 8aa32b1950a059d77889675a85aac685f475e1de Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 22 Sep 2022 16:41:00 +0100 Subject: [PATCH 001/109] Add model and associations for captivity proces --- app/models/captivity_process.rb | 8 ++++++++ .../20220922143605_create_captivity_processes.rb | 15 +++++++++++++++ spec/models/captivity_process_spec.rb | 5 +++++ 3 files changed, 28 insertions(+) create mode 100644 app/models/captivity_process.rb create mode 100644 db/migrate/20220922143605_create_captivity_processes.rb create mode 100644 spec/models/captivity_process_spec.rb diff --git a/app/models/captivity_process.rb b/app/models/captivity_process.rb new file mode 100644 index 000000000..aa216338a --- /dev/null +++ b/app/models/captivity_process.rb @@ -0,0 +1,8 @@ +class CaptivityProcess < ActiveRecord::Base + track_who_does_it + belongs_to :taxon_concept + belongs_to :geo_entity + + validates :taxon_concept, presence: true + validates :geo_entity, presence: true +end diff --git a/db/migrate/20220922143605_create_captivity_processes.rb b/db/migrate/20220922143605_create_captivity_processes.rb new file mode 100644 index 000000000..be7ac259c --- /dev/null +++ b/db/migrate/20220922143605_create_captivity_processes.rb @@ -0,0 +1,15 @@ +class CreateCaptivityProcesses < ActiveRecord::Migration + def change + create_table :captivity_processes do |t| + t.string :resolution + t.integer :taxon_concept_id + t.integer :geo_entity_id + t.datetime :date_entry + t.datetime :start_date + t.integer :status + t.text :notes + + t.timestamps + end + end +end diff --git a/spec/models/captivity_process_spec.rb b/spec/models/captivity_process_spec.rb new file mode 100644 index 000000000..9b085e0a9 --- /dev/null +++ b/spec/models/captivity_process_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe CaptivityProcess, :type => :model do + pending "add some examples to (or delete) #{__FILE__}" +end From 4b8232f4e2aac9df9ddcc8c3f98f678cebd26448 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Mon, 26 Sep 2022 16:27:08 +0100 Subject: [PATCH 002/109] Captivity process admin PR fixes --- app/models/captivity_process.rb | 4 ++++ app/models/geo_entity.rb | 1 + app/models/m_taxon_concept.rb | 1 + app/models/taxon_concept.rb | 1 + db/migrate/20220922143605_create_captivity_processes.rb | 6 +++--- 5 files changed, 10 insertions(+), 3 deletions(-) diff --git a/app/models/captivity_process.rb b/app/models/captivity_process.rb index aa216338a..960e2eace 100644 --- a/app/models/captivity_process.rb +++ b/app/models/captivity_process.rb @@ -2,7 +2,11 @@ class CaptivityProcess < ActiveRecord::Base track_who_does_it belongs_to :taxon_concept belongs_to :geo_entity + belongs_to :start_event, :class_name => 'Event' + belongs_to :m_taxon_concept, :foreign_key => :taxon_concept_id validates :taxon_concept, presence: true validates :geo_entity, presence: true + + # enum status: [:ongoing, :trade_suspension, :closed] end diff --git a/app/models/geo_entity.rb b/app/models/geo_entity.rb index 03ccb8680..09befc361 100644 --- a/app/models/geo_entity.rb +++ b/app/models/geo_entity.rb @@ -38,6 +38,7 @@ class GeoEntity < ActiveRecord::Base :foreign_key => :country_of_origin_id has_many :document_citation_geo_entities, dependent: :destroy has_many :users + has_many :captivity_processes validates :geo_entity_type_id, :presence => true validates :iso_code2, :uniqueness => true, :allow_blank => true validates :iso_code2, :presence => true, :length => { :is => 2 }, diff --git a/app/models/m_taxon_concept.rb b/app/models/m_taxon_concept.rb index 4ce7baff4..db274114a 100644 --- a/app/models/m_taxon_concept.rb +++ b/app/models/m_taxon_concept.rb @@ -128,6 +128,7 @@ class MTaxonConcept < ActiveRecord::Base has_many :current_cms_additions, -> { where(is_current: true, change_type_name: ChangeType::ADDITION).order('effective_at DESC, species_listing_name ASC') }, :foreign_key => :taxon_concept_id, :class_name => MCmsListingChange + has_many :captivity_processes scope :by_cites_eu_taxonomy, -> { where(:taxonomy_is_cites_eu => true) } scope :by_cms_taxonomy, -> { where(:taxonomy_is_cites_eu => false) } diff --git a/app/models/taxon_concept.rb b/app/models/taxon_concept.rb index deb37d79e..5b1b418d9 100644 --- a/app/models/taxon_concept.rb +++ b/app/models/taxon_concept.rb @@ -146,6 +146,7 @@ class TaxonConcept < ActiveRecord::Base has_many :nomenclature_change_outputs_as_new, class_name: 'NomenclatureChange::Output', foreign_key: :new_taxon_concept_id has_many :document_citation_taxon_concepts + has_many :captivity_processes validates :taxonomy_id, :presence => true validates :rank_id, :presence => true diff --git a/db/migrate/20220922143605_create_captivity_processes.rb b/db/migrate/20220922143605_create_captivity_processes.rb index be7ac259c..83d03b710 100644 --- a/db/migrate/20220922143605_create_captivity_processes.rb +++ b/db/migrate/20220922143605_create_captivity_processes.rb @@ -2,9 +2,9 @@ class CreateCaptivityProcesses < ActiveRecord::Migration def change create_table :captivity_processes do |t| t.string :resolution - t.integer :taxon_concept_id - t.integer :geo_entity_id - t.datetime :date_entry + t.references :taxon_concept, index: true + t.references :geo_entity + t.references :start_event t.datetime :start_date t.integer :status t.text :notes From 5ea9939fd18bbad67260a0251b8bc8ee1a88118c Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 28 Sep 2022 11:48:40 +0100 Subject: [PATCH 003/109] Add code review changes --- app/models/captivity_process.rb | 12 ------------ app/models/cites_captivity_process.rb | 15 +++++++++++++++ app/models/event.rb | 1 + ...922143605_create_cites_captivity_processes.rb} | 6 +++--- ...ss_spec.rb => cites_captivity_process_spec.rb} | 2 +- 5 files changed, 20 insertions(+), 16 deletions(-) delete mode 100644 app/models/captivity_process.rb create mode 100644 app/models/cites_captivity_process.rb rename db/migrate/{20220922143605_create_captivity_processes.rb => 20220922143605_create_cites_captivity_processes.rb} (55%) rename spec/models/{captivity_process_spec.rb => cites_captivity_process_spec.rb} (59%) diff --git a/app/models/captivity_process.rb b/app/models/captivity_process.rb deleted file mode 100644 index 960e2eace..000000000 --- a/app/models/captivity_process.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CaptivityProcess < ActiveRecord::Base - track_who_does_it - belongs_to :taxon_concept - belongs_to :geo_entity - belongs_to :start_event, :class_name => 'Event' - belongs_to :m_taxon_concept, :foreign_key => :taxon_concept_id - - validates :taxon_concept, presence: true - validates :geo_entity, presence: true - - # enum status: [:ongoing, :trade_suspension, :closed] -end diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb new file mode 100644 index 000000000..ef3c7bdff --- /dev/null +++ b/app/models/cites_captivity_process.rb @@ -0,0 +1,15 @@ +class CitesCaptivityProcess < ActiveRecord::Base + track_who_does_it + belongs_to :taxon_concept + belongs_to :geo_entity + belongs_to :start_event, :class_name => 'Event' + belongs_to :m_taxon_concept, :foreign_key => :taxon_concept_id + + validates :taxon_concept, presence: true + validates :geo_entity, presence: true + validates :resolution, presence: true + validates :start_date, presence: true + # Change status field to Enum type after upgrading to rails 4.1 + validates :status, presence: true, inclusion: {in: ['Ongoing' 'Trade Suspension' 'Closed']} + +end diff --git a/app/models/event.rb b/app/models/event.rb index cbaecb3d9..e04f42e6a 100644 --- a/app/models/event.rb +++ b/app/models/event.rb @@ -33,6 +33,7 @@ class Event < ActiveRecord::Base belongs_to :designation has_many :annotations, :dependent => :destroy has_many :documents + has_many :cites_captivity_processes validates :name, :presence => true, :uniqueness => true validates :url, :format => URI::regexp(%w(http https)), :allow_blank => true diff --git a/db/migrate/20220922143605_create_captivity_processes.rb b/db/migrate/20220922143605_create_cites_captivity_processes.rb similarity index 55% rename from db/migrate/20220922143605_create_captivity_processes.rb rename to db/migrate/20220922143605_create_cites_captivity_processes.rb index 83d03b710..ab74e95b5 100644 --- a/db/migrate/20220922143605_create_captivity_processes.rb +++ b/db/migrate/20220922143605_create_cites_captivity_processes.rb @@ -1,12 +1,12 @@ -class CreateCaptivityProcesses < ActiveRecord::Migration +class CreateCitesCaptivityProcesses < ActiveRecord::Migration def change - create_table :captivity_processes do |t| + create_table :cites_captivity_processes do |t| t.string :resolution t.references :taxon_concept, index: true t.references :geo_entity t.references :start_event t.datetime :start_date - t.integer :status + t.string :status # change to Enum type after migrating to rails 4.1 t.text :notes t.timestamps diff --git a/spec/models/captivity_process_spec.rb b/spec/models/cites_captivity_process_spec.rb similarity index 59% rename from spec/models/captivity_process_spec.rb rename to spec/models/cites_captivity_process_spec.rb index 9b085e0a9..86395716e 100644 --- a/spec/models/captivity_process_spec.rb +++ b/spec/models/cites_captivity_process_spec.rb @@ -1,5 +1,5 @@ require 'rails_helper' -RSpec.describe CaptivityProcess, :type => :model do +RSpec.describe CitesCaptivityProcess, :type => :model do pending "add some examples to (or delete) #{__FILE__}" end From 6397c02975b6e62df5922ed43a4e98a5a8fea417 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 28 Sep 2022 11:54:23 +0100 Subject: [PATCH 004/109] typo fix --- app/models/cites_captivity_process.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index ef3c7bdff..c1e6c4866 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -10,6 +10,6 @@ class CitesCaptivityProcess < ActiveRecord::Base validates :resolution, presence: true validates :start_date, presence: true # Change status field to Enum type after upgrading to rails 4.1 - validates :status, presence: true, inclusion: {in: ['Ongoing' 'Trade Suspension' 'Closed']} + validates :status, presence: true, inclusion: {in: ['Ongoing', 'Trade Suspension', 'Closed']} end From af863592b4c874055c937a548049bbf81d9f3de4 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 29 Sep 2022 13:28:47 +0100 Subject: [PATCH 005/109] Add admin ui for managing cites captivity processes --- .../cites_captivity_processes_controller.rb | 35 +++++++++ .../admin/cites_captivity_processes_helper.rb | 2 + app/models/cites_captivity_process.rb | 7 +- app/models/taxon_concept.rb | 2 +- .../_current_opinions_form.html.erb | 54 +++++++++++++ .../cites_captivity_processes/_form.html.erb | 76 +++++++++++++++++++ .../cites_captivity_processes/_list.html.erb | 50 ++++++++++++ .../cites_captivity_processes/edit.html.erb | 1 + .../cites_captivity_processes/index.html.erb | 19 +++++ .../cites_captivity_processes/new.html.erb | 1 + .../admin/taxon_concepts/_basic_info.html.erb | 3 + config/routes.rb | 2 + ...tes_captivity_processes_controller_spec.rb | 5 ++ .../cites_captivity_processes_helper_spec.rb | 15 ++++ 14 files changed, 270 insertions(+), 2 deletions(-) create mode 100644 app/controllers/admin/cites_captivity_processes_controller.rb create mode 100644 app/helpers/admin/cites_captivity_processes_helper.rb create mode 100644 app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb create mode 100644 app/views/admin/cites_captivity_processes/_form.html.erb create mode 100644 app/views/admin/cites_captivity_processes/_list.html.erb create mode 100644 app/views/admin/cites_captivity_processes/edit.html.erb create mode 100644 app/views/admin/cites_captivity_processes/index.html.erb create mode 100644 app/views/admin/cites_captivity_processes/new.html.erb create mode 100644 spec/controllers/admin/cites_captivity_processes_controller_spec.rb create mode 100644 spec/helpers/admin/cites_captivity_processes_helper_spec.rb diff --git a/app/controllers/admin/cites_captivity_processes_controller.rb b/app/controllers/admin/cites_captivity_processes_controller.rb new file mode 100644 index 000000000..b83ed1f4b --- /dev/null +++ b/app/controllers/admin/cites_captivity_processes_controller.rb @@ -0,0 +1,35 @@ +class Admin::CitesCaptivityProcessesController < Admin::SimpleCrudController + belongs_to :taxon_concept + before_filter :load_lib_objects + before_filter :load_search, :only => [:new, :index, :edit] + layout 'taxon_concepts' + + def create + end + + def update + end + + protected + + def load_lib_objects + @units = Unit.order(:code) + @terms = Term.order(:code) + @sources = Source.order(:code) + @purposes = Purpose.order(:code) + @geo_entities = GeoEntity.order(:name_en).joins(:geo_entity_type). + where(:geo_entity_types => { :name => GeoEntityType::SETS[GeoEntityType::DEFAULT_SET] }) + @resolution = CitesCaptivityProcess::RESOLUTION + @status = CitesCaptivityProcess::STATUS + @meetings = Event.where("type IN ('CitesAc','CitesPc')" + ).order("effective_at DESC") + end + + def collection + @cites_captivity_process ||= end_of_association_chain. + joins(:geo_entity). + order('is_current DESC, start_date DESC, + geo_entities.name_en ASC'). + page(params[:page]) + end +end diff --git a/app/helpers/admin/cites_captivity_processes_helper.rb b/app/helpers/admin/cites_captivity_processes_helper.rb new file mode 100644 index 000000000..dadea7caf --- /dev/null +++ b/app/helpers/admin/cites_captivity_processes_helper.rb @@ -0,0 +1,2 @@ +module Admin::CitesCaptivityProcessesHelper +end diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index c1e6c4866..61beffd84 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -9,7 +9,12 @@ class CitesCaptivityProcess < ActiveRecord::Base validates :geo_entity, presence: true validates :resolution, presence: true validates :start_date, presence: true + + STATUS = ['Ongoing', 'Trade Suspension', 'Closed'] + RESOLUTION = ['Res. Conf. 17.7 (Rev. CoP18)'] + # Change status field to Enum type after upgrading to rails 4.1 - validates :status, presence: true, inclusion: {in: ['Ongoing', 'Trade Suspension', 'Closed']} + validates :status, presence: true, inclusion: {in: STATUS} + end diff --git a/app/models/taxon_concept.rb b/app/models/taxon_concept.rb index 5b1b418d9..424fa67fa 100644 --- a/app/models/taxon_concept.rb +++ b/app/models/taxon_concept.rb @@ -146,7 +146,7 @@ class TaxonConcept < ActiveRecord::Base has_many :nomenclature_change_outputs_as_new, class_name: 'NomenclatureChange::Output', foreign_key: :new_taxon_concept_id has_many :document_citation_taxon_concepts - has_many :captivity_processes + has_many :cites_captivity_processes validates :taxonomy_id, :presence => true validates :rank_id, :presence => true diff --git a/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb b/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb new file mode 100644 index 000000000..d11d5b290 --- /dev/null +++ b/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb @@ -0,0 +1,54 @@ +<% if @taxon_concept.current_eu_opinions.count > 0 %> + + + + + + + + + + + + + + + + <% @taxon_concept.current_eu_opinions. + order("start_date DESC").each do |opinion| %> + + + + + + + + + + + + + + + <% end %> + +
YearRegulationCountry or TerritoryTypeSRG historyTermSourceNotesInternal notes
<%= opinion.year %><%= opinion.start_event && opinion.start_event.name %><%= opinion.geo_entity && opinion.geo_entity.name_en %> + <% if opinion.eu_decision_type %> + <%= opinion.eu_decision_type.name %> + <%= '(' + opinion.eu_decision_type.tooltip + ')' if opinion. + eu_decision_type.tooltip.present? %> + <% end %> + + <% if opinion.srg_history %> + <%= opinion.srg_history.name %> + <%= '(' + opinion.srg_history.tooltip + ')' if opinion. + srg_history.tooltip.present? %> + <% end %> + <%= opinion.term && opinion.term.code %><%= opinion.source && opinion.source.code %><%= opinion.notes %><%= opinion.internal_notes %> + <%= form_for [:admin, @taxon_concept, opinion], :remote => true do |f| %> + <%= f.check_box :is_current %> + <% end %> +
+<% else %> + There are no current EU opinions for this Taxon Concept. +<% end %> diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb new file mode 100644 index 000000000..03f0c7f74 --- /dev/null +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -0,0 +1,76 @@ +<%= admin_new_modal({:title => "Current "}) { render "current_opinions_form" } %> + +<%= form_for [:admin, @taxon_concept, @cites_captivity_process], :html => {:class => 'form-horizontal'} do |f| %> + +

+ <%= link_to("View Current CITES Captivity processes", "#new-eu_opinion", + { + :role => "button", + :"data-toggle" => "modal", + }) %> +

+ + <%= error_messages_for(@cites_captivity_process) %> + +
+ <%= f.label :start_event_id, "Resolution", :class => 'control-label' %> +
+ <%= f.select :start_event_id, + options_for_select(@resolution), + { :include_blank => true }, :class => "select2" + %> +
+
+ +
+ <%= f.label :geo_entity_id, "Country or Territory", :class => 'control-label' %> +
+ <%= f.select :geo_entity_id, + options_from_collection_for_select( + @geo_entities, + :id, + :name_en, + @cites_captivity_process.geo_entity_id + ), + { }, + {:class => 'eu_opinion select2', :style => 'width: 220px' } + %> +
+
+ +
+ <%= f.label :start_event_id, "Date Entry", :class => 'control-label' %> +
+ <%= f.select :start_event_id, + options_from_collection_for_select(@meetings, :id, :name, @cites_captivity_process.start_event_id), + { :include_blank => true }, :class => "select2" + %> + <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @eu_opinion.start_date.strftime('%d/%m/%Y'), :placeholder => 'Effective from' %> +
+
+ +
+ <%= f.label :status, "Status", :class => 'control-label' %> +
+ <%= f.select :status, + options_for_select(@status), + { :include_blank => true }, :class => "select2" + %> +
+
+ +
+ +
+ <%= f.text_area :notes, :class => 'cites_captivity_process', :value => @cites_captivity_process.notes %> +
+
+ + +

+ <%= link_to 'Cancel', admin_taxon_concept_cites_captivity_processes_path(@taxon_concept), + :class => "btn" %> + <%= f.submit "Save", :class => "btn btn-primary save-button" %> +

+ +<% end %> diff --git a/app/views/admin/cites_captivity_processes/_list.html.erb b/app/views/admin/cites_captivity_processes/_list.html.erb new file mode 100644 index 000000000..52d4a4162 --- /dev/null +++ b/app/views/admin/cites_captivity_processes/_list.html.erb @@ -0,0 +1,50 @@ + + Resolution + Country or Territory + Type + Start date + Status + Notes + Actions + Info + + + <% collection.each do |opinion| -%> + "> + <%= opinion.year %> + <%= opinion.start_event.try(:name) %> + <%= opinion.geo_entity && opinion.geo_entity.name_en %> + + <% if opinion.eu_decision_type %> + <%= opinion.eu_decision_type.try(:name) %> + <%= '(' + opinion.eu_decision_type.tooltip + ')' if opinion. + eu_decision_type.tooltip.present? %> + <% end %> + + + <% if opinion.srg_history %> + <%= opinion.srg_history.name %> + <%= '(' + opinion.srg_history.tooltip + ')' if opinion. + srg_history.tooltip.present? %> + <% end %> + + <%= opinion.term && opinion.term.code %> + <%= opinion.source && opinion.source.code %> + <%= opinion.notes %> + <%= true_false_icon(opinion.is_current) %> + + <%= link_to edit_icon, + edit_admin_taxon_concept_eu_opinion_path(@taxon_concept, opinion) + %> + <%= link_to delete_icon, + admin_taxon_concept_eu_opinion_path(@taxon_concept, opinion), + data: { confirm: "Warning: you are about to delete data. Are you sure?" }, :method => :delete + %> + + + <%= tracking_info(opinion) %> + <%= internal_notes(opinion) %> + + + <% end -%> + diff --git a/app/views/admin/cites_captivity_processes/edit.html.erb b/app/views/admin/cites_captivity_processes/edit.html.erb new file mode 100644 index 000000000..f93df327f --- /dev/null +++ b/app/views/admin/cites_captivity_processes/edit.html.erb @@ -0,0 +1 @@ +<%= render('form') %> diff --git a/app/views/admin/cites_captivity_processes/index.html.erb b/app/views/admin/cites_captivity_processes/index.html.erb new file mode 100644 index 000000000..440f6967f --- /dev/null +++ b/app/views/admin/cites_captivity_processes/index.html.erb @@ -0,0 +1,19 @@ +
+

CITES Captivity processes

+
+ <%= admin_add_new_button( + :resource => 'eu_opinion', + :href => new_admin_taxon_concept_cites_captivity_process_path(@taxon_concept), + :"data-toggle" => nil, + :role => nil, + :name => 'Add new CITES Captivity process' + ) %> +
+
+ +<%= admin_new_modal{ '' } %> + +<%= admin_table %> + +<%= paginate collection %> + diff --git a/app/views/admin/cites_captivity_processes/new.html.erb b/app/views/admin/cites_captivity_processes/new.html.erb new file mode 100644 index 000000000..f93df327f --- /dev/null +++ b/app/views/admin/cites_captivity_processes/new.html.erb @@ -0,0 +1 @@ +<%= render('form') %> diff --git a/app/views/admin/taxon_concepts/_basic_info.html.erb b/app/views/admin/taxon_concepts/_basic_info.html.erb index 8d58c05e1..efbf17c15 100644 --- a/app/views/admin/taxon_concepts/_basic_info.html.erb +++ b/app/views/admin/taxon_concepts/_basic_info.html.erb @@ -114,6 +114,9 @@
  • <%= link_to "CITES Suspensions", admin_taxon_concept_cites_suspensions_path(@taxon_concept) %>
  • +
  • + <%= link_to "CITES Captivity processes", admin_taxon_concept_cites_captivity_processes_path(@taxon_concept) %> +
  • <% elsif d.is_eu? %> diff --git a/config/routes.rb b/config/routes.rb index 46b82224d..80d2e6050 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -162,6 +162,8 @@ :only => [:index, :new, :create, :edit, :update, :destroy], :as => :cites_suspensions resources :taxon_instruments, :only => [:index, :new, :create, :edit, :update, :destroy] + resources :cites_captivity_processes, + :only => [:index, :new, :create, :edit, :update, :destroy] end resources :nomenclature_changes do resources :split, controller: 'nomenclature_changes/split' diff --git a/spec/controllers/admin/cites_captivity_processes_controller_spec.rb b/spec/controllers/admin/cites_captivity_processes_controller_spec.rb new file mode 100644 index 000000000..3439f126b --- /dev/null +++ b/spec/controllers/admin/cites_captivity_processes_controller_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe Admin::CitesCaptivityProcessesController, :type => :controller do + +end diff --git a/spec/helpers/admin/cites_captivity_processes_helper_spec.rb b/spec/helpers/admin/cites_captivity_processes_helper_spec.rb new file mode 100644 index 000000000..5b2b3e4f6 --- /dev/null +++ b/spec/helpers/admin/cites_captivity_processes_helper_spec.rb @@ -0,0 +1,15 @@ +require 'rails_helper' + +# Specs in this file have access to a helper object that includes +# the Admin::CitesCaptivityProcessesHelper. For example: +# +# describe Admin::CitesCaptivityProcessesHelper do +# describe "string concat" do +# it "concats two strings with spaces" do +# expect(helper.concat_strings("this","that")).to eq("this that") +# end +# end +# end +RSpec.describe Admin::CitesCaptivityProcessesHelper, :type => :helper do + pending "add some examples to (or delete) #{__FILE__}" +end From 06912d4ddc653fc6d375031a05d5bfb5dc28e42a Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 29 Sep 2022 13:54:38 +0100 Subject: [PATCH 006/109] Add validation to captivity process event --- app/models/cites_captivity_process.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index c1e6c4866..60f5db1b8 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -12,4 +12,14 @@ class CitesCaptivityProcess < ActiveRecord::Base # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: ['Ongoing', 'Trade Suspension', 'Closed']} + validate :start_event_value + + private + + def start_event_value + event = Event.where("id = ? and type IN (?)", start_event_id, ['CitesAc','CitesPc']) + if event.blank? + errors.add(:start_event, "is Invalid") + end + end end From e7c84524ba9eae6a91ffaea3054d810b69e2db7d Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 29 Sep 2022 15:29:58 +0100 Subject: [PATCH 007/109] add UI changes --- .../cites_captivity_processes_controller.rb | 27 ++++++++++++++++--- app/models/cites_captivity_process.rb | 3 +-- .../cites_captivity_processes/_form.html.erb | 6 ++--- 3 files changed, 28 insertions(+), 8 deletions(-) diff --git a/app/controllers/admin/cites_captivity_processes_controller.rb b/app/controllers/admin/cites_captivity_processes_controller.rb index b83ed1f4b..92591ae1f 100644 --- a/app/controllers/admin/cites_captivity_processes_controller.rb +++ b/app/controllers/admin/cites_captivity_processes_controller.rb @@ -4,10 +4,31 @@ class Admin::CitesCaptivityProcessesController < Admin::SimpleCrudController before_filter :load_search, :only => [:new, :index, :edit] layout 'taxon_concepts' - def create - end - def update + update! do |success, failure| + success.html { + redirect_to admin_taxon_concept_cites_captivity_processes_url(params[:taxon_concept_id]), + :notice => 'Operation successful' + } + failure.html { + load_lib_objects + load_search + render 'new' + } + end + end + + def create + create! do |success, failure| + success.html { + redirect_to admin_taxon_concept_cites_captivity_processes_url(params[:taxon_concept_id]), + :notice => 'Operation successful' + } + failure.html { + load_search + render 'new' + } + end end protected diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index 156b4aa9f..ee3e5b7c2 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -1,5 +1,6 @@ class CitesCaptivityProcess < ActiveRecord::Base track_who_does_it + attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id, belongs_to :taxon_concept belongs_to :geo_entity belongs_to :start_event, :class_name => 'Event' @@ -15,8 +16,6 @@ class CitesCaptivityProcess < ActiveRecord::Base # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: STATUS} - - validate :start_event_value private diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index 03f0c7f74..42e04ed78 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -13,9 +13,9 @@ <%= error_messages_for(@cites_captivity_process) %>
    - <%= f.label :start_event_id, "Resolution", :class => 'control-label' %> + <%= f.label :resolution, "Resolution", :class => 'control-label' %>
    - <%= f.select :start_event_id, + <%= f.select :resolution, options_for_select(@resolution), { :include_blank => true }, :class => "select2" %> @@ -45,7 +45,7 @@ options_from_collection_for_select(@meetings, :id, :name, @cites_captivity_process.start_event_id), { :include_blank => true }, :class => "select2" %> - <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @eu_opinion.start_date.strftime('%d/%m/%Y'), :placeholder => 'Effective from' %> + <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), :placeholder => 'Effective from' %>
    From ff7557edf05dfd8b2e0a1b40626881251f749187 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 29 Sep 2022 15:50:39 +0100 Subject: [PATCH 008/109] + --- db/migrate/20220922143605_create_cites_captivity_processes.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/migrate/20220922143605_create_cites_captivity_processes.rb b/db/migrate/20220922143605_create_cites_captivity_processes.rb index ab74e95b5..744d4d240 100644 --- a/db/migrate/20220922143605_create_cites_captivity_processes.rb +++ b/db/migrate/20220922143605_create_cites_captivity_processes.rb @@ -7,6 +7,8 @@ def change t.references :start_event t.datetime :start_date t.string :status # change to Enum type after migrating to rails 4.1 + t.integer :created_by_id + t.integer :updated_by_id t.text :notes t.timestamps From cee994bf0f4efbe0fb7291b115958e1c82bed3f1 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 29 Sep 2022 17:27:51 +0100 Subject: [PATCH 009/109] Update, add captivity process --- app/models/cites_captivity_process.rb | 14 +++++++- .../cites_captivity_processes/_list.html.erb | 33 +++++-------------- 2 files changed, 22 insertions(+), 25 deletions(-) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index ee3e5b7c2..a564155fb 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -1,6 +1,6 @@ class CitesCaptivityProcess < ActiveRecord::Base track_who_does_it - attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id, + attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id belongs_to :taxon_concept belongs_to :geo_entity belongs_to :start_event, :class_name => 'Event' @@ -18,6 +18,18 @@ class CitesCaptivityProcess < ActiveRecord::Base validates :status, presence: true, inclusion: {in: STATUS} validate :start_event_value + def is_current? + status == 'Ongoing' + end + + def year + start_date ? start_date.strftime('%Y') : '' + end + + def start_date_formatted + start_date ? start_date.strftime("%d/%m/%Y") : "" + end + private def start_event_value diff --git a/app/views/admin/cites_captivity_processes/_list.html.erb b/app/views/admin/cites_captivity_processes/_list.html.erb index 52d4a4162..782465fe8 100644 --- a/app/views/admin/cites_captivity_processes/_list.html.erb +++ b/app/views/admin/cites_captivity_processes/_list.html.erb @@ -11,39 +11,24 @@ <% collection.each do |opinion| -%> "> - <%= opinion.year %> - <%= opinion.start_event.try(:name) %> + <%= opinion.resolution %> <%= opinion.geo_entity && opinion.geo_entity.name_en %> - - <% if opinion.eu_decision_type %> - <%= opinion.eu_decision_type.try(:name) %> - <%= '(' + opinion.eu_decision_type.tooltip + ')' if opinion. - eu_decision_type.tooltip.present? %> - <% end %> - - - <% if opinion.srg_history %> - <%= opinion.srg_history.name %> - <%= '(' + opinion.srg_history.tooltip + ')' if opinion. - srg_history.tooltip.present? %> - <% end %> - - <%= opinion.term && opinion.term.code %> - <%= opinion.source && opinion.source.code %> - <%= opinion.notes %> - <%= true_false_icon(opinion.is_current) %> + <%= opinion.start_event.try(:name) %> + + <%= opinion.start_date_formatted %> + <%= opinion.status %> + <%= opinion.notes %> <%= link_to edit_icon, - edit_admin_taxon_concept_eu_opinion_path(@taxon_concept, opinion) + edit_admin_taxon_concept_cites_captivity_process_path(@taxon_concept, opinion) %> <%= link_to delete_icon, - admin_taxon_concept_eu_opinion_path(@taxon_concept, opinion), + admin_taxon_concept_cites_captivity_processes_path(@taxon_concept, opinion), data: { confirm: "Warning: you are about to delete data. Are you sure?" }, :method => :delete %> - <%= tracking_info(opinion) %> - <%= internal_notes(opinion) %> + <%= tracking_info(opinion) %> <% end -%> From 5c5d9ca739710acd5089547b2691c9b73973ea2f Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 30 Sep 2022 10:16:35 +0100 Subject: [PATCH 010/109] Modify Custom validation --- app/models/cites_captivity_process.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index 60f5db1b8..63d4db88d 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -17,9 +17,8 @@ class CitesCaptivityProcess < ActiveRecord::Base private def start_event_value - event = Event.where("id = ? and type IN (?)", start_event_id, ['CitesAc','CitesPc']) - if event.blank? - errors.add(:start_event, "is Invalid") + unless ['CitesAc','CitesPc'].include? self.start_event.type + errors.add(:start_event, "is not valid") end end end From 3a25fe741dc7163906f4ef04cb9eff3ab414d8d4 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 30 Sep 2022 14:29:16 +0100 Subject: [PATCH 011/109] UI changes --- .../cites_captivity_processes/_form.html.erb | 24 ++++++------------- .../cites_captivity_processes/_list.html.erb | 2 +- .../cites_captivity_processes/index.html.erb | 4 ++-- 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index 42e04ed78..6cb385ed3 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -2,23 +2,12 @@ <%= form_for [:admin, @taxon_concept, @cites_captivity_process], :html => {:class => 'form-horizontal'} do |f| %> -

    - <%= link_to("View Current CITES Captivity processes", "#new-eu_opinion", - { - :role => "button", - :"data-toggle" => "modal", - }) %> -

    - <%= error_messages_for(@cites_captivity_process) %>
    - <%= f.label :resolution, "Resolution", :class => 'control-label' %> + <%= f.label :resolution, "Review", :class => 'control-label' %>
    - <%= f.select :resolution, - options_for_select(@resolution), - { :include_blank => true }, :class => "select2" - %> + <%= "Captive Breeding" %>
    @@ -32,12 +21,12 @@ :name_en, @cites_captivity_process.geo_entity_id ), - { }, + { :include_blank => true }, {:class => 'eu_opinion select2', :style => 'width: 220px' } %> - +
    MeetingEffective from
    <%= f.label :start_event_id, "Date Entry", :class => 'control-label' %>
    @@ -45,7 +34,8 @@ options_from_collection_for_select(@meetings, :id, :name, @cites_captivity_process.start_event_id), { :include_blank => true }, :class => "select2" %> - <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), :placeholder => 'Effective from' %> + + <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), :style => 'margin-left: 3em' %>
    @@ -53,7 +43,7 @@ <%= f.label :status, "Status", :class => 'control-label' %>
    <%= f.select :status, - options_for_select(@status), + options_for_select(@status, @cites_captivity_process.status), { :include_blank => true }, :class => "select2" %>
    diff --git a/app/views/admin/cites_captivity_processes/_list.html.erb b/app/views/admin/cites_captivity_processes/_list.html.erb index 782465fe8..cc80fa43e 100644 --- a/app/views/admin/cites_captivity_processes/_list.html.erb +++ b/app/views/admin/cites_captivity_processes/_list.html.erb @@ -23,7 +23,7 @@ edit_admin_taxon_concept_cites_captivity_process_path(@taxon_concept, opinion) %> <%= link_to delete_icon, - admin_taxon_concept_cites_captivity_processes_path(@taxon_concept, opinion), + admin_taxon_concept_cites_captivity_process_path(@taxon_concept, opinion), data: { confirm: "Warning: you are about to delete data. Are you sure?" }, :method => :delete %> diff --git a/app/views/admin/cites_captivity_processes/index.html.erb b/app/views/admin/cites_captivity_processes/index.html.erb index 440f6967f..1fd6daf50 100644 --- a/app/views/admin/cites_captivity_processes/index.html.erb +++ b/app/views/admin/cites_captivity_processes/index.html.erb @@ -1,8 +1,8 @@
    -

    CITES Captivity processes

    +

    CITES Processes

    <%= admin_add_new_button( - :resource => 'eu_opinion', + :resource => 'cites_captivity_process', :href => new_admin_taxon_concept_cites_captivity_process_path(@taxon_concept), :"data-toggle" => nil, :role => nil, From b7276961b8d85a8463d2b93713e2556fdc4dbce4 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 30 Sep 2022 14:31:30 +0100 Subject: [PATCH 012/109] Validation fix --- app/models/cites_captivity_process.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index 63d4db88d..129d8276a 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -11,8 +11,8 @@ class CitesCaptivityProcess < ActiveRecord::Base validates :start_date, presence: true # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: ['Ongoing', 'Trade Suspension', 'Closed']} - - validate :start_event_value + validates :start_event, presence: true + validate :start_event_value, if: :is_start_event_present? private @@ -21,4 +21,8 @@ def start_event_value errors.add(:start_event, "is not valid") end end + + def is_start_event_present? + start_event.present? + end end From bc9e84d925943a1aa4f5da3670b087c7fadb4e74 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 30 Sep 2022 15:30:02 +0100 Subject: [PATCH 013/109] fix: UI changes, model validation --- app/models/cites_captivity_process.rb | 1 - app/views/admin/cites_captivity_processes/_form.html.erb | 7 +++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index 4d1863db9..23389611b 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -16,7 +16,6 @@ class CitesCaptivityProcess < ActiveRecord::Base # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: STATUS} - validates :start_event, presence: true validate :start_event_value, if: :is_start_event_present? before_validation :set_resolution_value diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index 6cb385ed3..d8d1fd908 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -6,7 +6,7 @@
    <%= f.label :resolution, "Review", :class => 'control-label' %> -
    +
    <%= "Captive Breeding" %>
    @@ -26,7 +26,6 @@ %>
    -
    MeetingEffective from
    <%= f.label :start_event_id, "Date Entry", :class => 'control-label' %>
    @@ -34,11 +33,11 @@ options_from_collection_for_select(@meetings, :id, :name, @cites_captivity_process.start_event_id), { :include_blank => true }, :class => "select2" %> - - <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), :style => 'margin-left: 3em' %> + <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), placeholder: 'Effective from'%>
    +
    <%= f.label :status, "Status", :class => 'control-label' %>
    From 9832519d87e678fb47a1b42cc13b3d691a0ce674 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 30 Sep 2022 15:35:06 +0100 Subject: [PATCH 014/109] fix: spec helper --- data/cms.json | 1 + spec/models/cites_captivity_process_spec.rb | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 data/cms.json diff --git a/data/cms.json b/data/cms.json new file mode 100644 index 000000000..f43937f6c --- /dev/null +++ b/data/cms.json @@ -0,0 +1 @@ +{"taxon_concepts":[{"id":11289,"full_name":"Phylloscopus griseolus","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Sulphur-bellied Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot griséole","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11292,"full_name":"Podiceps grisegena","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Czech","names":"Potápka rudokrká","convention_language":false,"id":null},{"lang":"Danish","names":"Gråstrubet Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodhalsfuut","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Härkälintu","convention_language":false,"id":null},{"lang":"French","names":"Grèbe jougris","convention_language":true,"id":null},{"lang":"German","names":"Rothalstaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösnyakú vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso collorosso","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz rdzawoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Somormujo Cuellirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråhakedopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus grisegena","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11293,"full_name":"Limnodromus semipalmatus","author_year":"(Blyth, 1848)","common_names":[{"lang":"English","names":"Asiatic Dowitcher, Asian Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin d'Asie","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta Asiática","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Deighton, D. 2005. First record of Asiatic Dowitcher \u003Ci\u003ELimnodromus semipalmatus\u003C/i\u003E for Africa. Bulletin of the African Bird Club: 12: 156-157.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Macrorhamphus semiplamatus","author_year":"Blyth, 1848"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11294,"full_name":"Larus cachinnans","author_year":"J. F. Naumann, 1840","common_names":[{"lang":"Danish","names":"Kaspisk Sølvmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Geelpootmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Caspian Gull, Yellow-legged Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkopäälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland Leucophée","convention_language":true,"id":null},{"lang":"German","names":"Weißkopfmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárgalábú sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano reale mediterraneo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-patas-amarelas","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Ptiamarilla, Gaviota Patiamarilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråtrut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Larus argentatus cachinnans","author_year":"Pontoppidan, 1763"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11295,"full_name":"Sylvia curruca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Gærdesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Braamsluiper","convention_language":false,"id":null},{"lang":"English","names":"Lesser Whitethroat","convention_language":true,"id":null},{"lang":"Finnish","names":"Harnekerttu, Hernekerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette babillarde, Frauvette babillarde","convention_language":true,"id":null},{"lang":"German","names":"Klappergrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigiarella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-amoras-cinzento","convention_language":false,"id":null},{"lang":"Russian","names":"Slavka-melnichek","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Zarcerilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Ärtsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11296,"full_name":"Calidris pusilla","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Tyknæbbet Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijze Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Semipalmated Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau semipalmé","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus tundrowy","convention_language":false,"id":null},{"lang":"Spanish","names":"Playerito Semipalmeado, Playerito Escudado, Correlimos semipalmeado","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Williams, R. S. R., and Jacoby, M. C. 1996. Semipalmated Sandpiper \u003Ci\u003ECalidris pusilla\u003C/i\u003E in the Banc d'Arguin National Park, Mauritania: a new species for Africa. Bull. Afr. Bird Club: 3: 132--133.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Andrews, M. 1997. Semipalmated Sandpiper \u003Ci\u003ECalidris pusilla\u003C/i\u003E and Spotted Sandpiper \u003Ci\u003EActitis macularia\u003C/i\u003E in Morocco. Bull. Afr. Bird Club: 4: 45--46.; Bergier, P., Franchimont, J., Thévenot, M. and the Moroccan Rare Birds Committee. 2002. Rare birds in Morocco: report of the Moroccan Rare Birds Committee (1998-2000). Bulletin of the African Bird Club: 9: 122-133.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Ereunetes pusillus","author_year":"(Linnaeus, 1766)"},{"full_name":"Tringa pusilla","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11297,"full_name":"Pluvialis dominica","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Amerikansk Hjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"American Golden Plover, American Golden-Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier bronzé","convention_language":true,"id":null},{"lang":"Russian","names":"Burokrylaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado Americano","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.; Strewe, R. and Navarro, C. 2004. New and noteworthy records of birds from the Sierra Nevada de Santa Marta region, north-eastern Colombia. Bulletin of the British Ornithologists' Club: 124: 38-51.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Schmaljohann, H. and Thoma, M. 2005. First record of American Golden Plover \u003Ci\u003EPluvialis dominica\u003C/i\u003E for Mauritania, and its status in western Africa. Bulletin of the African Bird Club: 12: 158-161.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Grieve, A., Hill, B. J. N., Lassey, P. A. and Wallace, D. I. M. 2005. The first American Golden Plover \u003Ci\u003EPluvialis dominica\u003C/i\u003E in Oman and Arabia. Sandgrouse: 27: 75-76.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Frade, F. and Vieira dos Santos, J. 1977. Aves de São Tomé e Príncipe (colecção do Centro de Zoologia). Garcia de Orta, Sér. Zool.: 6: 3-18.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G. M. and Martins, R. P. 2000. Turkey Bird Report 1992-1996. Sandgrouse: 22: 13-35.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":"","cms_listing":"","synonyms":[{"full_name":"Charadrius dominicus","author_year":"P. L. S. Müller, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11298,"full_name":"Acrocephalus schoenobaenus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sivsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Rietzanger","convention_language":false,"id":null},{"lang":"English","names":"Sedge Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokokerttunen","convention_language":false,"id":null},{"lang":"French","names":"Phragmite des joncs","convention_language":true,"id":null},{"lang":"German","names":"Schilfrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Foltos nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie","convention_language":false,"id":null},{"lang":"Polish","names":"Rokitniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-dos-juncos","convention_language":false,"id":null},{"lang":"Russian","names":"Kamyshovka-barsuchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sävsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Dickerman, R. W., Cane, W. P., Carter, M. F., Chapman, A. and Schmitt, C. G. 1994. Report on three collections of birds from Liberia. Bulletin of the British Ornithologists' Club: 114: 267-274.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11299,"full_name":"Gazella leptoceros","author_year":"(F. Cuvier, 1842)","common_names":[{"lang":"Danish","names":"Tyndhornet gazelle eller Loders gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Duingazel","convention_language":false,"id":null},{"lang":"English","names":"Slender-horned Gazelle, Rhim Gazelle, Sand Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkogaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle leptocère, Rhim, Gazelle à cornes fines","convention_language":true,"id":null},{"lang":"German","names":"Afrikanische Dünengazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella bianca","convention_language":false,"id":null},{"lang":"Spanish","names":"Rhim","convention_language":true,"id":null},{"lang":"Swedish","names":"sandgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Heim de Balsac, H. 1936. Biogéographie des mammifères et des oiseaux de l'Afrique du Nord. Bulletin Biologique de France et de Belgique (Suppl.): 21: 447 pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Edmond-Blanc, F., Rothschild, A. de and Rothschild, E. de. 1962. Contribution à l'étude des grandes ongules dans le nord du Bourkou (Tchad). Mammalia: 26: 489-493.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Saleh, M. A. 1987. The decline of gazelles in Egypt. Biological Conservation: 39: 83-95.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"IEA (Institute of Applied Ecology). 1998. African Mammals Databank. A databank for the conservation of the African mammals. European Commission Directorate-General for Development Division VIII/A/1 .; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Schomber, H.-W. and Kock, D. 1960. The wildlife of Tunisia, part 2: some larger mammals. African Wildlife: 14: 277-282.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11300,"full_name":"Gallinago paraguaiae","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"South American Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine de Magellan","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Suramericana","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella paraguaiae","author_year":"(Vieillot, 1816)"},{"full_name":"Scolopax paraguaiae","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11301,"full_name":"Clangula hyemalis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Hoholka lední","convention_language":false,"id":null},{"lang":"Danish","names":"Havlit","convention_language":false,"id":null},{"lang":"Dutch","names":"Ijseend","convention_language":false,"id":null},{"lang":"English","names":"Long-tailed Duck, Oldsquaw","convention_language":true,"id":null},{"lang":"Finnish","names":"Alli","convention_language":false,"id":null},{"lang":"French","names":"Harelde de Miquelon, Harelde Boréale, Harelde kakawi","convention_language":true,"id":null},{"lang":"German","names":"Eisente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jegesréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta codona","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havelle","convention_language":false,"id":null},{"lang":"Polish","names":"Lodówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-de-cauda-afilada","convention_language":false,"id":null},{"lang":"Russian","names":"Морянка","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato Havelda","convention_language":true,"id":null},{"lang":"Swedish","names":"Alfågel","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Ananian, V. and de Rouw, P. 2003. The first Long-tailed Duck \u003Ci\u003EClangula hyemalis\u003C/i\u003E in Armenia. Sandgrouse: 25: 65-67.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"extinct","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Clangula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas hyemalis","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11302,"full_name":"Stenella longirostris","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Long-beaked Dolphin, Spinner Dolphin, Long-snouted Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin longirostre","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín tornillón","convention_language":true,"id":null},{"lang":"Swedish","names":"skruvdelfin, spinndelfin, långnosad delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Anon. 2004. Blue Ventures Conservation Andavadoaka, Madagascar Research update, March 2004. http://www.blueventures.org/BVUpdate0304.pdf . ; Anon. 2006. Monitoring the marine environment in Andavadoaka, southwest Madagascar. http://www.blueventures.org/BV%20Reef%20Monitoring.pdf . ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. and Barros, N. B. 1994. Additional cetacean records for the Leeward Dutch Antilles. Marine Mammal Science: 10: 359-368.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Gladstone, W. and Fisher, P. R. 1999. Status of cetaceans in the Farasan Islands Marine Protected Area (Red Sea). European Research on Cetaceans: 13: 232-235.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Howell, K. M. and Pearson, D. M. 1977. Two records of dolphins from Tanzania. East Afr. Wildl. J.: 15: 167-168.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Southeast Asia populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical Pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11303,"full_name":"Phylloscopus trochilus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Willow Warbler","convention_language":false,"id":null},{"lang":"Dutch","names":"Fitis","convention_language":false,"id":null},{"lang":"English","names":"Willow Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pajulintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot fitis","convention_language":true,"id":null},{"lang":"German","names":"Fitis","convention_language":false,"id":null},{"lang":"Hungarian","names":"fitiszfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí grosso","convention_language":false,"id":null},{"lang":"Polish","names":"Piecuszek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-musical","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Musical","convention_language":true,"id":null},{"lang":"Swedish","names":"Lövsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. 1958. Étude d'une collection d'oiseaux de Guinée française. Bulletin du Muséum Nationale d'Histoire Naturelle : 30: 490-497.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11304,"full_name":"Botaurus stellaris","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rørdrum","convention_language":false,"id":null},{"lang":"Dutch","names":"Roerdomp","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Bittern, Great Bittern, Bittern","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaulushaikara","convention_language":false,"id":null},{"lang":"French","names":"Butor étoilé, Grand Butor","convention_language":true,"id":null},{"lang":"German","names":"Rohrdommel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bölömbika","convention_language":false,"id":null},{"lang":"Italian","names":"Tarabuso","convention_language":false,"id":null},{"lang":"Polish","names":"bak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abetouro-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Avetoro, Avetoro Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rördrom","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lopez-Luna, M. A., Vogt, R. C., Angel de la Torre-Loranca, M. 1999. A new species of montane pitviper from Veracruz, Mexico. Herpetologica: 55: 382-389.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Campbell, J. A. 1998. A review of the frogs of the genus \u003Ci\u003EOtophryne\u003C/i\u003E (Microhylidae) with the description of a new species. Herpetologica: 54: 301-317.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Botaurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea stellaris","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11305,"full_name":"Diomedea dabbenena","author_year":"Mathews, 1929","common_names":[{"lang":"English","names":"Tristan Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea exulans\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11306,"full_name":"Charadrius melodus","author_year":"Ord, 1824","common_names":[{"lang":"English","names":"Piping Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier siffleur","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo silbador","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11307,"full_name":"Myotis bechsteinii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"English","names":"Bechstein's Bat","convention_language":true,"id":null},{"lang":"French","names":"Vespertilion de Bechstein","convention_language":true,"id":null},{"lang":"Portuguese","names":"Morcego de Bechstein","convention_language":false,"id":null},{"lang":"Swedish","names":"Bechsteins fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. and Weid, R. 1990. Der Verbreitung einiger Fledermausarten in Griechenland. Bonner Zoologische Beiträge: 41: 9-22.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Cerveny, J. 1997. New and noteworthy records of bats in Slovenia. Myotis: 35: 89-93.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pokynchereda, V. F., Zagorodniuk, I. V., Postawa, T., Labocha, M. and Pokynchereda, V. V. 1999. [\u003Ci\u003EMyotis bechsteini\u003C/i\u003E and \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Mammalia, Chiroptera) in the west of Ukraine.]. Vestnik Zoologii: 33: 115-120.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis bechsteini","author_year":"(Kuhl, 1817)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11308,"full_name":"Phoebastria albatrus","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Korthalet albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Stellers albatros","convention_language":false,"id":null},{"lang":"English","names":"Short-tailed Albatross, Black-footed Albatross, Steller's Albatross","convention_language":true,"id":null},{"lang":"Finnish","names":"Japaninalbatrossi","convention_language":false,"id":null},{"lang":"French","names":"Albatros à queue courte, Albatros de Steller, Albatros à pieds noirs","convention_language":true,"id":null},{"lang":"German","names":"Kurzschwanzalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatro di Steller","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros, Albatros colicorto, Albatros patinegro, Albatros rabón","convention_language":true,"id":null},{"lang":"Swedish","names":"gulnackad albatross, kortstjärtad albatross, vitryggad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Cheng Tso-hsin. 1987. A synopsis of the avifauna of China. Science Press. Beijing.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea albatrus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11309,"full_name":"Vanellus coronatus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Crowned Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau couronné","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría coronada","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius coronatus","author_year":"Boddaert, 1783"},{"full_name":"Stephanibyx coronatus","author_year":"(Boddaert, 1783)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11311,"full_name":"Porzana porzana","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Plettet rørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Porseleinhoen","convention_language":false,"id":null},{"lang":"English","names":"Spotted Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtahuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette ponctuée","convention_language":true,"id":null},{"lang":"German","names":"Tüpfelsumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pettyes vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Voltolino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Myrrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Kropiatka, Kropiatka (kureczka nakrapiana)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela pintoja","convention_language":true,"id":null},{"lang":"Swedish","names":"Småfläckig sumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Porzana","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Rallus porzana","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11312,"full_name":"Phoenicurus frontalis","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Blue-fronted Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue à front bleu","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11314,"full_name":"Recurvirostra americana","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"American Avocet","convention_language":true,"id":null},{"lang":"French","names":"Avocette d'Amérique","convention_language":true,"id":null},{"lang":"Spanish","names":"Avoceta Americana","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Hernández, O., Kirkconnell, A., Alfaro, E. and Reyes, E. 2006. American Avocet \u003Ci\u003ERecurvirostra americana\u003C/i\u003E wintering in Birama swamp, Granma province, Cuba. Cotinga: 25: 81.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11315,"full_name":"Serinus syriacus","author_year":"Bonaparte, 1851","common_names":[{"lang":"Danish","names":"Syrisk Gulirisk","convention_language":false,"id":null},{"lang":"Dutch","names":"Syrische Kanarie","convention_language":false,"id":null},{"lang":"English","names":"Syrian Serin, Tristram's Serin","convention_language":true,"id":null},{"lang":"French","names":"Serin syriaque","convention_language":true,"id":null}],"distributions":[{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Fringillidae","genus_name":"Serinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11316,"full_name":"Phylloscopus inornatus","author_year":"(Blyth, 1842)","common_names":[{"lang":"Danish","names":"Hvidbrynet Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bladkoninkje, Bladkoning","convention_language":false,"id":null},{"lang":"English","names":"Yellow-browed Warbler, Inornate Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjosiipiuunilintu","convention_language":false,"id":null},{"lang":"German","names":"Gelbbrauen-Laubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándorfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí forestiero","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-bilistada","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Bilistado","convention_language":true,"id":null},{"lang":"Swedish","names":"Taigasångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. R. 2007. First record of Yellow-browed Warbler \u003Ci\u003EPhylloscopus inornatus\u003C/i\u003E for The Gambia. Bulletin of the African Bird Club: 14: 74-75.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Cruse, R. 2004. Yellow-browed Warbler \u003Ci\u003EPhylloscopus inornatus\u003C/i\u003E in Senegal in December 2003. Bulletin of the African Bird Club: 11: 147-148.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11317,"full_name":"Lamna nasus","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"Afrikaans","names":"Haringhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Tonil","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb","convention_language":false,"id":null},{"lang":"Catalan","names":"Marraix","convention_language":false,"id":null},{"lang":"Danish","names":"Sildehaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Haringhaai, Neushaai","convention_language":false,"id":null},{"lang":"English","names":"Mackerel shark, Blue dog, Porbeagle, Beaumaris shark, Porbeagle shark, Porbeale shark","convention_language":true,"id":null},{"lang":"Faroese","names":"Hemari","convention_language":false,"id":null},{"lang":"Finnish","names":"Sillihai","convention_language":false,"id":null},{"lang":"French","names":"Requin-taupe commun","convention_language":true,"id":null},{"lang":"German","names":"Kalbfisch, Heringshai","convention_language":false,"id":null},{"lang":"Icelandic","names":"Hámeri","convention_language":false,"id":null},{"lang":"Italian","names":"Smeriglio","convention_language":false,"id":null},{"lang":"Japanese","names":"Môka-zame","convention_language":false,"id":null},{"lang":"Maltese","names":"Pixxiplamptu","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Lamia, Skylopsaro, Karharías","convention_language":false,"id":null},{"lang":"Norwegian","names":"Håbrann, Håbrand","convention_language":false,"id":null},{"lang":"Polish","names":"Zarlacz sledziowy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão, Peixe-cão, Tubarâo-sardo, Tubarão-sardo, Arrequim, Anequim, Sardo, Marracho","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechinul scrumbiilor","convention_language":false,"id":null},{"lang":"Serbian","names":"Psina atlantska, Kucina","convention_language":false,"id":null},{"lang":"Spanish","names":"Cailón marrajo, Marrajo sardinero, Cailón, Marrajo","convention_language":true,"id":null},{"lang":"Swedish","names":"Sillhaj, Håbrandshaj, Håbrand","convention_language":false,"id":null},{"lang":"Turkish","names":"Dikburun karkarias","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Luciflora, L. O. and Menni, R. C. 1998. First record of a porbeagle shark, \u003Ci\u003ELamna nasus\u003C/i\u003E, in brackish waters of Mar Chiquita Lagoon, Argentina. Cybium: 22(1): 87-88.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Quigley, D. and Flannery, K. 1995. Porbeagle shark \u003Ci\u003ELamna nasus\u003C/i\u003E (Bonnaterre, 1788). \u003Ci\u003EIrish Naturalists’ Journal\u003C/i\u003E: 25: 153.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"Dulcic, J. and Lipej, L. 2002. Rare and little-known fishes in the Eastern Adriatic during last two decades (1980-2001). Periodicum Biologorum: 104: 185-194.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Francis, M. P. 1979. Checklist of the marine fishes of Kaikoura, New Zealand. Mauri Ora: 7: 63-71.; Francis, M. P. and Duffy, C. 2005. Length at maturity in three pelagic sharks (\u003Ci\u003ELamna nasus\u003C/i\u003E, \u003Ci\u003EIsurus oxyrinchus\u003C/i\u003E, and \u003Ci\u003EPrionace glauca\u003C/i\u003E) from New Zealand. Fishery Bulletin: 103: 489-500.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Lamna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11318,"full_name":"Stenella clymene","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Clymene Dolphin, Helmet Dolphin, Atlantic Spinner Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Clymène","convention_language":true,"id":null},{"lang":"Swedish","names":"hjälmdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Simoes-Lopes, P. C., Praderi, P. and Paula, G. d. S. 1994. The Clymene Dolphin, \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846), in the southwestern south Atlantic Ocean. Marine Mammal Science: 10: 213-217.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F. and Mead, J. G. 1994. Clymene Dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Perrin, W. F. and Mead, J. G. 1994. Clymene Dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"West African population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11319,"full_name":"Sotalia guianensis","author_year":"(van Bénéden, 1864)","common_names":[{"lang":"English","names":"Guianian River Dolphin, Guiana dolphin","convention_language":true,"id":null},{"lang":"Swedish","names":"guyanadelfin","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Caballero, S., Trujillo, F., Vianna, J.A., Barrios-Garrido, H., Montiel, M. G., Beltrán-Pedreros, S., Marmontel, M., Santos, M.C., Rossi-Santos, M.,. 2007. Taxonomic status of the genus Sotalia: species level ranking for \"tucuxi\" (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) and \"costero\" (\u003Ci\u003ESotalia guianensis\u003C/i\u003E) dolphins. Marine Mammal Science: 23: 358-386.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Caballero, S., Trujillo, F., Vianna, J.A., Barrios-Garrido, H., Montiel, M. G., Beltrán-Pedreros, S., Marmontel, M., Santos, M.C., Rossi-Santos, M.,. 2007. Taxonomic status of the genus Sotalia: species level ranking for \"tucuxi\" (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) and \"costero\" (\u003Ci\u003ESotalia guianensis\u003C/i\u003E) dolphins. Marine Mammal Science: 23: 358-386.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sotalia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESotalia fluviatilis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11320,"full_name":"Charadrius semipalmatus","author_year":"Bonaparte, 1825","common_names":[{"lang":"Dutch","names":"Amerikaanse Bontbekplevier","convention_language":false,"id":null},{"lang":"English","names":"Semipalmated Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier semipalmé","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo semipalmeado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2005. Fifty-first Irish Bird Report 2003. Irish Birds: 7: 549-574.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius hiaticula semipalmatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11321,"full_name":"Ficedula subrubra","author_year":"(Hartert \u0026 Steinbacher, 1934)","common_names":[{"lang":"English","names":"Kashmir Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche du Cachemire","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11322,"full_name":"Gazella subgutturosa","author_year":"(Güldenstädt, 1780)","common_names":[{"lang":"English","names":"Goitred Gazelle, Black-tailed Gazelle, Sand Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Gazelle à goitre","convention_language":true,"id":null},{"lang":"German","names":"Persische Kropfgazelle","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"extinct","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Karami, M., Hemami, M. R. and Groves, C. P. 2002. Taxonomic, distributional and ecological data on gazelles in Iran. Zoology in the Middle East: 26: 29-36.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Safadi, M. M. 2000. On the status of artiodactyles in the Republic of Yemen. Zoology in the Middle East: 20(1): 5-8.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11323,"full_name":"Sylvia cantillans","author_year":"(Pallas, 1764)","common_names":[{"lang":"Danish","names":"Hvidskægget Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Subalpine Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rusorintakerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette passerinette","convention_language":true,"id":null},{"lang":"German","names":"Weissbart-Grasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörhenyes poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzolina","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-carrasqueira","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Carrasqueña","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödstrupig sångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11324,"full_name":"Microcarbo pygmaeus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Kormorán malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgskarv","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwergaalscholver","convention_language":false,"id":null},{"lang":"English","names":"Pygmy Cormorant","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkumerimetso, Kääpiömerimetso","convention_language":false,"id":null},{"lang":"French","names":"Cormoran pygmée, Cormoran pygmé, Corvo-marinho-pigmeu","convention_language":true,"id":null},{"lang":"German","names":"Zwergscharbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis kárókatona","convention_language":false,"id":null},{"lang":"Italian","names":"Marangone minore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pikkumerimetso, Corvo-marinho-pigmeu","convention_language":false,"id":null},{"lang":"Spanish","names":"Cormorán Pigmeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgskarv","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Crivelli, A.J., Nazirides, T. and Jerrentrup, H. 1996. Action plan for the Pygmy Cormorant \u003Ci\u003EPhalacrocorax pygmeus\u003C/i\u003E in Europe. BirdLife International. 23","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Microcarbo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Halietor pygmeus","author_year":"(Pallas, 1773)"},{"full_name":"Pelecanus pygmeus","author_year":"Pallas, 1773"},{"full_name":"Phalacrocorax pygmeus","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPhalacrocorax pygmaeus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11325,"full_name":"Tadarida latouchei","author_year":"Thomas, 1920","common_names":[{"lang":"English","names":"La Touche's Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Yoshiyuki, M., Hattori, S. and Tsuchiya, K. 1989. Taxonomic analysis of two rare bats from the Amami Islands (Chiroptera, Molossidae and Rhinolophidae). Mem. Natl. Sci. Mus. (Tokyo): 22: 215-225.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.; Helgen, K. M. and Wilson, D. E. 2002. The bats of Flores, Indonesia, with remarks on Asian \u003Ci\u003ETadarida\u003C/i\u003E. Breviora: 511: 12.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kock, D. 1999. \u003Ci\u003ETadarida\u003C/i\u003E (\u003Ci\u003ETadarida\u003C/i\u003E) \u003Ci\u003Elatouchei\u003C/i\u003E, a separate species recorded from Thailand with remarks on related Asian taxa (Mammalia, Chiroptera, Molossidae). Senckenbergiana Biologica: 78: 237-240.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ETadarida teniotis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11326,"full_name":"Plecotus sardus","author_year":"Mucedda, Kiefer, Pidinchedda \u0026 Veith, 2002","common_names":[{"lang":"English","names":"Sardinian Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mucedda, M., Kiefer, A., Pidinchedda, E. and Veith, M. 2002. A new species of long-eared bat (Chiroptera, Vespertilionidae) from Sardinia (Italy). Acta Chiropterologica: 4: 121-135.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11327,"full_name":"Ficedula albicollis","author_year":"(Temminck, 1815)","common_names":[{"lang":"Danish","names":"Hvidhalset fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Withalsvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Collared Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelsieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobe-mouche à collier, Gobemouche à collier","convention_language":true,"id":null},{"lang":"German","names":"Halsbandschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-de-colar","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas collarino, Papamoscas albicollis","convention_language":true,"id":null},{"lang":"Swedish","names":"Halsbandsflugsnäppare, Halsbandsflugsnappare, Halsbandsflugsnappar","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. and Matrozis, R. 2005. Latvijas Putni. http://www.putni.lv . ","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11328,"full_name":"Dugong dugon","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Dugong","convention_language":false,"id":null},{"lang":"English","names":"Dugong, Sea Cow","convention_language":true,"id":null},{"lang":"Finnish","names":"Dugongi","convention_language":false,"id":null},{"lang":"French","names":"Dugong","convention_language":true,"id":null},{"lang":"German","names":"Dugong oder Pazifische Seekuh","convention_language":false,"id":null},{"lang":"Italian","names":"Dugongo","convention_language":false,"id":null},{"lang":"Spanish","names":"Dugon, Dugong, Dugongo","convention_language":true,"id":null},{"lang":"Swedish","names":"sjöko, dugong","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Sheppard, J.K., Marsh, H., Jones, R.E. and Lawler, I.R. 2010. Dugong habitat use in relation to seagrass nutrients, tides, and diel cycles. Marine Mammal Science: 26: 855-879.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Gallagher, M. D. 1975. The dugong \u003Ci\u003EDugong dugon\u003C/i\u003E (Sirenia) at Bahrain, Persian (Arabian) Gulf. Journal of the Bombay Natural History Society: 73: 211-212.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Robineau, D. and Rose, J. M. 1982. Le Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Muller 1776, Sirenia, Dugongidae) en République de Djibouti. Biological Conservation: 24: 233-238.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; D'souza, E. and Patankar, V. 2009. First underwater sighting and preliminary behavioural observations of Dugongs (\u003Ci\u003EDugong dugon\u003C/i\u003E) in the wild from Indian waters, Andaman Islands. Journal of Threatened Taxa: 1: 49-53.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Robinson, H. C. and Kloss, C. B. 1917. List of the mammals of Sumatra. Journal of the Federated Malay States Museums: 8: 73-80.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Ligon, S. 1976. Aerial survey of the Dugong in Kenya. FAO ACMRR/MM/SC/107. Scientific Consultation on Marine Mammals, Bergen, Norway, 31 August - 9 September 1976 . ; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Bertram, G. C. L. and Ricardo Bertram, C. K. 1973. The modern Sirenia: their distribution and status. Biological Journal of the Linnean Society: 5: 297-338.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Maldives","country":"Maldives","tags_list":"extinct","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ilangakoon, A. D. and Tun, T. 2007. Rediscovering the Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E) in Myanmar and capacity building for research and conservation. Raffles Bulletin of Zoology: 55: 195-199.; Salter, R. E. 1983. Summary of currently available information on internationally threatened wildlife species in Burma. Nature Conservation and National Parks Project, Burma. Report for Food and Agriculture Organization of the United Nations . ; Tun Yin. 1970. The Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Müller) in Burmese waters. Journal of the Bombay Natural History Society: 67: 326-327.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C., Patenaude, N. and Marsh, H. 2007. Distribution and abundance of the dugong in New Caledonia, southwest Pacific. Marine Mammal Science: 24(1): 81-90.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Ho Hua Chew. 1988. The Dugong in Singapore waters. Malaysian Nat.: 42: 22-25.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Bertram, G. C. L. and Ricardo Bertram, C. K. 1973. The modern Sirenia: their distribution and status. Biological Journal of the Linnean Society: 5: 297-338.; Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Santiapillai, C. 1981. On the ecology and conservation of the Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Muller 1776) in Sri Lanka. Tigerpaper: 8: 2-6.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Marsh, H. 2001. Dugong: status report and action plans for countries and territories. IUCN/SSC Sirenia Specialist Group. 172","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Bain, J. R. and Humphrey, S. R. 1980. A profile of the endangered species of Thailand. Report No. 4 Office of Ecological Services, Florida State Museum.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1971. East African mammals. An atlas of evolution in Africa. Vol. 1. Academic Press. London.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Davies, G. and Payne, J. 1982. A faunal survey of Sabah. IUCN/WWF Project No. 1692. WWF Malaysia . ; Marsh, H. 1983. Conserving the Dugong (cowfish) in Vanuatu. Naika: 9: 1-5.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Mackinnon, J. 1983. Report on a visit to Hanoi, 18-25 November 1983, to participate in the workshop of the programme on natural resources and environmental research and protection. Unpublished. ; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Dugongidae","genus_name":"Dugong","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Dugong"}]},{"id":11329,"full_name":"Glareola pratincola","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Czech","names":"Ouhorlík stepní","convention_language":false,"id":null},{"lang":"Danish","names":"Braksvale","convention_language":false,"id":null},{"lang":"Dutch","names":"Vorkstaartplevier","convention_language":false,"id":null},{"lang":"English","names":"Collared Pratincole","convention_language":true,"id":null},{"lang":"Finnish","names":"Pääskykahlaaja","convention_language":false,"id":null},{"lang":"French","names":"Glaréole à collier","convention_language":true,"id":null},{"lang":"German","names":"Rotflügelbrachschwalbe, Brachschwalbe, Rotflügel-Brachschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Székicsér","convention_language":false,"id":null},{"lang":"Italian","names":"Pernice di mare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perdiz-do-mar","convention_language":false,"id":null},{"lang":"Spanish","names":"Canastera Común, Canastera","convention_language":true,"id":null},{"lang":"Swedish","names":"Vadarsvala, Rödvingad vadarsvala","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. L. 1997. West Indies Region. Field Notes: 51: 809-810.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct,distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hirundo pratincola","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11330,"full_name":"Histrionicus histrionicus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Strømand","convention_language":false,"id":null},{"lang":"Dutch","names":"Harlekijneend","convention_language":false,"id":null},{"lang":"English","names":"Harlequin Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Virta-alli","convention_language":false,"id":null},{"lang":"French","names":"Garrot arlequin, Arlequin plongeur","convention_language":true,"id":null},{"lang":"German","names":"Kragenente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tarka réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta arlecchino","convention_language":false,"id":null},{"lang":"Polish","names":"Kamieniuszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-arlequim","convention_language":false,"id":null},{"lang":"Russian","names":"Kamenushka","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato arlequin, Pato Arlequín","convention_language":true,"id":null},{"lang":"Swedish","names":"Strömand","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Histrionicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas histrionicus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11331,"full_name":"Streptopelia turtur","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Europæisk Turteldue","convention_language":false,"id":null},{"lang":"Dutch","names":"Zomertortel, Tortelduif","convention_language":false,"id":null},{"lang":"English","names":"European Turtle-Dove, Turtle Dove, Western Turtle-Dove","convention_language":true,"id":null},{"lang":"Finnish","names":"Turturikyyhky","convention_language":false,"id":null},{"lang":"French","names":"Tourterelle des bois","convention_language":true,"id":null},{"lang":"German","names":"Turteltaube","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vadgerle","convention_language":false,"id":null},{"lang":"Italian","names":"Tortora selvatica, Tortora","convention_language":false,"id":null},{"lang":"Polish","names":"Turkawka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rola-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya Gorlitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Tórtola común, Tórtola europea","convention_language":true,"id":null},{"lang":"Swedish","names":"Turturduva","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (3). Bulletin of the British Ornithologists' Club: 198: 112-120.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Ferreira, J. A. 1973. Bichos da Guiné: caça, fauna, natureza.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haas, V., Haussler, U. and Stick, R. 1981. Turtle Dove \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Kenya. Scopus: 5: 128.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Winterbottom, J. M. 1974. Turtle Dove \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in South West Africa. Bulletin of the British Ornithologists' Club: 94: 19.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Browne, S.J. and Aebischer, N.J. 2003. Habitat use, foraging ecology and diet of Turtle Doves \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Britain. Ibis: 145: 572-582.; Browne, S.J. and Aebischer, N.J. 2004. Temporal changes in the breeding ecology of European Turtle Doves \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Britain, and implications for conservation. Ibis: 146: 125-137.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Columbiformes","class_name":"Aves","family_name":"Columbidae","genus_name":"Streptopelia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11333,"full_name":"Oxyura maccoa","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Maccoa Duck","convention_language":true,"id":null},{"lang":"French","names":"Érismature maccoa","convention_language":true,"id":null},{"lang":"Spanish","names":"Malvasía maccoa","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zinner, D. 2001. Ornithological notes from a primate survey in Eritrea. Bulletin of the African Bird Club: 8: 95-106.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Erismatura maccoa","author_year":"Eyton, 1838"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11334,"full_name":"Calidris maritima","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Danish","names":"Sortgrå Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Paarse Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Purple Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Merisirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau violet","convention_language":true,"id":null},{"lang":"German","names":"Meerstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tengeri partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello violetto","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus morski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-escuro","convention_language":false,"id":null},{"lang":"Russian","names":"Morskoy Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Oscuro","convention_language":true,"id":null},{"lang":"Swedish","names":"Skärsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"distribution uncertain","country_references":"Matejev, S.D. and Vasic, V.F. 1973. Catalogus Faunae Jugoslaviae -Aves IV/3. Academia Scientiarium et Artium Slovenic, Lubljana (in Serbian) .","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia maritima","author_year":"(Brünnich, 1764)"},{"full_name":"Tringa maritima","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11335,"full_name":"Numenius arquata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Koliha velká","convention_language":false,"id":null},{"lang":"Danish","names":"Storspove (Stor Regnspove)","convention_language":false,"id":null},{"lang":"Dutch","names":"Wulp","convention_language":false,"id":null},{"lang":"English","names":"Curlew, Eurasian Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Isokuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis cendré","convention_language":true,"id":null},{"lang":"German","names":"Großer Brachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik wielki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Storspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax arquata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11336,"full_name":"Tursiops truncatus","author_year":"(Montagu, 1821)","common_names":[{"lang":"Danish","names":"Oresvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Tuimelaar","convention_language":false,"id":null},{"lang":"English","names":"Bottle-nosed Dolphin, Bottlenose Dolphin, Short-beaked Bottlenose Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Grand Dauphin, Souffleur, Tursiops","convention_language":true,"id":null},{"lang":"German","names":"Grosser Tümmler","convention_language":false,"id":null},{"lang":"Italian","names":"Tursiope troncato, Tursiope","convention_language":false,"id":null},{"lang":"Portuguese","names":"Roaz corvineiro","convention_language":false,"id":null},{"lang":"Spanish","names":"Tursión, Delfín mular, Pez mular","convention_language":true,"id":null},{"lang":"Swedish","names":"flasknosdelfin, öresvin","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mermoz, J. F. 1978. Sobre el varamiento de un delfín nariz de botella, \u003Ci\u003ETursiops truncatus\u003C/i\u003E, en la desembocadura del Rio de la Plata (Buenos Aires, Argentina). Physis, B. Aires (C): 37: 227-235.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Lear, R. J. and Bryden, M. M. 1980. A study of the Bottlenose Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E in eastern Australian waters. Canberra, ANPWS, Occasional Papers: 4: 1-25.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Baird, R. W., Waltes, E. L. and Stacey, R. J. 1993. Status of the Bottle-nosed Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E with special reference to Canada. Canadian Field Naturalist 107(4): 466-480: 107: 466-480.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Olavarría, C., Acevedo, J., Vester, H.I., Zamorano-Abramson, J., Viddi, F.A., Gibbons, J., Newcombe, E., Capella, J., Hoelzel, A.R., Flores, M. et al. 2010. Southernmost distribution of Common Bottlenose Dolphins (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in the Eastern South Pacific. Aquatic Mammals: 36: 288-293.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Newcomer, M. W. 1986. Observation of a bottlenose dolphin (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in Costa Rican waters. Brenesia: 24: 403-404.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Spaans, B. 1990. Dolphins in the coastal area of Guinea Bissau. Lutra: 33: 126-133.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; di Natale, A. 1983. Distribution of the bottlenosed dolphin, \u003Ci\u003ETursiops truncatus\u003C/i\u003E (Montagu) in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 193-194.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Aiken, K.A. and Pal, A.R. 2007. Interference with fish traps by dolphins (Delphinidae) in Jamaican waters. Proceedings of the 60th Gulf and Caribbean Fisheries Institute: 269-281.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Vella, A. 1999. Cetacean surveys around the Maltese Islands \u0026 Maltes [Maltese] sea-user cetacean questionnaire study. European Research on Cetaceans: 12: 66-73.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Valverde, J. A. 1957. Aves del Sahara Español. Instituto de Estudios Africanos, Consejo Superior de Investigaciones Cientificas. Madrid.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Cockcroft, V. G., Ross, G. J. B. and Peddemors, V. M. 1991. Distribution and status of Bottle-nosed Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E on the south coast of Natal, South Africa. South African Journal of Marine Science: 11: 203-209.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hammond, P. S. and Thompson, P. M. 1991. Minimum estimate of the Bottle-nose Dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Moray Firth, North-east Scotland. Biological Conservation: 56: 79-87.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baird, R.W., Gorgone, A.M., McSweeney, D.J., Lignon, A.D., Deakos, M.H., Webster, D.L., Schorr, G.S. and Martien, K.K. 2009. Population structure of island-associated dolphins: Evidence from photo-identification of common bottlenose dolphins (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in the main Hawaiian Islands. Marine Mammal Science: 25: 251-274.; Barros, N.B., Ostrom, P.H., Stricker, C.A. and Wells, R.S. 2010. Stable isotopes differentiate bottlenose dolphins off west-central Florida. Marine Mammal Science: 26: 324-336.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Tursiops","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Mediterranean population (replacing Western Mediterranean population)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Western Mediterranean, and Black Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Baltic and North Sea population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11337,"full_name":"Sylvia conspicillata","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Brillesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkupensaskerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette à lunettes","convention_language":true,"id":null},{"lang":"German","names":"Brillengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpeposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola di Sardegna","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka okularowa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-tomilheira","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Tomillera","convention_language":true,"id":null},{"lang":"Swedish","names":"Glasögonsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Sage, B. L. 1959. Some comments on autumn migration in eastern Iraq. Bulletin of the British Ornithologists' Club: 79: 132-135.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schmaljohann, H. and Salewski, V. 2005. Spectacled Warbler \u003Ci\u003ESylvia conspicillata\u003C/i\u003E in Mauritania: first breeding records. Bulletin of the African Bird Club: 12: 153-155.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11338,"full_name":"Trichechus senegalensis","author_year":"Link, 1795","common_names":[{"lang":"Dutch","names":"Westafikaanse Lamantijn","convention_language":false,"id":null},{"lang":"English","names":"African Manatee, West African Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin du Sénégal, Lamantin ouest-africain, Lamantin d'Afrique","convention_language":true,"id":null},{"lang":"German","names":"Westafrikanische Seekuh","convention_language":false,"id":null},{"lang":"Spanish","names":"Manatí de Senegal","convention_language":true,"id":null},{"lang":"Swedish","names":"afrikansk manat, senegalmanat","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hatt, R. T. 1934. A manatee collected by the American Museum Congo expedition, with observations on the recent manatees. Bulletin of the American Museum of Natural History: 66: 533-566.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Verschuren, J., Heymans, J. C. and Delvingt, W. 1989. Conservation in Benin - with the help of the European Economic Community. Oryx: 23: 22-26.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Grigione, M. M. 1996. Observations on the status and distribution of the West African Manatee in Cameroon. African Journal of Ecology: 34: 189-195.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Spinage, C. A. 1980. Parks and reserves in Congo Brazzaville. Oryx: 15: 292-295.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Cansdale, G. S. 1964. The Volta dam may help wildlife in Ghana. Oryx: 7: 168-171.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.; Verschuren, J. 1983. Conservation of tropical rain forest in Liberia. IUCN. Gland.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dupuy, A. 1971. SOS pour la conservation de la nature en Mauretanie. Science et Nature: 108: 31-34.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Haywood, A. H. W. 1932. Sierra Leone, the preservation of wildlife. Journal of the Society for the Preservation of the Fauna of the Empire: 19: 21-33.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11339,"full_name":"Myotis myotis","author_year":"(Borkhausen, 1797)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i madh","convention_language":false,"id":null},{"lang":"Croatian","names":"Veliki šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor museøre","convention_language":false,"id":null},{"lang":"Dutch","names":"Vale vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Greater Mouse-eared Bat, Large Mouse-eared Bat, Mouse-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurlendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläissiippa","convention_language":false,"id":null},{"lang":"French","names":"Grand murin","convention_language":true,"id":null},{"lang":"German","names":"Großes Mausohr","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Músablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio maggiore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stor musøre","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rato-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago ratonero grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Stort musöra, Större musöra","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Gerell, R. and Lundberg, K. 1985. [The mouse-eared bat (\u003Ci\u003EMyotis myotis\u003C/i\u003E Borkhausen, 1797) - a new bat species for Sweden.]. Fauna och Flora: 80: 144-146.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M. 1985. The mouse-eared bat in Britain. Bat News: 4.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11340,"full_name":"Limosa haemastica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Rode Grutto","convention_language":false,"id":null},{"lang":"English","names":"Hudsonian Godwit","convention_language":true,"id":null},{"lang":"French","names":"Barge hudsonienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Aguja café","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Rasmussen, P. C. and López H., N. 1988. Notes on the status of some birds of Region X, Chile. Bulletin of the British Ornithologists' Club: 108: 154-159.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax haemastica","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11341,"full_name":"Pterodroma sandwichensis","author_year":"(Ridgway, 1884)","common_names":[{"lang":"English","names":"Hawaiian Petrel","convention_language":true,"id":null}],"distributions":[{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Oestrelata sandwichensis","author_year":"Ridgway, 1884"},{"full_name":"Pterodroma phaeopygia sandwichensis","author_year":"(Salvin, 1876)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EPterodroma phaeopygia\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E). ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11344,"full_name":"Otomops madagascariensis","author_year":"Dorst, 1953","common_names":[{"lang":"English","names":"Malagasy Giant Mastiff Bat, Madagascar Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Garbutt, N. 1999. Mammals of Madagascar. Pica Press. East Sussex, U.K.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Otomops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EOtomops martiensseni\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11346,"full_name":"Acipenser stellatus","author_year":"Pallas, 1771","common_names":[{"lang":"Albanian","names":"Bli turigjate","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Czech","names":"Jester hvezdnaty","convention_language":false,"id":null},{"lang":"English","names":"Starry Sturgeon, Star Sturgeon, Stellate Sturgeon, Sevruga","convention_language":true,"id":null},{"lang":"Finnish","names":"Tähtisampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon étoilé, Sevruga","convention_language":true,"id":null},{"lang":"German","names":"Sternhausen, Sterhausen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Söregtok","convention_language":false,"id":null},{"lang":"Italian","names":"Storione stellato","convention_language":false,"id":null},{"lang":"Polish","names":"Siewruga","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjâo estrelado, Esturjão-estrelado","convention_language":false,"id":null},{"lang":"Romanian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Russian","names":"Sevryuga, Sevrjuga","convention_language":false,"id":null},{"lang":"Serbian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Slovenian","names":"Jeseter hviezdnaty","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión estrellado","convention_language":true,"id":null},{"lang":"Swedish","names":"sevrugastör, Stjärnstör","convention_language":false,"id":null},{"lang":"Turkish","names":"Mersin, Mersin baligi","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Economidis, P.S., Koutrakis, E. T., Bobori, D.C. 2000. Distribution and conservation of \u003Ci\u003EAcipenser sturio\u003C/i\u003E L.,1758 and related species in Greek waters. Boletín Instituto Español de Oceanografía: 16: 81-88.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Pinter, K. 1991. Sturgeon in Hungary, past and present situation. Bordeaux. ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .; DEG. 2003. Regional Touristic Masterplan Ulcinj. ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Bacalbasa-Dobrovici, N. 1997. Endangered migratory sturgeons of the lower Danube River and its delta. Environmental Biology of Fishes: 48: 201-207.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Holcik, J. 1995. 2.druh Acipenser (Gladostomus) stellatus Pallas, 1771. In. V. Barus and O. Oliva (eds.) Mihulovci Petromyzontes a ryby Osteichthyes. 1. Fauna CR a SR 28/1. Academia. Praha.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11348,"full_name":"Acipenser baerii","author_year":"Brandt, 1869","common_names":[{"lang":"English","names":"Siberian Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon sibérien","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk stör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Ruban, G. I. 1996. The Siberian Sturgeon, \u003Ci\u003EAcipenser baerii baerii\u003C/i\u003E: population status in the Ob River. The Sturgeon Quarterly: 4: 8-9.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11349,"full_name":"Netta erythrophthalma","author_year":"(Wied, 1832)","common_names":[{"lang":"English","names":"Southern Pochard","convention_language":true,"id":null},{"lang":"French","names":"Nette brune","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato morado","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 2000. The first Southern Pochard \u003Ci\u003ENetta erythrophthalma\u003C/i\u003E in Israel and the Western Palearctic. Sandgrouse: 22: 131-133.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas erythrophthalma","author_year":"Wied, 1832"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11350,"full_name":"Acipenser sturio","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Blini, Blini turigjate","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Nemska essetra, Moruna, Atlantichka esetra","convention_language":false,"id":null},{"lang":"Catalan","names":"Esturió","convention_language":false,"id":null},{"lang":"Croatian","names":"Strljun, Storijun, Jesetric","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter valky, Jeseter velky, Jeseter velký","convention_language":false,"id":null},{"lang":"Danish","names":"Haastor, Selstor, Store, Stør","convention_language":false,"id":null},{"lang":"Dutch","names":"Steur, Gewone steur, Stent","convention_language":false,"id":null},{"lang":"English","names":"Baltic Sturgeon, Sea Sturgeon, European Sturgeon, Common Sturgeon, Sturgeon","convention_language":true,"id":null},{"lang":"Faroese","names":"Styrja","convention_language":false,"id":null},{"lang":"Finnish","names":"Storjer, Sampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon atlantique, Créa, Créach, Esturgeon atlantique d'Europe, Esturgeon commun, Esturgeon, Étrugeon, Esturgeon européen occidentale, Créac, Estourioun, Esturgeon de la Baltique, Esturgeon européen","convention_language":true,"id":null},{"lang":"German","names":"Stierl, Stohr, Schirk, Baltischer Stör, Stör, Gemeiner Stör, Sturo","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kestchecke, Ketschegi, Szintok, Közönséges tok","convention_language":false,"id":null},{"lang":"Icelandic","names":"Rodmage, Styrja, Graa-stepa","convention_language":false,"id":null},{"lang":"Italian","names":"Storione reale, Porcelleto, Storione comune, Attilus, Storione, Porcello, Porcelette","convention_language":false,"id":null},{"lang":"Japanese","names":"Chôzame","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Sturys, Atlanto ersketas, Ersketras, Atlantinis ersketas","convention_language":false,"id":null},{"lang":"Macedonian","names":"Közönseges tok","convention_language":false,"id":null},{"lang":"Maltese","names":"Sturjun","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Mouroúna Stourióni, Stourioni, Mourouna","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stør, Storje","convention_language":false,"id":null},{"lang":"Polish","names":"Czezuga, Jesiotr zachodni, jesziotr, Czetzugi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão, Sôlho, Peixe rei, Creal, Esturjao solho, Esturjao","convention_language":false,"id":null},{"lang":"Romanian","names":"Sipul, Sip, Viza galbena, Sturion","convention_language":false,"id":null},{"lang":"Russian","names":"Atlanticheskii osetr, Baltiyskiy osetr, Nemetskij osetr, Atlantiskÿ osetr, Baltiskÿ osetr, Tanna, Baltiiskii osetr, Obiknovenÿ osetr, Osstrina, Sülime","convention_language":false,"id":null},{"lang":"Serbian","names":"Jesetra, Moruna, Atlantska jesetra","convention_language":false,"id":null},{"lang":"Slovak","names":"Jeseter vel'ky","convention_language":false,"id":null},{"lang":"Slovenian","names":"Atlantski jeseter, Atlantski jesetar","convention_language":false,"id":null},{"lang":"Spanish","names":"Sulio, Sollo, Sollo real, Esturión, Esturión común","convention_language":true,"id":null},{"lang":"Swedish","names":"Europeisk stör, Stör, vanlig stör","convention_language":false,"id":null},{"lang":"Turkish","names":"Kolan, Surack, Mersin, Kolan baligi, Syrick, Açl mersine, Mersin baligi","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Poll, M. 1947. Faune de Belgique - poissons marins. Musèe Royal d'Histoire Naturelle de Belgique. Bruxelles.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Botev, S. B. and Peshev, T (eds.) 1985. [The Red Data Book of Bulgaria. Vol. 2. Animals.].","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct","country_references":"Lojtnant, B. and Gregersen, J. 1986. Truede Planter og dyr i Danmark. (Threatened plants and animals in Denmark - a collection of red lists). Fredningsstyrelsen and Lanbrugsministeriets Vildt for Valtning.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Paaver, T. 1999. Historic and recent records of native and exotic sturgeon species in Estonia. Journal of Applied Icthyology: 15: 129-132.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kiener, A. NULL. Espèces en voie de disparition ou menacées dans le Midi Méditerranéen.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Spillmann, C. J. 1961. Faune de France. 65, Poissons d'eau douce. Fédération Française des Sociétés de Sciences Naturelles. Paris.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J., Nowak, E., Kreft, E., Lelek, A. and Tesch, F.-W. 1977. Rote Liste der Fische (Pisces) und Rundmäuler (Cyclostomata). 2. Fassungi. Stand: 15. 3. 1977.; Dehus, P. 1982. Rote Liste der Süsswasserfische Schleswig-Holsteins. 1. Fassung. In: Rote Listen der Pflanzen und Tiere Schleswig-Holsteins. Schriftenreihe des Landesamtes für Naturschutz und Landschaftspflege Schleswig-Holstein, Kiel .; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Terofal, F. 1977. Das Artenspektrum der Fische Bayerns in den letzten 50 Jahren. Ber. ANL: 1: 9-22.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Economidis, P. S. 1973. Catalogue des poissons de la Grèce. Hellenic Oceanology and Limnology: 11: 421-598.; Economidis, P.S., Koutrakis, E. T., Bobori, D.C. 2000. Distribution and conservation of \u003Ci\u003EAcipenser sturio\u003C/i\u003E L.,1758 and related species in Greek waters. Boletín Instituto Español de Oceanografía: 16: 81-88.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Wilson, J. P. F. and Flower, R. J. 1980. A large sturgeon \u003Ci\u003EA. sturio\u003C/i\u003E from Ardglass, Co. Down. Irish Naturalists' Journal: 20: 1-43.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Alesio, G. and Gandolfi, G. 1983. Censimiento e distribuzione attuale delle specie ittiche nel bacino del fiume Po. Instituto di Ricerca Sulle Acque Quaderni: 67: 1-92.; Delmastro, G. B. 1982. Guida ai pesci del Bacino del Po - e delle acque dolci d'Italia. Museo Civico di Storia Naturale di Carmagnola. CLESAV. Milano.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Plikss, M. 2002. Fish of Latvia. http://latvijas.daba.lv/scripts/db/saraksti/saraksti.cgi?d=zivis\u0026l=en . ","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Repecka, R. 2003. The species composition of the ichthyofauna in the Lithuanian economic zone of the Baltic Sea and the Curonian lagoon and its changes in recent years. Acta Zoologica Lituanica: 13(2): 149-157.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Nijsen, H. and de Groot, S. J. 1987. De Vissen van Nederland. KNNV. Utrecht.; Timmermans, G. and Melchers, M. 1994. [The Atlantic Sturgeon in the Netherlands.]. Natura (Hoogwoud): 91: 155-158.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Anon. 2003. Emerald Network Pilot Project in \"former Yugoslav Republic of Macedonia\". Report. http://www.coe.int/t/e/Cultural\u003Ci\u003ECooperation/Environment/Nature\u003C/i\u003Eand\u003Ci\u003Ebiological\u003C/i\u003Ediversity/Ecological\u003Ci\u003Enetworks/Agenda/tpvs\u003C/i\u003Eemerald03e_03.PDF?L=E Document presented at the meeting of the Convention on the Conservation of European Wildlife and Natural Habitats, Strasbourg, 14 February 2003. ","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Pethon, P. 1985. Aschehougs store fiskebok. Oslo.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Ferens, B. 1965. Animal species under protection in Poland (Ochrona gatunkowa zwierzat w Polsce). Translated from Polish. Sci. Pub. Forg. Coop. Center Central Instl Sci. Tech. and Economic Information .; Gtowacinski, Z., Bieniek, M., Dyduch, A., Gertychowa, R., Jakubiec, Z., Kosior, A. and ,Zemanek, M. 1980. Situation of all vertebrates and selected invertebrates in Poland - list of species, their occurrence, endangerment and status of protection. Polska Akademia Nauk. Warszawa-Krahow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Almaça, C. 1988. A lampreia e o esturjâo na Bacia do Douro. Actas 1? Congresso Internacional sobre o Rio Douro, Vila Nova de Gaiz . ; Almaça, C. 1988. On the sturgeon, \u003Ci\u003EAcipenser sturio\u003C/i\u003E Linnaeus, 1758, in the Portuguese rivers and sea. Folia Zoologica, Bratislava: 37: 183-191.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Vasiliu, G. D. and Sova, C. 1968. Fauna Vertebratica Romaniae (Index). Muzeul Judetean Bacau.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bannikov, A. G. and Sokolov, V. I (eds.) 1984. The Red Data Book of the U.S.S.R. Rare and Threatened Species of Animals and Plants. Lesuaya Promiishlyennost Press. Moscow.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Almodovar, A., Machordom, A. and Suarez, J. 2000. Preliminary results from Characterization of the Iberian Peninsula sturgeon based on analysis of the mtDNA cytochrome b. Boletin Instituto Espanol de Oceanografia: 16: 17-27.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hernando, J. A. 1975. Notas sobre distribucion de los peces fluviales en el sur-oeste de España. Doñana, Acta Vertebrata: 2: 263-264.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; ICONA. (ed.) 1986. Lista roja de los vertebrados de España. Publicaciones del Ministerio de Agricultura, Pesca y Alimentacion. Madrid.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Curry-Lindahl, K. 1985. Vara fiskar. Havs-och Sötvattensfiskar i Norden och övriga Europa. P.A. Norstedt and Söners Förlag. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kuru, M. 1980. Türkiye Tattisu Baliklari Katalogu. Türkiye Faunasi: 12: 1.; Ladiges, V. W. 1964. Süsswasserfische der Türkei. Mitteilungen aus den Hamburgischen Zoologischen Museum und Institut: 61: 203-220.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bannikov, A. G. and Sokolov, V. I (eds.) 1984. The Red Data Book of the U.S.S.R. Rare and Threatened Species of Animals and Plants. Lesuaya Promiishlyennost Press. Moscow.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Knight, A. 1997. Did sturgeon ever breed in British waters? Glaucus: 8: 29-33.; Maitland, P. S. 1985. Criteria for the selection of important sites for freshwater fish in the British Isles. Biological Conservation: 31: 335-353.; Wheeler, A. 1973. Leonard Jenyns's notes on Cambridgeshire fishes. Cambridgeshire and Isle of Ely Naturalists' Trust Annual Report 1973: 19-22.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11351,"full_name":"Procellaria conspicillata","author_year":"Gould, 1844","common_names":[{"lang":"English","names":"Spectacled Petrel","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Savigny, C. 2002. Observaciones sobre aves marinas en aguas argentinas, sudeste Bonarense y Patagonia. Cotinga: 18: 81-84.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria aequinoctialis conspicillata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EProcellaria aequinoctialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11353,"full_name":"Manta birostris","author_year":"(Walbaum, 1792)","common_names":[{"lang":"English","names":"Oceanic Manta Ray","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Luiz Jr, O. J., Balboni, A. P., Kodja, G., Andrade, M. and Marum, H. 2009. Seasonal occurrences of \u003Ci\u003EManta birostris\u003C/i\u003E (Chondrichthyes: Mobulidae) in southeastern Brazil. Ichthyological Research: 56(1): 96-99.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Mourier, J. 2012. Manta rays in the Marquesas Islands: first records of \u003Ci\u003EManta birostris\u003C/i\u003E in French Polynesia and most easterly location of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Pacific Ocean, with notes on their distribution. Journal of Fish Biology: 81(6): 2053-2058.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Graham, R. T., Witt, M. J., Castellanos, D. W., Remolina, F., Maxwell, S., Godley, B. J. and Hawkes, L. A. 2012. Satellite tracking of manta rays highlights challenges to their conservation. Plos One: 7(5): e36834.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Duffy, C. A. J. and Abbott, D. 2003. Sightings of mobulid rays from northern New Zealand, with confirmation of the occurrence of \u003Ci\u003EManta birostris\u003C/i\u003E in New Zealand\nwaters. New Zealand Journal of Marine and Freshwater Research: 37(4): 715-721.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Milessi, A. C. and Oddone, M. C. 2003. A new record of \u003Ci\u003EManta birostris\u003C/i\u003E (Donndorff 1798) (Batoidea: Mobulidae) in the Rio de la Plata, Uruguay. Gayana: 67(1): 127-130.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Manta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":11354,"full_name":"Eptesicus nilssonii","author_year":"(Keyserling \u0026 Blasius, 1839)","common_names":[{"lang":"English","names":"Northern Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"nordisk fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Cerveny, J. and Lecocq, Y. 1998. The northern bat (\u003Ci\u003EEptesicus nilssonii\u003C/i\u003E) - a new species for the bat fauna of Belgium. Lynx (Prague): 29: 97-98.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hanák, V. and Horacek, I. 1987. Zur Sudgrenze des Areals von \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Chiroptera: Vespertilionidae). Ann. Naturhist. Mus. Wien Ser. B. Bot. Zool.: 88: 377-388.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Pavlinic, I. and Tvrtkovic, N. 2003. The presence of \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E and \u003Ci\u003EVespertilio murinus\u003C/i\u003E in the Croatian bat fauna confirmed. Natura Croatica: 12(2): 55-62","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Sato, M., Maeda, K. and Akazawa, Y. 2001. [Distribution of bats in Toyatomi and Horonobe, northern Hokkaido.]. Rishiri Studies: 20: 23-28.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Boshamer, J. P. C. 1997. Noordse vleermuis \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E (Keyserling \u0026 Blasius, 1839). Natuurhistorische Bibliotheek van de KNNV: 65: 202-203.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Cerveny, J. and Krystufek, B. 1991. First record of \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E, Keyserling et Blasius, 1839 (Chiroptera, Mammalia) in Slovenia. Bioloski Vestnik: 39: 21-25.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Pokynchereda, V. F., Zagorodniuk, I. V., Postawa, T., Labocha, M. and Pokynchereda, V. V. 1999. [\u003Ci\u003EMyotis bechsteini\u003C/i\u003E and \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Mammalia, Chiroptera) in the west of Ukraine.]. Vestnik Zoologii: 33: 115-120.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Racey, P. A. 1988. First British record of the northern bat (\u003Ci\u003EEptesicus nilssoni\u003C/i\u003E). Journal of Zoology (London): 215: 357-359.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11356,"full_name":"Monticola gularis","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"White-throated Rock-Thrush","convention_language":true,"id":null},{"lang":"French","names":"Monticole à gorge blanche","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11357,"full_name":"Rhinolophus euryale","author_year":"Blasius, 1853","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i mesdheut","convention_language":false,"id":null},{"lang":"Danish","names":"Middelhavshesteskonæse, Middelhavs hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Paarse hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Välimerenhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe euryale","convention_language":true,"id":null},{"lang":"German","names":"Mittelmeer-Hufeisennase","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo euriale","convention_language":false,"id":null},{"lang":"Norwegian","names":"Middelhavshesteskonese","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-mediterrânico","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago mediterráneo de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Mellanhästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.; Niazi, A. D. 1976. [On the Mediterranean horseshoe bat from Iraq.]. Bulletin nat. Hist. Res. Cent. Univ. Baghdad: 7: 167-176.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Goiti, U., Aihartza, J. R., Garin, I. and Zabala, J. 2003. Influence of habitat on the foraging behaviour of the Mediterranean horseshoe bat, \u003Ci\u003ERhinolophus euryale\u003C/i\u003E. Acta Chiropterologica: 5(1): 75-84; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11359,"full_name":"Muscicapa griseisticta","author_year":"(Swinhoe, 1861)","common_names":[{"lang":"English","names":"Grey-streaked Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à taches grises","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11360,"full_name":"Numenius borealis","author_year":"(Forster, 1772)","common_names":[{"lang":"Danish","names":"Eskimospove","convention_language":false,"id":null},{"lang":"Dutch","names":"Arctische wulp, Eskimowulp","convention_language":false,"id":null},{"lang":"English","names":"Eskimo Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Eskimokuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis esquimau","convention_language":true,"id":null},{"lang":"German","names":"Eskimobrachvogel, Eskimo-Brachvogel","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo boreale","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito polar, Zarapito esquimal, Chorlito esquimal, Zarapito boreal, Chorlo polar","convention_language":true,"id":null},{"lang":"Swedish","names":"eskimåspov","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"extinct (?)","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"extinct (?)","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"extinct (?)","country_references":"Anon. 1995. Lista de las aves de Bolivia. Asociación Armonía. Santa Cruz, Bolivia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"extinct (?)","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.; Gratto-Trevor, C. L. 2001. Current status of the Eskimo Curlew in Canada. Bird Trends: 8: 44-45.","id":null},{"name":"Chile","country":"Chile","tags_list":"extinct (?)","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"extinct (?)","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"extinct (?)","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11361,"full_name":"Anas undulata","author_year":"Dubois, 1839","common_names":[{"lang":"English","names":"Yellow-billed Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade picolimón","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11363,"full_name":"Phalacrocorax neglectus","author_year":"(Wahlberg, 1855)","common_names":[{"lang":"English","names":"Bank Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran des bancs","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán de Bajío","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Graculus neglectus","author_year":"Wahlberg, 1855"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11364,"full_name":"Charadrius marginatus","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"White-fronted Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à front blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo frentiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius alexandrinus marginatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11365,"full_name":"Phoebastria irrorata","author_year":"(Salvin, 1883)","common_names":[{"lang":"English","names":"Waved Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros des Galapagos","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de las Galápagos","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea irrorata","author_year":"Salvin, 1883 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea irrorata\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11366,"full_name":"Neophocaena phocaenoides","author_year":"(G. Cuvier, 1829)","common_names":[{"lang":"English","names":"Finless Porpoise, Black Finless Porpoise, Finless Black Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin sans nageoires, Marsouin aptère","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa negra","convention_language":true,"id":null},{"lang":"Swedish","names":"fenlös tumlare, asiatisk tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768–774.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Neophocaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11367,"full_name":"Charadrius falklandicus","author_year":"Latham, 1790","common_names":[{"lang":"English","names":"Two-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier des Falkland","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo Malvinero","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11368,"full_name":"Numenius tahitiensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Bristle-thighed Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis d'Alaska","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito del Pacífico","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennerley, P. R. and Bishop, K. D. 2001. Bristle-thighed Curlew \u003Ci\u003ENumenius tahitiensis\u003C/i\u003E on Manus, Admiralty Islands, Papua New Guinea. Stilt: 38: 54-55.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Scolopax tahitiensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11369,"full_name":"Phocoena spinipinnis","author_year":"Burmeister, 1865","common_names":[{"lang":"English","names":"Burmeister's Porpoise, Black Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Burmeister","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa espinosa","convention_language":true,"id":null},{"lang":"Swedish","names":"svart tumlare, sydamerikansk tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11370,"full_name":"Sarothrura ayresi","author_year":"(Gurney, 1877)","common_names":[{"lang":"English","names":"White-winged Flufftail, White-winged Crake","convention_language":true,"id":null},{"lang":"French","names":"Râle à miroir","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela especulada","convention_language":true,"id":null}],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Coturnicops ayresi","author_year":"Gurney, 1877"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11371,"full_name":"Aythya valisineria","author_year":"(Wilson, 1814)","common_names":[{"lang":"English","names":"Canvasback","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à dos blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón coacoxtle","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas valisineria","author_year":"Wilson, 1814"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11372,"full_name":"Threskiornis aethiopicus","author_year":"(Latham, 1790)","common_names":[{"lang":"Danish","names":"Hellig Ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Heilige Ibis","convention_language":false,"id":null},{"lang":"English","names":"African Sacred Ibis, Sacred Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Pyhäiibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis sacré","convention_language":true,"id":null},{"lang":"German","names":"Heiliger Ibis","convention_language":false,"id":null},{"lang":"Italian","names":"Ibis sacro","convention_language":false,"id":null},{"lang":"Spanish","names":"Ibis sagrado","convention_language":true,"id":null},{"lang":"Swedish","names":"helig ibis","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fremont, J. Y. 1995. [\u003Ci\u003EThreskiornis aethiopicus\u003C/i\u003E, a new breeding species for France.]. Ornithos: 2: 44-45.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; McLellan-Davidson, M.E. 1934. The Templeton Crocker expedition to Western Polynesian and Melanesian islands, 1933. Proceedings of the California academy of sciences: 21(16): 189-198.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Threskiornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Sub-Saharan Africa and Southwest Asia (Iran/Iraq) populations.\r\nFormerly listed as \u003Ci\u003EThreskiornis aethiopicus aethiopicus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11373,"full_name":"Diomedea amsterdamensis","author_year":"Roux, Jouventin, Mougin, Stahl \u0026 Weimerskirch, 1983","common_names":[{"lang":"English","names":"Amsterdam Island Albatross, Amsterdam Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros d'Amsterdam","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de la Amsterdam","convention_language":true,"id":null}],"distributions":[{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11374,"full_name":"Cervus elaphus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Dreri","convention_language":false,"id":null},{"lang":"Croatian","names":"Jelen","convention_language":false,"id":null},{"lang":"Czech","names":"Jelen lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Krondyr","convention_language":false,"id":null},{"lang":"English","names":"Elk, Red Deer, Wapiti","convention_language":true,"id":null},{"lang":"Estonian","names":"Punahirv","convention_language":false,"id":null},{"lang":"Finnish","names":"Saksanhirvi","convention_language":false,"id":null},{"lang":"French","names":"Cerf élaphe","convention_language":true,"id":null},{"lang":"German","names":"Rothirsch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gímszarvas","convention_language":false,"id":null},{"lang":"Icelandic","names":"Krónhjörtur","convention_language":false,"id":null},{"lang":"Italian","names":"Cervo nobile","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Taurusis elnias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hjort","convention_language":false,"id":null},{"lang":"Portuguese","names":"Veado","convention_language":false,"id":null},{"lang":"Romanian","names":"Cerb-nobil","convention_language":false,"id":null},{"lang":"Spanish","names":"Ciervo rojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kronhjort","convention_language":false,"id":null},{"lang":"Turkish","names":"Ulugeyik","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"","id":null},{"name":"Albania","country":"Albania","tags_list":"extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"introduced","country_references":"","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"extinct,reintroduced","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"extinct","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"introduced","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Mammals of Serbia - checklist. http://www.wild-serbia.com/pdf/Sisari\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bhat, B.A., Shah, G.M., Jan, U., Ahangar, F.A. and Fazili, M.F. 2009. Observations on rutting behaviour of Hangul Deer \u003Ci\u003ECervus elaphus hanglu\u003C/i\u003E (Cetartiodactyla: Cervidae) in Dachigam National Park, Kashmir, India. Journal of Threatened Taxa: 1: 355-357.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"introduced","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"introduced","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct,reintroduced","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Cervidae","genus_name":"Cervus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Populations in Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan, Uzbekistan and Afghanistan. Formerly listed as \u003Ci\u003ECervus elaphus bactrianus\u003C/i\u003E. ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Populations in Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan, Uzbekistan and Afghanistan. Formerly listed as \u003Ci\u003ECervus elaphus bactrianus\u003C/i\u003E. ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11375,"full_name":"Numenius americanus","author_year":"Bechstein, 1812","common_names":[{"lang":"English","names":"Long-billed Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito Americano","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11376,"full_name":"Miniopterus schreibersii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Danish","names":"Schreibers Flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Schreiber's vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Schreiber's Long-fingered Bat, Common Long-fingered Bat, Common Bentwing Bat","convention_language":true,"id":null},{"lang":"Italian","names":"Minioterro","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de cueva","convention_language":true,"id":null},{"lang":"Swedish","names":"Schreibers fladdermus, vikvingad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Churchill, S. 1998. Australian bats. Reed New Holland. Sydney.; Dwyer, P. D. 1969. Population ranges of \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E (Chiroptera) in south-eastern Australia. Australian Journal of Zoology: 17: 665-686.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Monadjem, A. 2000. Checklist of mammals of Swaziland. http://www.sntc.org.sz/checklst/sdmamchk.html . ","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Metcalfe, K., Ffrench-Constant, R. and Gordon, I. 2010. Sacred sites as hotspots for biodiversity: the Three Sisters Cave complex in coastal Kenya. Oryx: 44: 118-123.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Robinson, M. F. and Webber, M. 2000. Survey of bats (Mammalia: Chiroptera) in the Khammouan Limestone National Biodiversity Conservation Area, Lao P.D.R. Natural History Bulletin of the Siam Society: 48: 21-45.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Lopes, F. J. and Crawford-Cabral, J. 1992. Catalogo dos Chiroptera em coleccao no Centro de Zoologia. Garcia de Orta, Ser. Zool.: 17: 1-20.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Bonaccorso, F. J. 1998. Bats of Papua New Guinea. Conservation International. Washington, D.C.; Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Esselstyn, J. A., Widmann, P. and Heaney, L. R. 2004. The mammals of Palawan Island, Philippines. Proceedings of the Biological Society of Washington: 117(3): 271-302; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Heaney, L. R., Balete, D. S., Rickart, E. A., Utzurrum, R. C. B. and Gonzales, P. C. 1999. Mammalian diversity on Mount Isarog, a threatened center of endemism on southern Luzon Island, Philippines. Fieldiana Zoology: 95: 62.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ingle, N. R. and Heaney, L. R. 1992. A key to the bats of the Philippine islands. Fieldiana Zoology: 69: 44 pp.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Haitlinger, R. and Ruprecht, A. L. 1985. Arthropods collected from Kujawian bats (Acari and Siphonaptera). Polskie Pismo ent.: 55: 615-618.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Baeten, B. B., van Cakenberghe, V. and de Vree, F. 1984. An annotated inventory of a collection of bats from Rwanda. Revue de Zoologie Africaines: 98: 183-196.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hill, J. E. 1956. The mammals of Rennell Island. The Natural History of Rennell Island Danish Science Press. Copenhagen.; Hill, J.E. 1968. Notes on mammals from the Islands of Rennell and Bellona. The Natural History of Rennell Island, British Solomon Islands. Scientific Results of The Danish Rennell Expedition, 1951 and the British Museum (Natural History) Expedition 1953 Danish Science Press, Ltd. Copenhagen. 5: 53-60.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kuznetsov, G. V. and Rozhnov, V. V. 1998. [Mammals of the mountain region of Sa Pa and Fan Si Pan: biodiversity and problems of their conservation]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre. Moscow and Hanoi.; Nguyen Quang, P. and Voisin, J.-F. 2001. Bats and rodents in swiftlet caves in Vietnam (Chiroptera and Rodentia). Mammalia: 65: 253-258.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nader, I. A. and Kock, D. 1987. First record of \u003Ci\u003EMiniopterus schreibersi\u003C/i\u003E (Kuhl 1819) (Mammalia: Chiroptera) from North Yemen with zoogeographical relationship evidenced by wing mites (Acarina: Spinturnicidae). Sencken. Biol.: 67: 225-229.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Miniopterus haradai","author_year":"Maeda, 1982"},{"full_name":"Miniopterus oceanensis","author_year":"Maeda, 1982"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only African and European populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11377,"full_name":"Thalassarche chlororhynchos","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Gulnæbbet Albatros","convention_language":false,"id":null},{"lang":"English","names":"Yellow-nosed Albatross, Atlantic Yellow-nosed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à nez jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros clororrinco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1989. Notes on some birds of northeastern Brazil (4). Bulletin of the British Ornithologists' Club: 109: 152-157.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea chlororhynchos","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea chlororhynchos\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11378,"full_name":"Aythya collaris","author_year":"(Donovan, 1809)","common_names":[{"lang":"Danish","names":"Halsbåndtroldand","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Kuifeend, Ringsnaveleend","convention_language":false,"id":null},{"lang":"English","names":"Ring-necked Duck","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à bec cerclé, Fuligule à collier","convention_language":true,"id":null},{"lang":"Polish","names":"Czernica ameryka","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón acollarado","convention_language":true,"id":null},{"lang":"Swedish","names":"ringand","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mlodinow, S. G. 2007. First records of Great Frigatebird (\u003Ci\u003EFregata minor\u003C/i\u003E), Ring-necked Duck (\u003Ci\u003EAythya collaris\u003C/i\u003E), Greater Ani (\u003Ci\u003ECrotophaga major\u003C/i\u003E), Red-eyed Vireo (\u003Ci\u003EVireo olivaceus\u003C/i\u003E), and Indigo Bunting (\u003Ci\u003EPasserina cyanea\u003C/i\u003E) for Aruba, with notes on other significant sightings Journal of Caribbean Ornithology: 19: 31.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas collaris","author_year":"Donovan, 1809"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11379,"full_name":"Phocoenoides dalli","author_year":"(True, 1885)","common_names":[{"lang":"English","names":"Dall's Porpoise, White-flanked Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Dall","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa de Dall","convention_language":true,"id":null},{"lang":"Swedish","names":"Dalls tumlare, Trues tumlare, stillahavstumlare","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoenoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11380,"full_name":"Limnodromus scolopaceus","author_year":"(Say, 1823)","common_names":[{"lang":"Danish","names":"Langnæbbet Sneppeklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Grijze Snip","convention_language":false,"id":null},{"lang":"English","names":"Long-billed Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta escolopácea","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Holt, P. 1999. Long-billed Dowitcher Limnodromus scolopaceus at Bharatpur, Rajasthan, India: a new species for the Indian subcontinent. Forktail: 15: 95-96.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Limnodromus griseus scolopaceus","author_year":"(Gmelin, 1789)"},{"full_name":"Limosa scolopacea","author_year":"Say, 1823"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11381,"full_name":"Eubalaena glacialis","author_year":"(P.L.S. Müller, 1776)","common_names":[{"lang":"English","names":"Black Right Whale, Northern Right Whale, Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine franche, Baleine de Biscaye, Baleine des Basques","convention_language":true,"id":null},{"lang":"Norwegian","names":"Nordkaper","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena, Ballenga, Ballena franca del Norte","convention_language":true,"id":null},{"lang":"Swedish","names":"biskayaval, stillahavsrätval, nordvästkapare, nordkapare","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"de Smet, W. M. A. 1974. Inventaris van de walvisachtigen (Cetacea) van de Vlaamse kust en de Schelde. Bulletin Inst. r. Sci. nat. Belg. (Biol.): 50: 1-156.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hamilton, P.K. and Cooper, L.A. 2010. Changes in North Atlantic right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) cow-calf association times and use of the calving ground: 1993-2005. Marine Mammal Science: 26: 896-916.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Mellinger, D.K., Nieukirk, S.L., Klinck, K., Klinck, H., Dziak, R.P. and Phillip, J. 2011. Confirmation of right whales near a nineteenth-century whaling ground east of southern Greenland. \u003Ci\u003EBiology Letters\u003C/i\u003E: 7: 411–413.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Martin and Walker. 1997. Sighting of a right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) with calf off S.W. Portugal. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 13(1): 139–140.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Best, P. B. and Roscoe, M. J. 1974. Survey of right whales off South Africa, 1972, with observations from Tristan da Cunha, 1971-72. Report int. Commn Whal.: 24: 136-141.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Clark, C.W., Brown, M.W. and Corkeron, P. 2010. Visual and acoustic surveys for North Atlantic right whales, \u003Ci\u003EEubalaena glacialis\u003C/i\u003E, in Cape Cod Bay, Massachusetts, 2001-2005: Management implications. Marine Mammal Science: 26: 837-854.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hamilton, P.K. and Cooper, L.A. 2010. Changes in North Atlantic right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) cow-calf association times and use of the calving ground: 1993-2005. Marine Mammal Science: 26: 896-916.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"North Atlantic. Initially listed as \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also as \u003Ci\u003EBalaena glacialis glacialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11382,"full_name":"Turdus boulboul","author_year":"(Latham, 1790)","common_names":[{"lang":"English","names":"Grey-winged Blackbird","convention_language":true,"id":null},{"lang":"French","names":"Merle à ailes grises","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11383,"full_name":"Falco vespertinus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Czech","names":"Poštolka rudonohá","convention_language":false,"id":null},{"lang":"Danish","names":"Aftenfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodpootvalk","convention_language":false,"id":null},{"lang":"English","names":"Red-footed Falcon, Western Red-footed Falcon","convention_language":true,"id":null},{"lang":"Finnish","names":"Punajalkahaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon kobez","convention_language":true,"id":null},{"lang":"German","names":"Rotfußfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kék vércse","convention_language":false,"id":null},{"lang":"Italian","names":"Falco cuculo","convention_language":false,"id":null},{"lang":"Polish","names":"Kobczyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-pés-vermelhos","convention_language":false,"id":null},{"lang":"Spanish","names":"Cernícalo Patirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Aftonfalk","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. 1997. Western Red-footed Falcon \u003Ci\u003EFalco vespertinus\u003C/i\u003E, a new addition to the Republic of Benin list. Malimbus: 19: 95-96.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Purger, J.J. 2001. Defence behaviour of red-footed falcons \u003Ci\u003EFalco vespertinus\u003C/i\u003E in the breeding period and effects of disturbance on breeding success. Ornis Fennica: 78: 13-21.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.; Mikkola, A. and Mikkola, H. 2002. First record of Red-footed Falcon \u003Ci\u003EFalco vespertinus\u003C/i\u003E in The Gambia. Bulletin of the African Bird Club: 9: 45.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11384,"full_name":"Locustella naevia","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Danish","names":"Græshoppesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Common Grasshopper-Warbler, Grasshopper Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensassirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle tachetée","convention_language":true,"id":null},{"lang":"German","names":"Feldschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie macchiettato","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-malhada","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovenny Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Pintoja","convention_language":true,"id":null},{"lang":"Swedish","names":"Gräshoppsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Kainady, P. V. G. and Al-Joborae, P. F. M. 1975. Two additions to the Iraqi avifauna. Bull. Basrah Nat. Hist. Mus.: 2: 51-54.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Saghier, O. and Porter, R. F. 1997. The first Grasshopper Warbler Locustella naevia in Yemen. Sandgrouse: 19: 150.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11385,"full_name":"Acrocephalus dumetorum","author_year":"Blyth, 1849","common_names":[{"lang":"Danish","names":"Buskrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Struikrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Blyth's Reed-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viitakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle des buissons","convention_language":true,"id":null},{"lang":"German","names":"Buschrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola di Blyth, Carricero de Blyth","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-moitas","convention_language":false,"id":null},{"lang":"Spanish","names":"Cannaiola di Blyth, Carricero de Blyth","convention_language":true,"id":null},{"lang":"Swedish","names":"Busksångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Denkinger, J. 1997. First record of a Blyth's Reed Warbler \u003Ci\u003EAcrocephalus dumetorum\u003C/i\u003E in Switzerland. Ornithol. Beob.: 94: 257-260.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11386,"full_name":"Zoothera dixoni","author_year":"(Seebohm, 1881)","common_names":[{"lang":"English","names":"Long-tailed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Dixon","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11387,"full_name":"Myotis dasycneme","author_year":"(Boie, 1825)","common_names":[{"lang":"Danish","names":"Damflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Meervleermuis","convention_language":false,"id":null},{"lang":"English","names":"Pond Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Tiigilendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Lampisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin des marais, Vespertilion des marais","convention_language":true,"id":null},{"lang":"German","names":"Teichfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tavi denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Tjarnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio dasicneme","convention_language":false,"id":null},{"lang":"Norwegian","names":"Damflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"nocek lydkowlosy","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-iaz","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago lagunero","convention_language":true,"id":null},{"lang":"Swedish","names":"Dammfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Husson, A. M. 1962. The bats of Suriname. Zoologische Verhandelingen: 58: 282 pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Dykyj, I. 1999. [Find of the pond bat (\u003Ci\u003EMyotis dasycneme\u003C/i\u003E) on the territory of Western Ukraine.]. Vestnik Zoologii: 33: 20.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis surinamensis","author_year":"Husson, 1962"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11388,"full_name":"Myotis punicus","author_year":"Felten, Spitzenberger \u0026 Storch, 1977","common_names":[{"lang":"English","names":"Felten's Myotis, Maghrebian Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. 1983. Occurrence and zoogeographical implications of \u003Ci\u003EMyotis blythi\u003C/i\u003E (Tomes, 1857) in Libya. Mammalia: 47: 429-430.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"EUROBATS"}]},{"id":11389,"full_name":"Phylloscopus armandii","author_year":"(Milne-Edwards, 1865)","common_names":[{"lang":"English","names":"Yellow-streaked Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Milne-Edwards","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1995. Yellow-streaked Warbler: the first records for Hong Kong. Hong Kong Bird Report 1995 : 123-126.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11390,"full_name":"Chlidonias leucopterus","author_year":"(Temminck, 1815)","common_names":[{"lang":"Dutch","names":"Witvleugelstern","convention_language":false,"id":null},{"lang":"English","names":"White-winged Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkosiipitiira","convention_language":false,"id":null},{"lang":"French","names":"Guifette leucoptère","convention_language":true,"id":null},{"lang":"German","names":"Weißflügel-Seeschwalbe","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattino alibianche","convention_language":false,"id":null},{"lang":"Polish","names":"rybitwa bialoskrzydla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-d'asa-branca","convention_language":false,"id":null},{"lang":"Spanish","names":"Fumarel Aliblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitvingad tärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11391,"full_name":"Otaria flavescens","author_year":"(Shaw, 1800)","common_names":[{"lang":"English","names":"Southern Sealion, South American Sealion","convention_language":true,"id":null},{"lang":"French","names":"Lion de mer d'Amérique du Sud","convention_language":true,"id":null},{"lang":"German","names":"Südamerikanischer Seelöwe","convention_language":false,"id":null},{"lang":"Spanish","names":"Léon marino sudamericano","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Otariidae","genus_name":"Otaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Otaria byronia","author_year":"(de Blainville, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11392,"full_name":"Anas flavirostris","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Yellow-billed Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle tachetée","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta barcina","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11393,"full_name":"Vanellus melanopterus","author_year":"(Cretzschmar, 1829)","common_names":[{"lang":"English","names":"Black-winged Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à ailes noires","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría lugubroide","convention_language":true,"id":null}],"distributions":[{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius melanopterus","author_year":"Cretzschmar, 1829"},{"full_name":"Stephanibyx melanopterus","author_year":"(Cretzschmar, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11394,"full_name":"Morus capensis","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"English","names":"Cape Gannet","convention_language":true,"id":null},{"lang":"French","names":"Fou du Cap","convention_language":true,"id":null},{"lang":"Spanish","names":"Alcatraz del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bergkamp, P. Y. 1995. First record of Cape Gannet Sula capensis for Argentina. Bulletin of the British Ornithologists' Club: 115: 71.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Ramírez Llorens, P. 1996. \u003Ci\u003ESula capensis\u003C/i\u003E en el Canal Beagle, Argentina. El Hornero: 14: 67-68.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Belton, W. 1984. Birds of Rio Grande do Sul, Brazil, part 1: Rheidae through Furnariidae. Bulletin of the American Museum of Natural History: 178: .; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, H. 2004. The first Cape Gannet \u003Ci\u003ESula capensis\u003C/i\u003E in Oman and the Middle East. Sandgrouse: 26: 146-148.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"García-Godos, I. 2002. First record of the Cape Gannet \u003Ci\u003EMorus capensis\u003C/i\u003E for Peru and the Pacific Ocean. Marine Ornithology: 30: 50.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Morus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Dysporus capensis","author_year":"Lichtenstein, 1823"},{"full_name":"Sula capensis","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11395,"full_name":"Phylloscopus magnirostris","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Large-billed Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à gros bec","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11396,"full_name":"Gorilla gorilla","author_year":"(Savage, 1847)","common_names":[{"lang":"English","names":"Western Gorilla, Gorilla","convention_language":true,"id":null},{"lang":"Finnish","names":"Gorilla","convention_language":false,"id":null},{"lang":"French","names":"Gorille","convention_language":true,"id":null},{"lang":"German","names":"Gorilla","convention_language":false,"id":null},{"lang":"Italian","names":"Gorilla","convention_language":false,"id":null},{"lang":"Spanish","names":"Gorila","convention_language":true,"id":null},{"lang":"Swedish","names":"gorilla, bergsgorilla, låglandsgorilla","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Huntley, B. J. 1974. Outlines of wildlife conservation in Angola. Journal of the Southern African Wildlife Management Association: 4: 157-166.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bützler, W. 1980. Présence et répartition des gorilles, \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E (Savage and Wyman, 1847) au Cameroun. Säugetierkundliche Mitteilungen: 28: 67-79.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Ferriss, S. 2005. Western gorilla (\u003Ci\u003EGorilla gorilla\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Grzimek, B. 1978. Kameruns Urwald ist die Heimat der Gorillas. Das Tier 12: 16-19, 40-41.; IUCN. 1996. African Primates. Status Survey and Conservation Action Plan. Revised edition. IUCN. Gland, Switzerland.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Poulsen, J. R., Clark, C. J., Smith, T. B. 2001. Seed dispersal by a diurnal primate community in the Dja Reserve, Cameroon. Journal of Tropical Ecology: 17: 787-808; Prescott, H. J., Rapley, W. A., Mengang Mewondo, J. 1994. Status and conservation of Chimpanzees and Gorillas in Cameroon. Report of the Jardin Zoologique du Quebec and Metro Toronto Zoo Joint Expedition . ; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1986. Status of the Lowland Gorilla and other wildlife in the Dzanga-Sangha region of southwestern Central African Republic. Primate Conservation: 7: 38-41.; Remis, M. J. 2000. Preliminary assessment of the impacts of human activities on gorillas \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E and other wildlife at Dzanga-Sangha Reserve, Central African Republic. Oryx: 34: 55-65.; Spinage, C. A. 1980. Gorillas in the Central African Republic. Unpublished . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Aveling, C. and Aveling, R. 1989. Gorilla conservation in Zaire. Oryx: 23: 64-70.; Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.; Murnyak, D. F. 1981. Censusing the Gorillas in Kahuzi-Biega National Park. Biological Conservation: 21: 163-176.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Sholley, C. 1989. Being friends. BBC Wildlife: 7: 642-646.; Yamagiwa, J., Mwanga, N., Spangenberg, A., Maruhashii, T., Yumoto, T., Fischer, A. and Steinhauer-Burkart, B. 1993. A census of the eastern Lowland Gorilla \u003Ci\u003EGorilla gorilla graueri\u003C/i\u003E in Kajuzi-Biega National Park with reference to Mountain Gorillas \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E in the Virunga region, Zaire. Biological Conservation: 64: 83-89.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Sabater Pi, J. 1981. Exploitation of Gorillas \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E Savage and Wyman 1847 in Rio Muni, Republic of Equatorial Guinea, West Africa. Biological Conservation: 19: 131-140.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Tutin, C. E. G. and Fernandez, M. 1984. Nationwide census of Gorilla (\u003Ci\u003EGorilla g. gorilla\u003C/i\u003E) and Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E) populations in Gabon. American Journal of Primatology: 6: 313-336.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Harcourt, A. H., Stewart, K. J. and Inahoro, I. M. 1989. Gorilla question in Nigeria. Oryx: 23: 7-13.; Harcourt, A. H., Stewert, K. J. and Ahoro, I. M. 1989. Nigeria's Gorillas, a survey and recommendations. Primate Conservation: 10: 73-76.; March, E.W. 1957. Gorillas of eastern Nigeria. Oryx: 4: 30-34.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Gorilla","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Gorilla Agreement"}]},{"id":11397,"full_name":"Mesoplodon bidens","author_year":"(Sowerby, 1804)","common_names":[{"lang":"English","names":"Sowerby's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Sowerby","convention_language":true,"id":null},{"lang":"Norwegian","names":"Spisshval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena de pico de Sowerby","convention_language":true,"id":null},{"lang":"Swedish","names":"nordsjönäbbval, Sowerbys näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Kükenthal, W. 1914. Zur kentiss des \u003Ci\u003EMesoplodon bidens\u003C/i\u003E (Sow.). \u003Ci\u003EJenaische Zeitschrift fur Naturwissenschaft\u003C/i\u003E: 51:93-122; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"MacLeod, C.D. 2000. Review of the distribution of Mesoplodon species (order Cetacea, family Ziphiidae) in the North Atlantic. \u003Ci\u003EMammal Review\u003C/i\u003E: 30(1): 1–8.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Koepcke, H.W. 1936. Ein zweiter Fund von \u003Ci\u003EMesoplodon bidens\u003C/i\u003E (Sow.) an der deutschen Ostseeküste. \u003Ci\u003EZoologischer Anzeiger\u003C/i\u003E: 13: 157-158.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Pereira, J.N., Neves, V.C., Prieto, R., Silva, M. a., Cascão, I., Oliveira, C., Cruz, M.J., Medeiros, J.V., Barreiros, J.P., Porteiro, F.M. et al. 2011. Diet of mid-Atlantic Sowerby’s beaked whales \u003Ci\u003EMesoplondon bidens\u003C/i\u003E. \u003Ci\u003EDeep Sea Research Part I: Oceanographic Research Papers\u003C/i\u003E: 58(11): 1084–1090.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11398,"full_name":"Thalasseus sandvicensis","author_year":"Latham, 1787","common_names":[{"lang":"Czech","names":"Rybák severní","convention_language":false,"id":null},{"lang":"Danish","names":"Splitterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Stern","convention_language":false,"id":null},{"lang":"English","names":"Sandwich Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Riuttatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne caugek","convention_language":true,"id":null},{"lang":"German","names":"Brandseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kenti csér","convention_language":false,"id":null},{"lang":"Italian","names":"Beccapesci","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa czubata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garajau-commun, Garajau-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán patinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Kentsk tärna","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna eurygnatha","author_year":"Saunders, 1876"},{"full_name":"Sterna sandvicensis","author_year":"Latham, 1787 "},{"full_name":"Thalasseus eurygnatha","author_year":"(Saunders, 1876)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna sandvicensis sandvicensis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11401,"full_name":"Lophodytes cucullatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Hooded Merganser","convention_language":true,"id":null},{"lang":"French","names":"Harle couronné","convention_language":true,"id":null},{"lang":"Spanish","names":"Serreta capuchona","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. L. 1997. West Indies Region. Field Notes: 51: 809-810.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Lophodytes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Mergus cucullatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11402,"full_name":"Eidolon helvum","author_year":"(Kerr, 1792)","common_names":[{"lang":"English","names":"Straw-coloured Fruit Bat","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Feiler, A. 1986. Zur Faunistik und Biometrie angolanischer Fledermause (Mammalia, Mega- et Microchiroptera). Zoologische Abhandlungen st. Mus. Tierk., Dresden: 42: 65-77.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Robbins, C. B. 1980. Small mammals of Togo and Benin. 1. Chiroptera. Mammalia: 44: 83-88.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Koch-Weser, S. 1984. Fledermäuse aus Obervolta, W-Afrika. Senckenbergiana Biologica: 64: 255-311.; Koopman, K. F., Mumford, R. E. and Heisterberg, J. F. 1978. Bat records from Upper Volta, West Africa. American Museum Novitates: 2643: 6 pp.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Kock, D. 1981. Zur Chiropteran-fauna von Burundi (Mammalia). Senckenbergiana Biologica: 61: 329-336.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Schlitter, D. A., Robbins, L. W. and Buchanan, S. A. 1982. Bats of the Central African Republic (Mammalia: Chiroptera). Annals of Carnegie Museum: 51: 133-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Vielliard, J. 1974. Les cheiroptères du Tchad. Revue Suisse de Zoologie: 81: 975-991.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J., Harrison, D. L. and Granjon, L. 1991. Bats (Chiroptera) from the Mayombe and lower Kouilou (with a checklist for Congo). Tauraco Research Report: 4: 251-263.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Cabrera, A. 1929. Catalogo descriptivo de los mamiferos de la Guinea Espanola. Memorias de la Sociedad Espagnol de Historia Natural, Madrid: 16: 1-121.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Kock, D., Barnett, L., Fahr, J. and Emms, C. 2002. On a collection of bats (Mammalia: Chiroptera) from The Gambia. Acta Chiropterologica: 4: 77-97.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Bergmans, W. and Van Strien, N. 2004. Systematic notes on a collection of bats from Malawi. I. Megachiroptera: Epomophorinae and Rousettinae (Mammalia, Chiroptera). Acta Chiropterologica: 6: 249-268.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Meinig, H. 2000. Notes on the mammal fauna of the southern part of the Republic of Mali, West Africa. Bonner Zoologische Beiträge: 49: 100-114.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Cosson, J. F., Tranier, M. and Colas, F. 1996. On the occurrence and possible migratory behaviour of the fruit bat \u003Ci\u003EEidolon helvum\u003C/i\u003E in Mauritania, Africa. Journal of African Zoology: 110: 369-371.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Kock, D. 1978. Vergleichende Untersuchung einiger Säugetiere im südlichen Niger (Mammalia: Insectivora, Chiroptera, Lagomorpha, Rodentia). Senckenbergiana biol.: 58: 113-136.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Snowden, P., Bates, P. J. J., Harrison, D. L. and Brown, M. R. 2000. Recent records of bats and rodents from Oman, including three species new to the country. Fauna of Arabia: 18: 397-407.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Feiler, A. 1988. Die Säugetiere der inseln im Golf von Guinea. Zoologische Abhandlungen staatliche Museum für Tierkunde Dresden: 44: 83-88.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Nader, I. A. 1985. First record of \u003Ci\u003EEidolon helvum sabaeum\u003C/i\u003E (K. Andersen, 1907) for the Kingdom of Saudi Arabia (Chiroptera: Pteropodidae). Mammalia: 49: 429-431.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Pteropodidae","genus_name":"Eidolon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/2001","short_note_en":null,"full_note_en":"Only African populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11404,"full_name":"Catharus guttatus","author_year":"(Pallas, 1811)","common_names":[{"lang":"Dutch","names":"Heremietlijster","convention_language":false,"id":null},{"lang":"English","names":"Hermit Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive solitaire","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Wallace, G. E., Wallace, E. A. H., Froehlich, D. R., Kirkconnell, A., Torres, E. S., Carlisle, H. and Machell, E. 1999. Hermit Thrush and Black-throated Grey Warbler, new for Cuba, and other significant bird records from Cayo Coco and vicinity, Ciego de Avila province, Cuba. Florida Field Naturalist: 27: 37-51.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.; Styles, M. and Styles, C. 1999. Hermit Thrush \u003Ci\u003ECatharus guttatus\u003C/i\u003E in County Cork: a species new to Ireland. Irish Birds: 6: 426-427.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Erickson, R. A. and Wurster, T. E. 1998. Confirmation of nesting in Mexico for four bird species from the Sierra San Pedro Mártir, Baja California. Wilson Bulletin: 110: 118-120.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11405,"full_name":"Anas rubripes","author_year":"Brewster, 1902","common_names":[{"lang":"Danish","names":"Sortbrun And","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Eend","convention_language":false,"id":null},{"lang":"English","names":"American Black Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard noir, Canard noirâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade sombrío","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas obscura rubripes","author_year":"Brewster, 1902"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11407,"full_name":"Stenella coeruleoalba","author_year":"(Meyen, 1833)","common_names":[{"lang":"English","names":"Striped Dolphin, Euphrosyne Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin bleu et blanc, Dauphin rayé","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín blanco y azul","convention_language":true,"id":null},{"lang":"Swedish","names":"eufrosynedelfin, strimmig delfin, blåvit delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"van Gompel, J. 1982. [Sea mammals on the Belgian coast in 1981, with a description of the first record of a striped dolphin for Belgium (\u003Ci\u003EStenella coeruleoalba\u003C/i\u003E).]. Wielewaal: 48: 263-266.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinedo, M. C. and Castello, H. P. 1980. Primeiros registros dos golfinhos \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, \u003Ci\u003EStenella\u003C/i\u003E cfr. \u003Ci\u003Eplagiodon\u003C/i\u003E e \u003Ci\u003ESteno bredanensis\u003C/i\u003Epara o sul do Brasil, com notas osteologicas. Boletim Inst. Oceanogr. S. Paulo: 29: 313-317.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Kinze, C. C., Schmidt, D. and Tougaard, S. 2000. Forste fund af stribet delfin (\u003Ci\u003EStenella coeruleoalba\u003C/i\u003E) fra den danske Skagerrak-kyst. Flora og Fauna: 106: 9-12.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goffmann, O., Roditi, M., Shariv, T., Spanier, E. and Kerem, D. 2000. Cetaceans from the Israeli coast of the Mediterranean sea. Israel journal of zoology: 46: 143-147.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Striped dolphin, \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen) in the central Mediterranean Sea: an analysis of the new data. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 201-202.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Isaksen, K. and Syvertsen, P. O. 2002. Striped dolphins, \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, in Norwegian and adjacent waters. Mammalia: 66: 33-41.; Syvertsen, P. O., van der Kooij, J. and Isaksen, K. 1999. Forekomsten av stripedelfin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E og delfin \u003Ci\u003EDelphinus delphis\u003C/i\u003E langs norskekysten. Fauna (Oslo): 52: 104-117.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Mediterranean population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical Pacific population ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11408,"full_name":"Balaenoptera borealis","author_year":"Lesson, 1828","common_names":[{"lang":"Dutch","names":"Noordse Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Sei Whale, Rudophi's Rorqual, Pollack Whale, Coalfish Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleinoptère de Rudolphi, Rorqual sei, Rorqual de Rudolphi, Rorqual boréal","convention_language":true,"id":null},{"lang":"German","names":"Seiwal","convention_language":false,"id":null},{"lang":"Norwegian","names":"Seihval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena sei, Rorcual norteno, Rorcual boreal, Ballena boba, Rorcual de Rudolphi","convention_language":true,"id":null},{"lang":"Swedish","names":"sejval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11409,"full_name":"Phoebetria palpebrata","author_year":"(Forster, 1785)","common_names":[{"lang":"English","names":"Light-mantled Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros fuligineux","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros tiznado","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Shirihai, H. 2002. A complete guide to Antarctic wildlife. The birds and marine mammals of the Antarctic continent and the Southern Ocean. Alula Press. Degerby, Finland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebetria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea palpebrata","author_year":"J. R. Forster, 1785"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11410,"full_name":"Numenius tenuirostris","author_year":"Vieillot, 1817","common_names":[{"lang":"Czech","names":"Koliha velká","convention_language":false,"id":null},{"lang":"Danish","names":"Tyndnæbbet spove","convention_language":false,"id":null},{"lang":"Dutch","names":"Dunbekwulp","convention_language":false,"id":null},{"lang":"English","names":"Slender-billed Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiankuovi, Kaitanokkakuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis à bec grêle","convention_language":true,"id":null},{"lang":"German","names":"Dünnschnabelbrachvogel, Dünnschnabel-Brachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vekonyscörü póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlottello","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik cienkodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito fino","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad spov","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Heredia, B., Rose, L. and Painter, M (eds.) 1996. Globally threatened birds in Europe: action plans. Council of Europe Publishing. Strasbourg.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gallo-Orsi, U., and Boere, G.C. 2001. The Slender-billed Curlew \u003Ci\u003ENumenius tenuirostris\u003C/i\u003E: threats and conservation. \u003Ci\u003EActa Ornithologica \u003C/i\u003E 36(1): 73-77","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Hulo, I., Horvat, F. and Sekeres, O. 2008. New data on rare breeding and migrant species [of birds] on Subotica lakes and sandy terrains (Serbia). Ciconia (Serbia and Montenegro): 14: 57-62.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gallo-Orsi, U., and Boere, G.C. 2001. The Slender-billed Curlew \u003Ci\u003ENumenius tenuirostris\u003C/i\u003E: threats and conservation. \u003Ci\u003EActa Ornithologica \u003C/i\u003E 36(1): 73-77","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Blondel, J. and Blondel, C. 1964. Remarques sur l'hivernage des limicoles et autres oiseaux aquatiques au Maroc. Alauda: 32: 250-279.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"},{"effective_from_formatted":"10/09/1994","name":"Slender-billed Curlew"}]},{"id":11411,"full_name":"Haematopus ostralegus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Strandskade","convention_language":false,"id":null},{"lang":"Dutch","names":"Scholekster","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Oystercatcher, Oystercatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Meriharakka","convention_language":false,"id":null},{"lang":"French","names":"Huîtrier pie","convention_language":true,"id":null},{"lang":"German","names":"Austernfischer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csigaforgató","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccia di mare","convention_language":false,"id":null},{"lang":"Polish","names":"Ostrygojad","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ostraceiro","convention_language":false,"id":null},{"lang":"Russian","names":"Kulik-soroka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ostrero Euroasiático","convention_language":true,"id":null},{"lang":"Swedish","names":"Strandskata","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11412,"full_name":"Ficedula tricolor","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Slaty-blue Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche bleu-ardoise","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11413,"full_name":"Glareola nuchalis","author_year":"Gray, 1849","common_names":[{"lang":"English","names":"Rock Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole auréolée","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera sombría","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11414,"full_name":"Cercotrichas galactotes","author_year":"(Temminck, 1820)","common_names":[{"lang":"Danish","names":"Trenattegal","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Waaierstaart","convention_language":false,"id":null},{"lang":"English","names":"Rufous Bush Robin, Rufous-tailed Scrub-Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Roustepyrstö, Ruostepyrstö","convention_language":false,"id":null},{"lang":"French","names":"Agrobate roux","convention_language":true,"id":null},{"lang":"German","names":"Heckensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tüskebujkáló, Tüskebujláló","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo d'Africa","convention_language":false,"id":null},{"lang":"Polish","names":"Drozdówka rdzawa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-do-mato","convention_language":false,"id":null},{"lang":"Spanish","names":"Alzacola","convention_language":true,"id":null},{"lang":"Swedish","names":"Trädnäktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ma Ming. 1999. Greater Flamingo \u003Ci\u003EPhoenicopterus ruber\u003C/i\u003E and Rufous-tailed Scrub Robin \u003Ci\u003ECercotrichas galactotes\u003C/i\u003E: two new species for China. Forktail: 15: 105-106.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cercotrichas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erythropygia galactotes","author_year":"(Temminck, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11415,"full_name":"Turdus pallidus","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Pale Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle pâle","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11416,"full_name":"Turdus feae","author_year":"(Salvadori, 1887)","common_names":[{"lang":"English","names":"Grey-sided Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle de Fea","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11417,"full_name":"Cephalorhynchus heavisidii","author_year":"(Gray, 1828)","common_names":[{"lang":"Dutch","names":"Zuidafrikaanse Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Benguela Dolphin, Heaviside's Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Heaviside","convention_language":true,"id":null},{"lang":"Spanish","names":"Tunina de Heaviside","convention_language":true,"id":null},{"lang":"Swedish","names":"bengueladelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Elwen, S.H., Reeb, D., Thornton, M. and Best, P.B. 2009. A population estimate of Heaviside’s dolphins, \u003Ci\u003ECephalorhynchus heavisidii\u003C/i\u003E, at the southern end of their range. Marine Mammal Science: 25: 107-124.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11418,"full_name":"Calidris ruficollis","author_year":"(Pallas, 1776)","common_names":[{"lang":"Danish","names":"Rødhalset Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodkeelstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Stint","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à col roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos cuellirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia ruficollis","author_year":"(Pallas, 1776)"},{"full_name":"Tringa ruficollis","author_year":"Pallas, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11419,"full_name":"Haliaeetus leucoryphus","author_year":"(Pallas, 1771)","common_names":[{"lang":"Danish","names":"Pallas Havørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Witbandzeearend","convention_language":false,"id":null},{"lang":"English","names":"Pallas's Sea-Eagle, Pallas's Fish-Eagle, Band-tailed Fish-Eagle","convention_language":true,"id":null},{"lang":"French","names":"Pygargue de Pallas","convention_language":true,"id":null},{"lang":"Polish","names":"Bielik wschodni","convention_language":false,"id":null},{"lang":"Russian","names":"Orlan-dolgokhvost","convention_language":false,"id":null},{"lang":"Spanish","names":"Pigargo de Pallas","convention_language":true,"id":null},{"lang":"Swedish","names":"bandhavsörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Sarker, S. U. and Iqbal, M. 1985. Observations on Pallas's Fish Eagle \u003Ci\u003EHaliaeetus leucoryphus\u003C/i\u003E in Bangladesh. Bulletin of the World Working Group on Birds of Prey: 2: 100-102.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mauersberger, G., Wagner, S., Wallschlager, D. and Warthold, R. 1982. Neue Daten zur Avifauna mongolica. Mitteilungen aus dem Zoologischen Museum in Berlin: 58: 11-74.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11420,"full_name":"Steganopus tricolor","author_year":"Vieillot, 1819","common_names":[{"lang":"Danish","names":"Wilsons Svømmesneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilson's Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Wilson's Phalarope","convention_language":true,"id":null},{"lang":"French","names":"Phalarope de Wilson","convention_language":true,"id":null},{"lang":"Spanish","names":"Falaropo tricolor","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rivas, F. M. 1997. Resumen de aves consideras como raras o accidentales para La República Dominicana. El Pitirre: 10: 58.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Steganopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Phalaropus tricolor","author_year":"(Vieillot, 1819)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11421,"full_name":"Ovis ammon","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Delja e eger, Dash i eger","convention_language":false,"id":null},{"lang":"Croatian","names":"Muflon","convention_language":false,"id":null},{"lang":"Czech","names":"Muflon","convention_language":false,"id":null},{"lang":"Danish","names":"Mufflon, Argali","convention_language":false,"id":null},{"lang":"Dutch","names":"Argali, Moeflon","convention_language":false,"id":null},{"lang":"English","names":"Marco Polo Sheep, Argali, Asian Wild Sheep","convention_language":true,"id":null},{"lang":"Estonian","names":"Uluklammas, Mägilammas","convention_language":false,"id":null},{"lang":"Finnish","names":"Mufloni, Argalilammas","convention_language":false,"id":null},{"lang":"French","names":"Mouflon d'Asie, Mouflon méditerranéen, Mouflon vrai, Mouflon d'Eurasie, Argali","convention_language":true,"id":null},{"lang":"German","names":"Asiatisches Wildschaf, Mufflon","convention_language":false,"id":null},{"lang":"Hungarian","names":"Muflon","convention_language":false,"id":null},{"lang":"Icelandic","names":"Múflon","convention_language":false,"id":null},{"lang":"Italian","names":"Muflone, Muflone asiatico","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Muflonas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mufflon","convention_language":false,"id":null},{"lang":"Polish","names":"Muflon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Muflão","convention_language":false,"id":null},{"lang":"Romanian","names":"Muflon","convention_language":false,"id":null},{"lang":"Slovak","names":"Muflón hôrný","convention_language":false,"id":null},{"lang":"Spanish","names":"Muflón argal, Muflón, Argalí, Muflón de Marco Polo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mufflon","convention_language":false,"id":null},{"lang":"Turkish","names":"Yaban koyunu","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Habibi, K. 1977. The mammals of Afghanistan, their distribution and status. Ministry of Agriculture. Kabul.; Naumann, C. and Niethammer, J. 1973. Zur Saügetierfauna des afghanischen Pamir und des Wakhan. Bonner Zoologische Beitrage: 24: 237-248.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"extinct","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Schaller, G. B., Li Hong Talipu, Lu Hua, Ren Junrang, Qiu Mingjiang and Wang Haibin. 1987. Status of large mammals in the Taxkorgan Reserve, Xinjiang, China. Biological Conservation: 42: 53-71.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Namgail, T., Fox, J.L. and Bhatnagar, Y.V. 2009. Status and distribution of the Near Threatened Tibetan argali \u003Ci\u003EOvis ammon hodgsoni\u003C/i\u003E in Ladakh, India: effect of a hunting ban. Oryx: 43: 288-291.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Mallon, D. P. 1985. The mammals of the Mongolian People's Republic. Mammal Review: 15: 71-102.; Reading, R.P., Kenny, D., Amgalanbaatar, S., DeNicola, A. and Wingard, G. 2009. Argali lamb (\u003Ci\u003EOvis ammon\u003C/i\u003E) morphometric measurements and survivorship in Mongolia. Mammalia: 73: 98-104.; Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ovis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11422,"full_name":"Danaus plexippus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Monarch, Milkweed, Wanderer","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Howarth, T.G. 1962. The RHOPALOCERA of Rennell and Bellona Islands. In: Wolff, T. (ed) The Natural History of Rennell Island, British Solomon Islands Danish Science Press. Copenhagen. 4: 63-83.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrlich, P.R. 1983. Summer butterflies in Dinosaur National Monument. Journal of the Lepidopterists' Society: 37: 91-92.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Arthropoda","order_name":"Lepidoptera","class_name":"Insecta","family_name":"Nymphalidae","genus_name":"Danaus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11423,"full_name":"Acipenser ruthenus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Bulgarian","names":"Chiga","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter malý, Jeseter maly","convention_language":false,"id":null},{"lang":"Danish","names":"Sterlet","convention_language":false,"id":null},{"lang":"English","names":"Sterlet Sturgeon, Sterlet","convention_language":true,"id":null},{"lang":"Finnish","names":"Sterletti","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon de Sibérie, Sterlet","convention_language":true,"id":null},{"lang":"German","names":"Sterlett, Sterlet","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kecsege","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sterlett","convention_language":false,"id":null},{"lang":"Polish","names":"Sterlet a. czeczuga","convention_language":false,"id":null},{"lang":"Romanian","names":"Cega, Cigã","convention_language":false,"id":null},{"lang":"Russian","names":"Sterljad, Sterlyad', Sterlyad","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión de Siberia, Esterlete","convention_language":true,"id":null},{"lang":"Swedish","names":"Sterlett","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Gegic, A. P., Kuzmanovic, S.P., Sipos, M.R., Sabo, K., Ferenc, B. and Illes, F. 2006. Physiological state of fishes and changes in fish stock composition in the Tisa River on the stretch Martonos-Becej Gate in the period 2001-2005. Austrian Committee Danube Research/ IAD. Vienna. 159-162; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Freyhof, J. 2002. Freshwater fish diversity in Germany, threats and species extinction. In: Collares-Pereira, M. J., Coelho, M. M. \u0026 Cowx, I. G. Freshwater fish conservation: options for the future,. Blackwell Science Ltd. Oxford.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Repecka, R. 2003. The species composition of the ichthyofauna in the Lithuanian economic zone of the Baltic Sea and the Curonian lagoon and its changes in recent years. Acta Zoologica Lituanica: 13(2): 149-157.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Birstein, V.J. 1993. Sturgeons and paddlefishes: threatened fishes in need of conservation. Conservation Biology: 7: 773-787.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Tsyplakov, E.P. 1978. Migrations and distribution of the sterlet Acipenser ruthenus, in Kuybyshev reservoir. Journal of Ichthyology: 18: 905-912.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Danube population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11424,"full_name":"Thalassarche melanophris","author_year":"(Temminck, 1828)","common_names":[{"lang":"Danish","names":"Sortbrynet Albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Wenkbrauwalbatros","convention_language":false,"id":null},{"lang":"English","names":"Black-browed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à sourcils noire, Albatros à sourcils noirs","convention_language":true,"id":null},{"lang":"German","names":"Schwarzbrauenalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatro sopracciglio","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros ojeroso","convention_language":true,"id":null},{"lang":"Swedish","names":"svartbrynad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea melanophris","author_year":"Temminck, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea melanophris\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11425,"full_name":"Numenius phaeopus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Koliha malá","convention_language":false,"id":null},{"lang":"Danish","names":"Småspove (Lille Regnspove)","convention_language":false,"id":null},{"lang":"Dutch","names":"Regenwulp","convention_language":false,"id":null},{"lang":"English","names":"Whimbrel","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis corlieu","convention_language":true,"id":null},{"lang":"German","names":"Regenbrachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"kis póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik mniejszy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-galego","convention_language":false,"id":null},{"lang":"Russian","names":"Sredny Kronschnep","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito Trinador","convention_language":true,"id":null},{"lang":"Swedish","names":"Småspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax phaeopus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11426,"full_name":"Nanger dama","author_year":"(Pallas, 1766)","common_names":[{"lang":"Danish","names":"Dama gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Damagazelle","convention_language":false,"id":null},{"lang":"English","names":"Addra Gazelle, Dama Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakaulagaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle dama","convention_language":true,"id":null},{"lang":"German","names":"Damagazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazella dama","convention_language":false,"id":null},{"lang":"Swedish","names":"addra, dovhjortsgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct (?)","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Grettenberger, J. F. and Newby, J. E. 1986. The status and ecology of the Dama Gazelle in the Aïr and Ténéré National Nature Reserve, Niger. Biological Conservation: 38: 207-216.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Petrides, G. A. 1965. Advisory report on wildlife and national parks in Nigeria 1962. American Committee for International Wildlife Protection. Special publication .; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"reintroduced,extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct (?)","country_references":"East, R. 1988. Antelopes, global survey and regional action plans. Part 1. East and Northeast Africa. IUCN. Gland.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Setzer, H. W. 1956. Mammals of the Anglo-Egyptian Sudan. Proceedings of the U.S. National Museum: 106: 447-615.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Nanger","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EGazella dama\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11427,"full_name":"Turdus amaurochalinus","author_year":"Cabanis, 1850","common_names":[{"lang":"English","names":"Creamy-bellied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à ventre clair","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11428,"full_name":"Myotis nattereri","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i Nattererit","convention_language":false,"id":null},{"lang":"Croatian","names":"Resasti šišmiš","convention_language":false,"id":null},{"lang":"Danish","names":"Frynseflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Franjestaart","convention_language":false,"id":null},{"lang":"English","names":"Natterer's Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Nattereri lendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Ripsisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin de Natterer","convention_language":true,"id":null},{"lang":"German","names":"Fransenfledermaus","convention_language":false,"id":null},{"lang":"Icelandic","names":"Kögurblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio di Natterer","convention_language":false,"id":null},{"lang":"Norwegian","names":"Børsteflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Nocek Natterera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-franja","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-lui-Natterer","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier riasnatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de Natterer","convention_language":true,"id":null},{"lang":"Swedish","names":"Fransfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.; Gaisler, J. 1984. Bats of northern Algeria and their winter activity. Myotis: 21: 89-95.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Rzebik-Kowalska, B. and Nadachowski, A. 1978. Mammalogical results of 1977 Near East expedition of the Cracow Institute of Systematic and Experimental Zoology. (Abstract). 2nd Congressus Theriol. int. 124, Brno.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Atallah, S. I. 1970. Bats of the genus \u003Ci\u003EMyotis\u003C/i\u003E (Family Vespertilionidae) from Lebanon. Univ. Connecticut Occas. Pap.: 1: 205-212.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11430,"full_name":"Phaethon aethereus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rødnæbbet Tropikfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodsnavelkeerkringvogel","convention_language":false,"id":null},{"lang":"English","names":"Red-billed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à bec rouge","convention_language":true,"id":null},{"lang":"German","names":"Rotschnabel-Tropikvogel","convention_language":false,"id":null},{"lang":"Italian","names":"Fetonte","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabo-de-palha","convention_language":false,"id":null},{"lang":"Spanish","names":"Rabijunco etéreo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Vilina, V. A., González, J. L., Gibbons, J. E., Capella, J. J. and Díaz, H. 1994. The southernmost nesting place for the Red-billed Tropicbird (\u003Ci\u003EPhaethon aethereus\u003C/i\u003E): Chañaral Island, Chile. Colonial Waterbirds: 17: 83-85.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; White, C. M. N. 1965. A revised check list of African non-passerine birds. Govt Printer. Lusaka.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Blamire, S. 2004. Red-billed Tropicbird: new to Britain. British Birds: 97: 218-230.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11431,"full_name":"Stenostira scita","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Fairy Warbler, Fairy Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Mignard enchanteur","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Stenostira","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11432,"full_name":"Phalacrocorax nigrogularis","author_year":"Ogilvie-Grant \u0026 Forbes, 1899","common_names":[{"lang":"Danish","names":"Sokotraskarv","convention_language":false,"id":null},{"lang":"English","names":"Socotra Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran de Socotra","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán de Socotora","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11433,"full_name":"Acrocephalus sorghophilus","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Speckled Reed-Warbler, Streaked Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle sorghophile","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11434,"full_name":"Grus nigricollis","author_year":"Przevalski, 1876","common_names":[{"lang":"Danish","names":"Sorthalset trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarthalskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Tibetan Crane, Black-necked Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Huppukurki","convention_language":false,"id":null},{"lang":"French","names":"Grue à cou noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzhalskranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru dal collo nero","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla cuellinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"svarthalsad trana","convention_language":false,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Clements, F. A. and Bradbear, N. J. 1986. Status of wintering Black-necked Cranes \u003Ci\u003EGrus nigricollis\u003C/i\u003E in Bhutan. Forktail: 2: 103-107.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Robson, C. R. 1986. Recent observations of birds in Xizang and Qinghai provinces, China. Forktail: 2: 67-82.; Scott, D. A. 1994. The Black-necked Cranes \u003Ci\u003EGrus nigricollis\u003C/i\u003E of Puoergi Marshes, Sichuan, China. Bird Conservation International: 3: 245-259.; Wu, H., Zha, K., Zhang, M. and Yang, X. 2009. Nest site selection by Black-necked Crane \u003Ci\u003EGrus nigricollis\u003C/i\u003E in the Ruoergai Wetland, China. Bird Conservation International: 19: 277-286.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11435,"full_name":"Calidris ptilocnemis","author_year":"(Coues, 1873)","common_names":[{"lang":"English","names":"Rock Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau des Aléoutiennes","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos roquero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia ptilocnemis","author_year":"(Coues, 1873)"},{"full_name":"Tringa ptilocnemis","author_year":"Coues, 1873"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11436,"full_name":"Phylloscopus coronatus","author_year":"(Temminck \u0026 Schlegel, 1847)","common_names":[{"lang":"English","names":"Eastern Crowned Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Temminck","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11437,"full_name":"Tringa ochropus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vodouš kropenatý","convention_language":false,"id":null},{"lang":"Danish","names":"Svaleklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Witgatje","convention_language":false,"id":null},{"lang":"English","names":"Green Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Metsäviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier cul-blanc, Chevalier culblanc","convention_language":true,"id":null},{"lang":"German","names":"Waldwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Erdei cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro-piro culbianco, Piro-piro-culbianco","convention_language":false,"id":null},{"lang":"Polish","names":"Samotnik (brodziec samotny), Samotnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pássaro-bique-bique","convention_language":false,"id":null},{"lang":"Spanish","names":"Andarríos Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Skogssnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; McCrie, N. 2000. A sighting of the Green Sandpiper \u003Ci\u003ETringa ochropus\u003C/i\u003E at Darwin, Northern Territory. Australian Bird Watcher: 18: 229-232.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mauersberger, G. 1981. Anmerkungen zur Avifauna Nordkoreas. Mitt. Zool. Mus. Berlin, Suppl Ann. Orn.: 5: 15-62.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11438,"full_name":"Oenanthe isabellina","author_year":"(Temminck, 1829)","common_names":[{"lang":"Danish","names":"Isabellasstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Izabeltapuit, Isabeltapuit","convention_language":false,"id":null},{"lang":"English","names":"Isabelline Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Arotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet isabelle","convention_language":true,"id":null},{"lang":"German","names":"Isabellsteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pusztai hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Culbianco isabellino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-isabel","convention_language":false,"id":null},{"lang":"Russian","names":"Kamenka-plyasunya","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Isabel","convention_language":true,"id":null},{"lang":"Swedish","names":"Isabellastenskvätta, isabellstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Schollaeri, V. and Willem, G. 2001. The status of Isabelline Wheatear \u003Ci\u003EOenanthe isabellina\u003C/i\u003E in Morocco. Bulletin of the African Bird Club: 8: 136-137.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11439,"full_name":"Phylloscopus chloronotus","author_year":"(Gray \u0026 Gray, 1846)","common_names":[{"lang":"English","names":"Lemon-rumped Warbler, Pale-rumped Warbler, Lemon-rumped Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11440,"full_name":"Vicugna vicugna","author_year":"(Molina, 1782)","common_names":[{"lang":"Danish","names":"Vicugna","convention_language":false,"id":null},{"lang":"English","names":"Vicugna, Vicuña","convention_language":true,"id":null},{"lang":"Finnish","names":"Vikunja","convention_language":false,"id":null},{"lang":"French","names":"Vigogne","convention_language":true,"id":null},{"lang":"German","names":"Vicunja","convention_language":false,"id":null},{"lang":"Italian","names":"Vigogna","convention_language":false,"id":null},{"lang":"Spanish","names":"Vicuña","convention_language":true,"id":null},{"lang":"Swedish","names":"vikunja","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mares, M. A., Deja, R. A. and Barquez, R. M. 1989. Guide to the mammals of Salta Province, Argentina. University of Oklahoma Press.; Mares, M. A., Ojeda, R. A. and Kosco, M. P. 1981. Observations on the distribution and ecology of the mammals of Salta Province, Argentina. Annals of the Carnegie Museum: 50: 151-206.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cattan, P. E. and Glade, A. A. 1989. Management of the Vicuña \u003Ci\u003EVicugna vicugna\u003C/i\u003E in Chile: use of matrix model to assess harvest rates. Biological Conservation: 49: 131-140.; Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"reintroduced","country_references":"FAO. 2005. Situación actual de los camélidos sudamericanos en el Ecuador. http://www.rlc.fao.org/es/ganaderia/pdf/2914ecu.pdf FAO. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Camelidae","genus_name":"Vicugna","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Except Peruvian populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11441,"full_name":"Geronticus eremita","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Eremit Ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Kaalkopibis, Heremietibis","convention_language":false,"id":null},{"lang":"English","names":"Hermit Ibis, Bald Ibis, Waldrapp, Northern Bald Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Töyhtöiibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis chauve","convention_language":true,"id":null},{"lang":"German","names":"Waldrapp","convention_language":false,"id":null},{"lang":"Italian","names":"Ibis dal ciuffo","convention_language":false,"id":null},{"lang":"Spanish","names":"Ibis eremita","convention_language":true,"id":null},{"lang":"Swedish","names":"eremitibis","convention_language":false,"id":null},{"lang":"Turkish","names":"kelaynak","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"reintroduced","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Kyllingstad, H. C. 1986. A record of Bald Ibis from the Sinai Mountains. Ornithological Society of the Middle East Bulletin: 17: 1-2.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"Desfayes, M. 1987. Evidence for the ancient presence of the Bald Ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E in Greece. Bulletin of the British Ornithologists' Club: 107: 93-94.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Anon. 1992. Morocco last hope. World Birdwatch: 14: 4.; Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pegoraro, K. and Malin, G. 1990. Freilandbeobachtungen am Waldrapp (\u003Ci\u003EGeronticus eremita\u003C/i\u003E) in Marokko: Verhalten immaturer Individuen. Journal für Ornithologie: 131: 453-456.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.; Serra, G., Abdallah, M., Assaed, A., Abdallah, A., Al Qaim, G., Fayad, T. and Williamson, D. 2004. Discovery of a relict breeding colony of northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E in Syria. Oryx: 38: 106-108.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"reintroduced","country_references":"Akcakaya, H. R. 1990. Bald Ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E population in Turkey: an evaluation of the captive breeding project for reintroduction. Biological Conservation: 51: 225-237.; Akcakaya, H. R. and Akcakaya, R. 1986. Concern for Turkey's last Bald Ibises. WWF Monthly Reports September 1986: 243-245.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Bezzel, E. and Wartmann, B. 1990. Neue Beobachtungen des Waldrapps (\u003Ci\u003EGeronticus eremita\u003C/i\u003E) in Jemen. Journal für Ornithologie: 131: 456-457.; Brooks, D. J., Evans, M. I., Martins, R. P. and Porter, R. F. 1987. The status of birds in North Yemen and the records of the OSME Expedition in autumn 1985. Sandgrouse: 9: 4-66.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Geronticus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11442,"full_name":"Phoenicurus moussieri","author_year":"(Olphe-Galliard, 1852)","common_names":[{"lang":"Danish","names":"Moussiers Rødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Diadeemroodstaart","convention_language":false,"id":null},{"lang":"English","names":"Moussier's Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue de Moussier","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Salewski, V., Altwegg, R., Liechti, F. and Peter, D. 2003. New records of Moussier`s Redstart \u003Ci\u003EPhoenicurus moussieri\u003C/i\u003E and Lesser Striped Swallow \u003Ci\u003EHirundo abyssinica\u003C/i\u003E from Mauritania. Malimbus: 25: 103-104","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11443,"full_name":"Gallinago media","author_year":"(Latham, 1787)","common_names":[{"lang":"Danish","names":"Tredækker, Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Poelsnip","convention_language":false,"id":null},{"lang":"English","names":"Great Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Heinäkurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine double","convention_language":true,"id":null},{"lang":"German","names":"Doppelschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Croccolone","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Polish","names":"Dubelt","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Dubbelbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct (?),extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella media","author_year":"(Latham, 1787)"},{"full_name":"Scolopax media","author_year":"Latham, 1787"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11444,"full_name":"Acrocephalus palustris","author_year":"(Bechstein, 1798)","common_names":[{"lang":"Danish","names":"Kærsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Marsh Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle verderolle","convention_language":true,"id":null},{"lang":"German","names":"Sumpfrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola verdognola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-palustre","convention_language":false,"id":null},{"lang":"Russian","names":"Bolotnaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Políglota","convention_language":true,"id":null},{"lang":"Swedish","names":"Kärrsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Ottoson, U., Bengtsson, D., Gustafsson, R., Hall, P., Hjort, C., Leventis, A. P., Neumann, R., Pettersson, J., Rhönnstad, P., Rumsey, S. et al. 2002. New birds for Nigeria observed during the Lake Chad Bird Migration Project. Bulletin of the African Bird Club: 9: 52-55.; Ottosson, U., Hjort, C. and Hall, P. 2001. The Lake Chad Bird Migration Project: Malamfatori revisited. Bulletin of the African Bird Club: 8: 121-126.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11445,"full_name":"Fratercula arctica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Papuchalk ploskozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Lunde","convention_language":false,"id":null},{"lang":"Dutch","names":"Papegaaiduiker","convention_language":false,"id":null},{"lang":"English","names":"Atlantic Puffin, Puffin","convention_language":true,"id":null},{"lang":"Finnish","names":"Lunni","convention_language":false,"id":null},{"lang":"French","names":"Macareux moine","convention_language":true,"id":null},{"lang":"German","names":"Papageitaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Lunda","convention_language":false,"id":null},{"lang":"Italian","names":"Pulcinella di mare","convention_language":false,"id":null},{"lang":"Norwegian","names":"Lunde","convention_language":false,"id":null},{"lang":"Polish","names":"Maskonur","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papagaio-do-mar","convention_language":false,"id":null},{"lang":"Russian","names":"Tupik","convention_language":false,"id":null},{"lang":"Spanish","names":"Frailecillo Atlántico, Frailecillo Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Lunnefågel","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Fratercula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca arctica","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11446,"full_name":"Tringa brevipes","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"Grey-tailed Tattler","convention_language":true,"id":null},{"lang":"French","names":"Chevalier de Sibérie","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero Siberiano","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Heteroscelus brevipes","author_year":"(Vieillot, 1816)"},{"full_name":"Totanus brevipes","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11448,"full_name":"Thalassarche bulleri","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Buller's Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros de Buller","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de Buller","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea bulleri","author_year":"Rothschild, 1893"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea bulleri\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11449,"full_name":"Sylvia atricapilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Munk","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Blackcap, Eurasian blackcap","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapääkerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette à tête noire","convention_language":true,"id":null},{"lang":"German","names":"Mönchsgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barátposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Capinera","convention_language":false,"id":null},{"lang":"Polish","names":"Kapturka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-de-barrete-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Slavka-chernogolovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Capirotada","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1998. Blackcap \u003Ci\u003ESylvia atricapilla\u003C/i\u003E, new to Benin. Malimbus: 20: 57-58.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hald-Mortensen, P. 1971. A collection of birds from Liberia and Guinea (Aves). Steenstrupia: 1: 115-125.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Melo, M., Covas, R. and Dijkstra, K.-D. 2006. First records of Blackcap \u003Ci\u003ESylvia atricapilla\u003C/i\u003E for Mozambique. Bulletin of the African Bird Club: 13: 80-81.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Searle, R. 2001. European Blackcap at Lake Chivero. Honeyguide: 47: 190.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11450,"full_name":"Phylloscopus ricketti","author_year":"(Slater, 1897)","common_names":[{"lang":"English","names":"Sulphur-breasted Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Rickett","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11451,"full_name":"Trichechus manatus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Caribbean Manatee, North American Manatee, West Indian Manatee, American Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin des Antilles, Lamantin des Caraïbes, Lamantin d'Amérique du nord","convention_language":true,"id":null},{"lang":"Spanish","names":"Manatí norteamericano, Lamantino norteamericano","convention_language":true,"id":null},{"lang":"Swedish","names":"floridamanat, västindisk manat, lamantin, amerikansk manat","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"extinct","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Montoya-Ospina, R. A., Caicedo-Herrera, D., Millán-Sánchez, S. L., Mignucci-Giannoni, A. A. and Lefebvre, L. W. 2001. Status and distribution of the West Indian manatee, \u003Ci\u003ETrichechus manatus manatus\u003C/i\u003E, in Colombia. Biological Conservation: 102: 117-129.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Alvarez-Alemán, A., Beck, C.A. and Powell, J.A. 2010. First report of a Florida Manatee (\u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E) in Cuba. Aquatic Mammals: 36: 148-153.; Estrada, A. R. and Ferrer, L. T. 1987. Distribucion del manati antillano, \u003Ci\u003ETrichechus manatus\u003C/i\u003E (Mammalia:Sirenia), en Cuba. 1. Region occidental. Poeyana: 354: 1-12.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Quintana Rizzo, E. 1994. Estimate of the distribution and population of the Manatee \u003Ci\u003ETrichechus manatus\u003C/i\u003E (Trichechidae - Sirenia) in Guatemala. Sirenews: 21: 14.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Rathbun, G. B., Powell, J. A. and Cruz, G. 1983. Status of the West Indian Manatee in Honduras. Biological Conservation: 26: 301-308.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Campbell, H. W. and Gicca, D. F. 1978. Reseña preliminar del estado actual y distribucion del manati (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) en México. Ann. Inst. Biol. Univ. Autonoma México: 49: 257-264.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Villa, B. R. and Colomero, L. C. 1982. Distribucion y presencia del manati o talcamichin (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) en México. Ann. Inst. Biol. Univ. Autonoma México: 51: 703-708.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Jiménez, I. 2002. Heavy poaching in prime habitat: the conservation status of the West Indian manatee in Nicaragua. Oryx: 36: 272-278.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Schad, R. C., Montgomery, G. and Chancellor, D. 1981. La distribucion y frecuencia del manati, en el lago Gatun, en el Canal de Panama. ConCiencia: 8: 1-4.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Powell, J. A., Belitsky, D. W. and Rathbun, G. B. 1981. Status of the West Indian Manatee (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) in Puerto Rico. Journal of Mammalogy: 62: 642-646.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Husson, A. M. 1978. The mammals of Surinam. E. J. Brill. Leiden.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Alkins, M. E. 1979. The mammals of Trinidad. Occasional Paper, Department of Zoology, University of the West Indies St. Augustine, Trinidad: 2.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Alvarez-Alemán, A., Beck, C.A. and Powell, J.A. 2010. First report of a Florida Manatee (\u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E) in Cuba. Aquatic Mammals: 36: 148-153.; Gannon, J.G., Scolardi, K.M., Reynolds III, J.E., Koelsch, J.K. and Kessenich, T. J. 2007. Habitat selection by manatees in Sarasota Bay, Florida. Marine Mammal Science: 23: 133-143.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hartman, D. S. 1974. Distribution, status and conservation of the manatee in the United States. US Fish and Wildlife Service National Fish Wildlife Lab. Contract Report. 14-16: 1-246 . ; Kinnaird, M. F. 1985. Aerial census of manatees in northeastern Florida. Biological Conservation: 32: 59-79.; Scolardi, K.M., Schwacke, L.H., Koelsch, J.K., Reynolds III, J.E., Kessenich, T.J., Sprinkel, J.M. and Gannon, J.G. 2009. Trends in counts of manatees \u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E from 1987 to 2006 in waters of Sarasota County, Florida, USA. Endangered Species Research: 9: 1-11.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Correa-Viana, M. 1986. [Distribution and status of the West Indian Manatee in Venezuela]. Serv. Nac. Fauna Silvestre . Venezuela.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"extinct","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Populations between Honduras and Panama","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Populations between Honduras and Panama","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11452,"full_name":"Phalacrocorax capensis","author_year":"(Sparrman, 1789)","common_names":[{"lang":"English","names":"Cape Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran du Cap","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus capensis","author_year":"Sparrman, 1788"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11453,"full_name":"Gorilla beringei","author_year":"Matschie, 1903","common_names":[{"lang":"English","names":"Mountain Gorilla, Eastern Gorilla","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Aveling, C. and Harcourt, A. H. 1984. A census of the Virunga Gorillas. Oryx: 18: 8-13.; Emlen, J. T. and Schaller, G. B. 1960. Distribution and status of the Mountain Gorilla \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E (1959). Zoologica: 45: 41-52.; Ghiglieri, M. D. 1984. Realm of the Mountain Gorillas. Swara: 7: 24-27.; Harcourt, A. H. and Fossey, D. 1981. The Virunga Gorillas: decline of an 'island' population. African Journal of Ecology: 19: 83-97.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Emlen, J. T. and Schaller, G. B. 1960. Distribution and status of the Mountain Gorilla \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E (1959). Zoologica: 45: 41-52.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Weber, B. 1979. Gorilla problems in Rwanda. Swara: 2: 29-32.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Harcourt, A. H. 1981. Can Uganda's Gorillas survive? A survey of the Bwindi Forest Reserve. Biological Conservation: 19: 269-282.; McNeilage, A., Plumptre, A. J., Brock-Doyle, A. and Vedder, A. 2001. Bwindi Impenetrable National Park, Uganda: gorilla census 1997. Oryx: 35: 39-47.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Gorilla","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGorilla gorilla\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Gorilla Agreement"}]},{"id":11455,"full_name":"Ardea purpurea","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Purpurhejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Purperreiger","convention_language":false,"id":null},{"lang":"English","names":"Purple Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruskohaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron pourpré, Héron pourpre","convention_language":true,"id":null},{"lang":"German","names":"Purpurreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörös gém","convention_language":false,"id":null},{"lang":"Italian","names":"Airone rosso","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla purpurowa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-vermelha","convention_language":false,"id":null},{"lang":"Spanish","names":"Garza imperial","convention_language":true,"id":null},{"lang":"Swedish","names":"Purpurhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. 1999. West Indies region. North American Birds: 53: 214-215.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea bournei","author_year":"de Naurois, 1966"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11456,"full_name":"Mergus merganser","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stor Skallesluger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Zaagbek","convention_language":false,"id":null},{"lang":"English","names":"Common Merganser, Goosander","convention_language":true,"id":null},{"lang":"Finnish","names":"Isokoskelo","convention_language":false,"id":null},{"lang":"French","names":"Harle bièvre, Grand Harle","convention_language":true,"id":null},{"lang":"German","names":"Gänsesäger, Gänseäger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy bukó","convention_language":false,"id":null},{"lang":"Italian","names":"Smergo maggiore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merganso-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Storskrake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11457,"full_name":"Equus grevyi","author_year":"Oustalet, 1882","common_names":[{"lang":"Danish","names":"Grevys zebra","convention_language":false,"id":null},{"lang":"Dutch","names":"Grevy-zebra","convention_language":false,"id":null},{"lang":"English","names":"Grevy's Zebra","convention_language":true,"id":null},{"lang":"Finnish","names":"Kuningasseepra","convention_language":false,"id":null},{"lang":"French","names":"Zèbre de Grévy","convention_language":true,"id":null},{"lang":"German","names":"Grevyzebra","convention_language":false,"id":null},{"lang":"Italian","names":"Zebra di Grevy","convention_language":false,"id":null},{"lang":"Spanish","names":"Cebra de Grévy","convention_language":true,"id":null},{"lang":"Swahili","names":"Kangaja","convention_language":false,"id":null},{"lang":"Swedish","names":"grevyzebra, kungssebra, kungszebra, grevysebra","convention_language":false,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Dirschl, H. J. and Wetmore, S. P. 1978. Grévy's Zebra. Abundance and distribution in Kenya 1977. Kenya Rangeland Ecological Monitoring Unit, Nairobi. Aerial Survey Technical Report Series No. 4. ; Rubenstein, D.I. et al. (comp.) 2002. Earthwatch Institute Field Report. Earthwatch Institute. Oxford, United Kingdom. ","id":null},{"name":"Somalia","country":"Somalia","tags_list":"extinct","country_references":"Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Moehlman, P.D. 2002. Equids: zebras, asses and horses. Status survey and conservation action plan. IUCN. Switzerland and Cambridge, UK.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11459,"full_name":"Egretta eulophotes","author_year":"(Swinhoe, 1860)","common_names":[{"lang":"English","names":"Chinese Egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette de Chine","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta China","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Litvinenko, N. M. and Shibaev, Y. V. 2000. Importance of Furugelm Island in the Sea of Japan for wetland birds: the first record of a breeding colony of the Chinese egret \u003Ci\u003EEgretta eulophotes\u003C/i\u003E. Oryx: 34: 335-337.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Herodias eulophotes","author_year":"Swinhoe, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11460,"full_name":"Myotis emarginatus","author_year":"(É. Geoffroy, 1806)","common_names":[{"lang":"Czech","names":"Netopýr brvitý","convention_language":false,"id":null},{"lang":"Danish","names":"Geoffroys flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Ingekorven vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Geoffroy's Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Käharlendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Ruskosiippa","convention_language":false,"id":null},{"lang":"French","names":"Vespertilion à oreilles échancrées, Murin à oreilles échancrées","convention_language":true,"id":null},{"lang":"German","names":"Wimperfledermaus","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio smarginato","convention_language":false,"id":null},{"lang":"Norwegian","names":"Geoffroyflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"nocek orzesiony","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-lanudo","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier brvitý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejirroto, Murciélago de Geoffroy","convention_language":true,"id":null},{"lang":"Swedish","names":"Geoffroys fladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Kirpikli yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Verheggen, L. 2001. Nieuwe kolonie ingekorven vleermuis. Zoogdier: 12: 32.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Gaucher, P. 1995. First record of Geoffroy's Bat \u003Ci\u003EMyotis emarginatus\u003C/i\u003E Geoffroy, 1806 (Mammalia: Chiroptera: Vespertilionidae) in Saudi Arabia. Mammalia: 59: 149-151.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2003. First record of \u003Ci\u003EMyotis emarginatus\u003C/i\u003E (E. Geoffroy 1806) for the Republic of Yemen (Mammalia, Chiroptera, Vespertilionidae). Senckenbergiana biologica: 82: 243-246.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11461,"full_name":"Thalasseus maximus","author_year":"Boddaert, 1783","common_names":[{"lang":"Dutch","names":"Koningsstern","convention_language":false,"id":null},{"lang":"English","names":"Royal Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne royale","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán real","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Naurois, R. de. 1966. Colonies reproductrices de Spatules africaines, Ibis sacré et Laridés dans l'archipel des Bijagos (Guinée portugaise). Alauda: 34: 257-278.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.; Seutin, G., Bermingham, E. and Thorn, S. 1997. The avifauna of the Cayos Cochinos, with new breeding records for Honduras. Orn. Neotropical: 8: 101-106.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna maxima","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna maxima albididorsalis\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11462,"full_name":"Plegadis falcinellus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Sort ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ibis","convention_language":false,"id":null},{"lang":"English","names":"Glossy Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Pronssi-ibis, Pronssi-iibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis falcinelle","convention_language":true,"id":null},{"lang":"German","names":"Braunsichler, Sichler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Batla","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattaio","convention_language":false,"id":null},{"lang":"Polish","names":"Ibis Kasztanowaty","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Morito, Morito Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Bronsibis","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Hoareau, C. and Skerrett, A. 2006. Glossy Ibis \u003Ci\u003EPlegadis falcinellus\u003C/i\u003E: the first records for Seychelles. Bulletin of the African Bird Club: 12: 44, 46.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nabhitabhata, J. and Round, P. D. 1994. The first record of Glossy Ibis (\u003Ci\u003EPlegadis falcinellus\u003C/i\u003E) for Thailand. Natural History Bulletin of the Siam Society: 42: 292-293.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Plegadis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tantalus falcinellus","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11465,"full_name":"Charadrius forbesi","author_year":"(Shelley, 1883)","common_names":[{"lang":"English","names":"Forbes's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Forbes","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo de Forbes","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Berlioz, J. 1931. Notes sur quelques oiseaux de la Guinée française. Bulletin du Muséum National d'Histoire Naturelle: 3: 298-301.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Colebrook-Robjent, J. F. R. and Griffith, J. E. 1996. Forbes's Plover \u003Ci\u003ECharadrius forbesi\u003C/i\u003E breeding in Central Africa. Bulletin of the British Ornithologists' Club: 116: 244-246.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Aegialitis forbesi","author_year":"Shelley, 1883"},{"full_name":"Charadrius tricollaris forbesi","author_year":"Vieillot, 1818"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11466,"full_name":"Podiceps cristatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Toppet Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Fuut","convention_language":false,"id":null},{"lang":"English","names":"Great Crested Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Silkkiuikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe huppé","convention_language":true,"id":null},{"lang":"German","names":"Haubentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Búbos vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso magiore, Svasso maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz dwuczuby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-crista","convention_language":false,"id":null},{"lang":"Russian","names":"Chomga","convention_language":false,"id":null},{"lang":"Spanish","names":"Somormujo Lavanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Skäggdopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus cristatus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11467,"full_name":"Larus audouinii","author_year":"Payraudeau, 1826","common_names":[{"lang":"Danish","names":"Audouinsmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Audouins Meeuw","convention_language":false,"id":null},{"lang":"English","names":"Audouin's Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Välimerenlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland d'Audouin","convention_language":true,"id":null},{"lang":"German","names":"Korallenmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Korallsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano corso","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa sródziemnomorska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz de Audouin","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota de Audouin","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödnäbbad trut, Rödnäbbad mås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1998. First addition to the list of birds in Bulgaria. Riv. ital. Orn.: 68: 183-187.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Bengtsson, K. 1995. More observations of Audouin's Gulls \u003Ci\u003ELarus audouinii\u003C/i\u003E in Senegal. Malimbus: 17: 102.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11468,"full_name":"Mesoplodon densirostris","author_year":"(de Blainville, 1817)","common_names":[{"lang":"Dutch","names":"blainville's spitssnuitdolfijn","convention_language":false,"id":null},{"lang":"English","names":"Blainville's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Blainville","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Blainville","convention_language":true,"id":null},{"lang":"Swedish","names":"Blainvilles näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Pastene, L. A., Numachi, K., Jofre, M., Acevedo, M. and Joyce, G. 1990. First record of the Blainville's beaked whale, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E Blainville, 1817 (Cetacea, Ziphiidae) in the eastern South Pacific. Marine Mammal Science: 6: 82-84.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Kaiya, Z., Leatherwood, S. and Jefferson, T.A. 1995. Records of small cetaceans in Chinese waters: a review. \u003Ci\u003EAsian Marine Biology\u003C/i\u003E: 12: 119–139.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. 2000. Distribution of cetaceans off the Society Islands (French Polynesia) as obtained from dedicated surveys. \u003Ci\u003EAquatic Mammals\u003C/i\u003E: 26(2): 111–126.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Michel, C. and van Bree, J. H. 1976. On two strandings of the beaked whale \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E (de Blainville, 1817) on Mauritius. Zeitschrift Säugetierkundliche: 41: 194-196.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Borsa, P. and Robineau, D. 2005. Blainville's Beaked Whale in New Caledonia. Pacific Science: 59: 467-472.; Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1999. New records of beaked whales, genus \u003Ci\u003EMesoplodon\u003C/i\u003E, from New Zealand (Cetacea: Ziphiidae). Journal of the Royal Society of New Zealand: 29: 235-244.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"Reiner, F. 1979. Nota sobre um raro ziphioid, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E Blainville, 1817, nas costas de Portugal. \u003Ci\u003EMuseo Marinos Cascais, Memorios serie Zoologie,\u003C/i\u003E: 1: 1–12.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Grau, E., Filella, S., Raga, J. A. and Raduan, A. 1988. Cetaceos varados en las costas del Mediterraneo iberico, durante los anos 1980-1981. Misc. Zool.: 10: 353-358.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Yang, W., Chou, L., Jepson, P.D., Brownell, R.L., Cowan, D., Chang, P., Chiou, H., Yao, C., Yamada, T.K., Chiu, J. et al. 2008. Unusual cetacean mortality event in Taiwan, possibly linked to naval activities. \u003Ci\u003EVeterinary Record\u003C/i\u003E: 162: 184–186.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Herman, J. S., Kitchener, A. C., Baker, J. R. and Lockyer, C. 1995. The most northerly record of Blainville's Beaked Whale, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E, from the eastern Atlantic. Mammalia: 58: 657-661.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11469,"full_name":"Acipenser sinensis","author_year":"Gray, 1835","common_names":[{"lang":"English","names":"Chinese Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiinansampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon chinois","convention_language":true,"id":null},{"lang":"Japanese","names":"Kara-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr chinski","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk stör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"extinct (?)","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11470,"full_name":"Sternula saundersi","author_year":"Hume, 1877","common_names":[{"lang":"English","names":"Saunders's Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna albifrons saundersi","author_year":"Pallas, 1764"},{"full_name":"Sterna saundersi","author_year":"Hume, 1877"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna saundersi\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11471,"full_name":"Myotis brandtii","author_year":"(Eversmann, 1845)","common_names":[{"lang":"English","names":"Brandt's Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"Brandts fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Tupinier, Y. and Aellen, V. 1978. Présence de \u003Ci\u003EMyotis brandti\u003C/i\u003E (Eversmann, 1845) (Chiroptera) en France et en Suisse. Rev. suisse Zool.: 85: 449-456.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Vernier, E. 1994. Prima segnalazione del vespertilio di Brandt, \u003Ci\u003EMyotis brandti\u003C/i\u003E (Eversmann, 1845) per l'Italia. Atti della Societa Italiana di Scienze Naturali e del Museo Civico di Storia Naturale di Milano: 133: 185-188.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Harbusch, C., Kiefer, A. and Engel, E. 1992. Die Verbreitung von Fledermausen (Mammalia, Chiroptera) im Sudwesten Luxemburgs. Bulletin de la Societe des Naturalistes Luxembourgeois: 93: 169-172.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Jansen, R. and Spoelstra, K. 2001. Zeldzame vleermuizen terug in Nederland? Zoogdier: 12: 28-29.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Murariu, D. and Radulet, N. 1998. Mammalian fauna (Mammalia) from Maramures Depression, Romania. Travaux du Muséum National d'Histoire Naturelle \"Grigore Antipa\": 41: 609-621.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. and Cerveny, J. 1997. New and noteworthy records of bats in Slovenia. Myotis: 35: 89-93.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Albayrak, I. 1991. Studies on \u003Ci\u003EMyotis mystacinus\u003C/i\u003E and \u003Ci\u003EMyotis brandti\u003C/i\u003E (Mammalia: Chiroptera) in Turkey. Mammalia: 55: 113-120.; Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Pokynchereda, V. F. 1999. [\u003Ci\u003EMyotis brandti\u003C/i\u003E (Chiroptera), a new record in Ukrainian fauna.]. Vestnik Zoologii: 33: 86.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis brandti","author_year":"(Eversmann, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11474,"full_name":"Anser indicus","author_year":"(Latham, 1790)","common_names":[{"lang":"Danish","names":"Indisk Gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Indische gans","convention_language":false,"id":null},{"lang":"English","names":"Bar-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie à tête barrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar Indio","convention_language":true,"id":null},{"lang":"Swedish","names":"stripgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lahrman, F. W. 1994. A Bar-headed Goose seen in Regina---a possible first for North America. Blue Jay : 52: 137-140.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas indica","author_year":"Latham, 1790"},{"full_name":"Eulabeia indica","author_year":"(Latham, 1790)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11475,"full_name":"Monachus monachus","author_year":"(Hermann, 1779)","common_names":[{"lang":"Albanian","names":"Foka e Mesdheut","convention_language":false,"id":null},{"lang":"Croatian","names":"Sredozemna medvjedica","convention_language":false,"id":null},{"lang":"Danish","names":"Munkesæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Monniksrob","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Monk Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Munkhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Munkkihylje","convention_language":false,"id":null},{"lang":"French","names":"Phoque-moine méditerranéen, Phoque-moine","convention_language":true,"id":null},{"lang":"German","names":"Mönchsrobbe, Mittelmeer Mönchsrobbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mediterrán barátfóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Munkaselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca monaca","convention_language":false,"id":null},{"lang":"Maltese","names":"Monka, Bumerin","convention_language":false,"id":null},{"lang":"Norwegian","names":"Middelhavsmunkesel","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca Monge, Foca-monge, Lobo-marinho","convention_language":false,"id":null},{"lang":"Romanian","names":"Foca-episcop","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca monje, Foca monje del Mediterráneo","convention_language":true,"id":null},{"lang":"Swedish","names":"havsmunk, munksäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Akdeniz foku","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"extinct (?)","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct (?)","country_references":"Berkes, F., Anat, H., Kislalioglu, M. and Esenel, M. 1979. Distribution and ecology of \u003Ci\u003EMonachus monachus\u003C/i\u003E on Turkish coasts. In: Ronald, R. and Duguy, R. (eds) The Mediterranean Monk Seal. Pergamon Press. Oxford.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"extinct","country_references":"Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifères sauvages de France. Ministère de L'Environment, Société Française pour l'Etude et la Protection des Mammifères. Paris.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Panos, A., Jacobs, J. and Panos, D. 1993. The endangered Mediterranean Monk Seal \u003Ci\u003EMonachus monachus\u003C/i\u003E in the Ionian sea, Greece. Biological Conservation: 64: 129-140.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Lewis, R. E., Lewis, J. H. and Atallah, S. I. 1968. A review of Lebanese mammals, Carnivora, Pinnipedia, Hyracoidea and Artiodactyla. Journal of Zoology, London: 154: 517-531.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct (?)","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"extinct","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"Kinzelbach, R. and Boessheck, J. 1992. A record of the Monk Seal \u003Ci\u003EMonachus monachus\u003C/i\u003E on the island of Sal (Cape Verde Islands). International Journal of Mammalian Biology: 57: 58-59.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct (?)","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Turan, N. 1984. Türkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct (?)","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Monachus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Monk Seal in the Atlantic"}]},{"id":11476,"full_name":"Stenella attenuata","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Bridled Dolphin, Pantropical Spotted Dolphin, Narrow-snouted Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin tacheté pantropical","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín manchado, Delfín pintado","convention_language":true,"id":null},{"lang":"Swedish","names":"tygeldelfin, betseldelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adicinoes a l lista sistemática de cetaceos de Uruguay, 1. Resúmenes Jorn. Cienc. nat. Montevideo: 1: 136-137.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Southeast Asia populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11477,"full_name":"Tarsiger cyanurus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Modruška lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Blåstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwstaart","convention_language":false,"id":null},{"lang":"English","names":"Orange-flanked Bush-Robin, Red-flanked Bluetail","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinipyrstö","convention_language":false,"id":null},{"lang":"French","names":"Rossignol á flancs roux, Rossignol à flancs roux","convention_language":true,"id":null},{"lang":"German","names":"Blauschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kékfarkú","convention_language":false,"id":null},{"lang":"Italian","names":"Codazzurro","convention_language":false,"id":null},{"lang":"Polish","names":"Modraczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-rabiazul","convention_language":false,"id":null},{"lang":"Russian","names":"Sinekhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Coliazul","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Smith, J. P. and the Israeli Rarities Committee. 2001. Bulletin 1: 02 on Rare Birds in Israel (1995 - 2001). The Israel Rarities and Distribution Committee Bulletin 1: 02.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus cyanurus","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11479,"full_name":"Physeter macrocephalus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Cachalot, Pot Whale, Spermacet Whale, Cachelot, Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot","convention_language":true,"id":null},{"lang":"Portuguese","names":"Cachalote","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena esperma, Cachalote","convention_language":true,"id":null},{"lang":"Swedish","names":"kaskelot","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Amon Kothias, J.-B. and N'Goran, N. Y. 1991. Note sur les baleines echouées en estuaires artificiels en Côte d'Ivoire. Journal Ivoirien d'Oceanologie et de Limnologie: 1: 153-155.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. 2009. Comparison of odontocete populations of the Marquesas and Society Islands (French Polynesia). \u003Ci\u003EJournal of the Marine Biological Association of the United Kingdom\u003C/i\u003E: 89(5): 931–941.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Boye, P. and Plaisier, F. 1989. Die Säugetiere der Nordseeinsel Langeoog. Drosera: 1989: 69-78.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"De Stephanis, R., Cornulier, T., Verborgh, P., Salazar Sierra, J., Gimeno, N. and Guinet, C. 2008. Summer spatial distribution of cetaceans in the Strait of Gibraltar in relation to the oceanographic context. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 353: 275–288.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Steiner, L., Lamoni, L., Acosta Plata, M., Jensen, S.-K., Lettevalla, E. and Gordon, J. 2012. A link between male sperm whales, \u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E, of the Azores and Norway. \u003Ci\u003EJournal of the Marine Biological Association of the United Kingdom\u003C/i\u003E: 92 (Special Issue 8): 1751–1756.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Mustika, P.L.K., Hutasoit, P., Madusari, C.C., Purnomo, F.S., Setiawan, A., Tjandra, K. and Prabowo, W.E. 2009. Whale strandings in Indonesia, including the first record of a humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) in the archipelago. \u003Ci\u003EThe Raffles Bulletin of Zoology\u003C/i\u003E: 57(7): 199–206.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Biological and distribution new data on the sperm whale, \u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E L. in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 183-184.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Ponnampalam, L.S. 2012. Opportunistic observations on the distribution of cetaceans in the Malaysian south China, Sulu and Sulawesi seas and an updated checklist of marine mammals in Malaysia. \u003Ci\u003EThe Raffles Bulletin of Zoology\u003C/i\u003E: 60(1): 221–231.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Patton, D. 1979. Sperm Whale stranding in Baja California. Terra, Los Angeles: 17: 28-29.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"De Stephanis, R., Cornulier, T., Verborgh, P., Salazar Sierra, J., Gimeno, N. and Guinet, C. 2008. Summer spatial distribution of cetaceans in the Strait of Gibraltar in relation to the oceanographic context. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 353: 275–288.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Buijs, D. and Dudok van Heel, W. H. 1979. Bodyplan of a male Sperm Whale (\u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E) stranded near Breskens, Netherlands. Aquatic Mammals: 7: 27-32.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Childerhouse, S.J., Dawson, S.M. and Slooten, E. 1995. Abundance and seasonal residence of sperm whales at Kaikoura, New Zealand. \u003Ci\u003ECanadian Journal of Zoology\u003C/i\u003E: 73(4): 723–731.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Haug, T. and Gulliksen, B. 1981. [Remarks concerning a sperm whale stranding in north Norway in December 1980.]. Fauna (Oslo): 34: 68-76.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Pinela, A.M., Quérouil, S., Magalhães, S., Silva, M.A., Prieto, R., Matos, J.A. and Santos, R.S. 2009. Population genetics and social organization of the sperm whale (\u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E) in the Azores inferred by microsatellite analyses. \u003Ci\u003ECanadian Journal of Zoology\u003C/i\u003E: 87(9): 802–813.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci Giannoni, A. A. 1989. A stranded sperm whale, \u003Ci\u003EPhyseter catodon\u003C/i\u003E, at Cayo Santiago, Puerto Rico. Journal of the Veterinary Faculty of the University of Tehran: 24: 213-215.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Baldwin, R. 1998. A note on sightings of sperm whales off the coasts of the Sultanate of Oman and the United Arab Emirates, October 1994 to October 1997. Paper SC/50/CAWS22 presented to the IWC Scientific Committee, April 1998 (unpublished). 8","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Physeter","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11480,"full_name":"Ardeola ralloides","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Czech","names":"Volavka vlasatá","convention_language":false,"id":null},{"lang":"Danish","names":"Tophejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Ralreiger","convention_language":false,"id":null},{"lang":"English","names":"Squacco Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Rääkkähaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron crabier, Crabier chevelu","convention_language":true,"id":null},{"lang":"German","names":"Rallenreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Üstökösgém","convention_language":false,"id":null},{"lang":"Italian","names":"Sgarza ciuffetto","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla modronosa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-ratos","convention_language":false,"id":null},{"lang":"Russian","names":"Zholtaya Tsaplya","convention_language":false,"id":null},{"lang":"Spanish","names":"Garcilla cangrejera","convention_language":true,"id":null},{"lang":"Swedish","names":"Rallhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ross, J. P. 1996. Proceedings of the 13th Working Meeting of the CSG. IUCN. Gland, Switzerland. 499-504","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Bergmans, W. 1999. Conservation status of African fruit bats (Mammalia, Megachiroptera). In H. de Iongh \u0026 H. Prins (eds.) International Seminar on Species Conservation - The IUCN Red List categories discussed. Nederlandse Commissie voor Internationale Natuurbescherming. Leiden.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hillman, J. C. 1992. The mammals of Eritrea. Records from the \"Catalogue of the Mammals of Ethiopia\". Wildlife Conservation Society. Bronx, New York. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Telnov, D. et al. 1999. Check-list of the Latvian beetles (Insecta: Coleoptera). Mitt. Internat. Entomol. Ver., Suppl,.: 5: 1-141.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Lockyear, J. 1999. Proposal to change the IUCN Red Listing of Hippocampus capensis. Boulenger, 1900. (Knysna). ; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ralloides","author_year":"Scopoli, 1769"},{"full_name":"Ardeola ralloides paludivaga","author_year":"(Scopoli, 1769)"},{"full_name":"Ardeola ralloides ralloides","author_year":"(Scopoli, 1769)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11482,"full_name":"Haliaeetus albicilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Havørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeearend","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Sea-eagle, White-tailed Eagle, Grey Sea Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Merikotka","convention_language":false,"id":null},{"lang":"French","names":"Pygargue à queue blanche, Pygargue commun","convention_language":true,"id":null},{"lang":"German","names":"Seeadler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rétisas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila di mare","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havørn","convention_language":false,"id":null},{"lang":"Polish","names":"Bielik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-rabalva","convention_language":false,"id":null},{"lang":"Spanish","names":"Pigargo, Pigargo coliblanco, Pigargo Europeo, Pigargo común","convention_language":true,"id":null},{"lang":"Swedish","names":"Havsörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.; Rajchard, J. and Prochazka, J. 2009. Restoration of sea eagle population: a review. Current Zoology: 55: 315-318.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Barjaktarov, D.D. 2004. Ornithological Importance of Gruza Accumulation. Matica Srpska Proceedings for Natural Sciences: 107: 55-64.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Folkestad, A. O. 1984. Situasjonen for havorna \u003Ci\u003EHaliaeetus albicilla\u003C/i\u003E in Norge. Vår Fuglefauna: 7: 209-216.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .; Willgohs, J. F. 1984. Havorn i Norge. Direktorat for Vilt og Ferskvannsfisk. Trondheim.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Helander, B. 1980. Fargringmarkning av havsorn - en lagesrapport. Fauna och Flora: 4: 183-187.; Helander, B., Olsson, M. and Reutergardh, L. 1982. Residue levels of organochlorine and mercury compounds in unhatched eggs and the relationships to breeding success in White-tailed Sea Eagles \u003Ci\u003EHaliaeetus albicilla\u003C/i\u003E in Sweden. Holarctic Ecology: 5: 349-366.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,distribution uncertain,reintroduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Love, J. A. 1983. The return of the Sea Eagle. Cambridge University Press. Cambridge, U.K.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11483,"full_name":"Eubalaena japonica","author_year":"(Lacépède, 1818)","common_names":[{"lang":"English","names":"North Pacific Right Whale","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Shelden, K.E.W., Moore, S.E., Waite, J.M., Wade, P.R. and Rugh, D.J. 2005. Historic and current habitat use by North Pacific right whales \u003Ci\u003EEubalaena japonica\u003C/i\u003E in the Bering Sea and Gulf of Alaska. \u003Ci\u003EMammal Review\u003C/i\u003E: 35(2): 129–155.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Clapham, P.J., Good, C., Quinn, S.E., Reeves, R.R., Scarff, J.E. and Brownell, R.L. 2004. Distribution of North Pacific right whales (\u003Ci\u003EEubalaena japonica\u003C/i\u003E) as shown by 19th and 20th century whaling catch and sighting records. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 6(1): 1–6.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Townsend, C.H. 1935. The distribution of certain whales as shown by logbook records of American whaleships. \u003Ci\u003EZoologica\u003C/i\u003E: 19:1-50.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Marques, T., Munger, L., Thomas, L., Wiggins, S. and Hildebrand, J. 2011. Estimating North Pacific right whale \u003Ci\u003EEubalaena japonica\u003C/i\u003E density using passive acoustic cue counting. \u003Ci\u003EEndangered Species Research\u003C/i\u003E: 13: 163–172.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"North Pacific. Initially included within \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also within \u003Ci\u003EBalaena glacialis glacialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11484,"full_name":"Pluvialis fulva","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Sibirisk Tundrahjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Aziatische Goudplevier, Kleine Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"Pacific Golden-Plover, Pacific Golden Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiankurmitsa","convention_language":false,"id":null},{"lang":"French","names":"Pluvier fauve, Asiático","convention_language":true,"id":null},{"lang":"German","names":"Wanderregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szibériai lile","convention_language":false,"id":null},{"lang":"Italian","names":"Piviere dorato orientale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-dourada-siberiana","convention_language":false,"id":null},{"lang":"Russian","names":"Burokrylaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado Siberiano","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk tundrapipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius fulvus","author_year":"Gmelin, 1789"},{"full_name":"Pluvialis dominica fulva","author_year":"(P. L. S. Müller, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11485,"full_name":"Cygnus olor","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Knopsvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Knobbelzwaan","convention_language":false,"id":null},{"lang":"English","names":"Mute Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Kyhmyjoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne muet, Cygne tuberculé","convention_language":true,"id":null},{"lang":"German","names":"Höckerschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno reale","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź niemy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-vulgar","convention_language":false,"id":null},{"lang":"Russian","names":"Ле́бедь-шипу́н","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne Vulgar","convention_language":true,"id":null},{"lang":"Swedish","names":"Knölsvan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced,introduced (?)","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"introduced,introduced (?)","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"introduced,distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"introduced,introduced (?)","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced,introduced (?)","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas olor","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11486,"full_name":"Calidris mauri","author_year":"(Cabanis, 1857)","common_names":[{"lang":"Danish","names":"Alaskaryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Alaskastrandloper","convention_language":false,"id":null},{"lang":"English","names":"Western Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau d'Alaska","convention_language":true,"id":null},{"lang":"Russian","names":"Pereponchatopaly Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Alaska","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ereunetes mauri","author_year":"Cabanis, 1857"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11487,"full_name":"Acipenser medirostris","author_year":"Ayres, 1854","common_names":[{"lang":"English","names":"Green Sturgeon, Green Japanese Sturgeon, Barbel Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Vihersampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon vert, Esturgeon de Sakhaline","convention_language":true,"id":null},{"lang":"German","names":"Sachalinstör, Grüner Stör","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr sachalinski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-verde","convention_language":false,"id":null},{"lang":"Russian","names":"Sterlyad","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión verde","convention_language":true,"id":null},{"lang":"Swedish","names":"grön stör","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Adams, P.B., Grimes, C., Lindleym S.T. and Moser, M. L. 2002. Status review for North American green sturgeon, Acipenser medirostris. http://137.110.142.7/publications/FED/00630.pdf National Marine Fisheries Service. ; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Houston, J. P. P. 1988. Status of the Green Sturgeon, \u003Ci\u003EAcipenser medirostris\u003C/i\u003E, in Canada. Canadian Field Naturalist: 102: 286-290.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Campbell, R.R. 1991. Rare and endangered fishes and marine mammals of Canada. Canadian Field-Naturalist: 105: 151-156.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Adams, P.B., Grimes, C., Hightower, J.E., Lindley, St.T., Moser, M.L. and Parsley, M.J. 2007. Population status of North American green sturgeon, Acipenser medirostris. Environmental Biology of Fishes: 79: 339-356.; Adams, P.B., Grimes, C., Lindleym S.T. and Moser, M. L. 2002. Status review for North American green sturgeon, Acipenser medirostris. http://137.110.142.7/publications/FED/00630.pdf National Marine Fisheries Service. ; Erickson, D.L., North, J.A., Hightower, J.E., Weber, J. and Lauck, L. 2002. Movement and habitat use of green sturgeon Acipenser medirostris in the Rogue River, Oregon, USA. Journal of Applied Ichthyology: 18: 565-569.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Moyle, P. B. 1995. The decline of anadromous fishes in California. Conservation Biology: 8: 869-870.; Moyle, P. B., Foley, P. J. and Yoshiyama, R. M. 1993. Status and biology of the Green Sturgeon, \u003Ci\u003EAcipenser medirostris\u003C/i\u003E. 123rd Annual Meeting of the American Fisheries Society, Portland, Oregon, August/September 1993. Session 1.3. Symposium: Biology and Management of North American Sturgeons . 14-15; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11488,"full_name":"Cathartes aura","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Turkey Vulture","convention_language":true,"id":null},{"lang":"French","names":"Urubu à tête rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Aura gallipavo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Cathartes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11489,"full_name":"Larus relictus","author_year":"Lönnberg, 1931","common_names":[{"lang":"Danish","names":"Reliktmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Mongoolse zwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Relict Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mongolianlokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette Relique, Goéland relique, Goéland de Mongolie","convention_language":true,"id":null},{"lang":"German","names":"Gobi-Schwarzkopfmöwe","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano della Mongolia","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota relicta, Gaviota de Mongolia","convention_language":true,"id":null},{"lang":"Swedish","names":"gobimås, reliktmås","convention_language":false,"id":null}],"distributions":[{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fisher, D.J. 1985. Observations on Relict Gull in Mongolia. Dutch Birding: 7: 117-120.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11490,"full_name":"Turdus chrysolaus","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Brown-headed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à flancs roux","convention_language":true,"id":null}],"distributions":[{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11492,"full_name":"Sternula balaenarum","author_year":"(Strickland, 1852)","common_names":[{"lang":"English","names":"Damara Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne des baleiniers","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito de Damara","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna balaenarum","author_year":"(Strickland, 1852)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna balaenarum\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11494,"full_name":"Phylloscopus subviridis","author_year":"(Brooks, 1872)","common_names":[{"lang":"English","names":"Brooks's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Brooks","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11495,"full_name":"Phylloscopus fuscatus","author_year":"(Blyth, 1842)","common_names":[{"lang":"Danish","names":"Brun Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruine Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Dusky Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot brun","convention_language":true,"id":null},{"lang":"Russian","names":"Buraya Penochka","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11496,"full_name":"Locustella certhiola","author_year":"(Pallas, 1811)","common_names":[{"lang":"Dutch","names":"Siberische Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Pallas's Grasshopper Warbler, Pallas's Grasshopper-warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Pallas","convention_language":true,"id":null},{"lang":"Swedish","names":"starrsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Roth, T. and Jalilova, G. 2004. First confirmed breeding record of Pallas's Grasshopper Warbler \u003Ci\u003ELocustella certhiola\u003C/i\u003E in Kyrgyzstan. Sandgrouse: 26: 141-143.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11497,"full_name":"Larus ichthyaetus","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Racek velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor Sorthovedet Måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenzwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Great Black-headed Gull, Pallas's Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapäälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland ichthyaète","convention_language":true,"id":null},{"lang":"German","names":"Fischmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Halárszsirály, Halászsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano del Pallas","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa orlica, Orlica (mewa orlica)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Cabecinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthuvad trut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Bonaccorsi, G. 1999. [Great Black-headed Gull, a new species for France.]. Ornithos: 6: 95-96.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11498,"full_name":"Larus melanocephalus","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Sorthovedet måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustanmerenlokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette mélanocéphale","convention_language":true,"id":null},{"lang":"German","names":"Schwarzkopfmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szerecsensirály","convention_language":false,"id":null},{"lang":"Icelandic","names":"Szerecsensirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano corallino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-cabeça-preta, Gaviota-de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota cabecinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthuvad mås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kubán, V., Matousek, B. and Siska, S. 1997. [First breeding record of Mediterranean Gull (\u003Ci\u003ELarus melanocephalus\u003C/i\u003E) for Slovakia.]. Tichodroma: 10: 168-170.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11499,"full_name":"Egretta vinaceigula","author_year":"(Sharpe, 1895)","common_names":[{"lang":"English","names":"Slaty Egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette vineuse","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta gorgirroja","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hydranassa vinaceigula","author_year":"(Sharpe, 1895)"},{"full_name":"Melanophoyx vinaceigula","author_year":"Sharpe, 1895"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11500,"full_name":"Dermochelys coriacea","author_year":"(Vandelli, 1761)","common_names":[{"lang":"English","names":"Leatherback turtle, Trunkback turtle, Coffin-back turtle, Luth turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Joseph, D. 1984. The National Report: Antigua and Barbuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J., McLachlan, N. C. and Miller, J. D. 1984. Further observations on breeding of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Australia. Australian Wildlife Res.: 11: 567-571.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Haelters, J. and Kerckhof, F. 1999. [A record of the Leatherback turtle \u003Ci\u003EDermochelys coriacea\u003C/i\u003E (Linnaeus, 1758), and the first record of \u003Ci\u003EStomatolepas dermochelys\u003C/i\u003E Monroe and Limpus, 1979 on the Belgian coast.]. Een waarneming van de lederschildpad \u003Ci\u003EDermochelys coriacea\u003C/i\u003E (Linnaeus, 1758), en de eerste waarneming van \u003Ci\u003EStomatolepas dermochelys\u003C/i\u003EMonroe and Limpus, 1979 aan de Belgische kust. Strandvlo : 19: 30-39.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; van Gompel, J. 1990. First record of the leather-backed turtle Dermochelys coriacea (Linnaeus, 1758) on the Belgian coast. Strandvlo: 9: 102.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Lazar, B. and Holcer, D. 1998. Notes on the marine turtles of Sal Island, Cape Verde Islands. P. 231 in S. Epperly and J. Braun (compilers) Proceedings of the Seventeenth Annual Sea Turtle Symposium. U.S. Dep. Commer. NOAA Tech Memo. NMFS-SEFSC-415. 294; López-Jurado, L. F., Cabrera, I., Cejudo, D., Évora, C. and Alfama, P. 2000. Distribution of marine turtles in the Archipelago of Cape Verde, Western Africa. Pp. 245-247 in Proceedings of the Nineteenth Annual Symposium on Sea Turtle Biology and Conservation. U.S. Dept. Commerce. NOAA Tech. Memo. NMFS-SEFSC-443. 291","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Godgenger, M.-C., Bréheret, N., Bal, G., N'Damité, K., Girard, A. and Girondot, M. 2009. Nesting estimation and analysis of threats for Critically Endangered leatherback \u003Ci\u003EDermochelys coriacea\u003C/i\u003E and Endangered olive ridley \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E marine turtles nesting in Congo. Oryx: 43: 556-563.; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Campbell, C.L., C.J. Lageux, J.A. Mortimer. 1996. Leatherback turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E nesting at Tortuguero, Costa Rica, in 1995. Chelonian Conservation and Biology : 2: 169-172.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Leslie, A.J., D.N. Penick, J.R. Spotila, and F.V. Paladino. 1996. Leatherback turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, nesting and nest success at Tortuguero, Costa Rica, in 1990-1991. Chelonian Conservation and Biology: 2: 159-168.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Edwards, S. 1984. The National Report: Dominica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Chevalier, J. and Girondot, M. 2000. Recent population trend for \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in French Guiana. NOAA Technical Memorandum NMFS-SEFSC U.S. Department Commerce: 436: 56-57; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Girondot, M. and J. Fretey. 1996. Leatherback turtles, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, nesting in French Guiana, 1978-1995. Chelonian Conservation and Biology: 2: 204-208.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gargominy, O. (ed.). 2003. Biodiversité et conservation en outre-mer - Pacifique. Polynésie française. Comité français pour l’UICN. Paris, France.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Petersen, A. 1984. Ledurskjaldbaka Fundin Vid Island. [\u003Ci\u003EDermochelys coriacea\u003C/i\u003E (order Chelonia) recorded in Iceland]. Natturufraedingurinn : 53: 161.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Baltosser, W. H. 1982. Geographic distribution. Serpentes: \u003Ci\u003EBoa constrictor imperator\u003C/i\u003E. Herpetological Review: 13: 81-82.; Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. M. 1998. Morphometrics, distribution and ecology of chelonians in Jordan (Reptilia: Testudines). Faunistische Abhandlungen (Dresden) -Supplement: 21: 31-41.; Kinzelbach, R. 1986. First record of the Leatherback Turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, from Jordan. Zoology Middle East: 1: 87-88.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; WWF/EGA/SSC. 2005. Marine and coastal resources assessment of the Eastern Region of Libya. Background study for the preparation of a conservation plan. The Environment General Authority of the Great Socialist People's Libyan Arab Jamahiriya.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Glaw, F. and Vences, M. 2003. Introduction to amphibians. In S. Goodman and J. Bengston (eds) Natural History of Madagascar. University of Chicago Press. Chicago, I.; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Martinique. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Meylan, A., P. Meylan and A. Ruiz. 1985. Nesting of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Caribbean Panama. Journal of Herpetology: 19: 293-297.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Quinn, N. J., and Kojis, B. L. 1985. Leatherback Turtles under threat in Morobe Province Papua New Guinea. PLES (South Pacific Commission): 1: 79-99.; Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Morris, K. 1984. The National Report: St Vincent. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Hughes, G.R. 1996. Nesting of the leatherback turtle \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Tongaland, KwaZulu-Natal, South Africa, 1963-1995. Chelonian Conservation and Biology : 2: 153-158.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reichart, H. A. 1986. Sea turtles of Suriname. American: 38: 477.; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mathiasson, S. 1995. [A new Swedish find of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E]. Nytt svenskt fynd av havsladerskoldpadda (\u003Ci\u003EDermochelys coriacea\u003C/i\u003E). Goteborgs Naturhistoriska Museum Arstryck 1995: 31-34.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Bacon, P.R. 1970. Studies of the leatherback turtles, \u003Ci\u003EDermochelys coiacea\u003C/i\u003E (L.), in Trinidad, West Indies. Biological Conservation: 2: 213-217.; Bacon, P.R. and G.K. Maliphant. 1971. Further studies on sea turtles in Trinidad and Tobago. Journal of the Trinidad Field Naturalists Club: 1971: 2-17.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.; Eckert, K.L. and W. Herron. 1998. Tobago's illegal Leatherback hunt. Environment Tobago Newsletter: 2.2.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Knowlton, A.R. and Weigle, B. 1989. A note on the distribution of leatherback turtles \u003Ci\u003EDermochelys coriacea\u003C/i\u003E along the Florida coast in February 1988. NOAA Technical Memorandum, NMFS-SEFC.: 232: 83-85","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Boulon, R.H., Jr., P.H. Dutton, and D.L. McDonald. 1996. Leatherback turtles \u003Ci\u003EDermochelys coriacea\u003C/i\u003E on St. Croix, U.S. Virgin Islands: fifteen years of conservation. Chelonian Conservation and Biology: 2: 141-147.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Dermochelyidae","genus_name":"Dermochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Dermochelyidae spp.","auto_note":"FAMILY ADDITION Dermochelyidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11501,"full_name":"Oenanthe finschii","author_year":"(Heuglin, 1869)","common_names":[{"lang":"Danish","names":"Hvidrykket Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Finsch' Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Finsch's Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoselkätasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet de Finsch","convention_language":true,"id":null},{"lang":"German","names":"Felsensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Török hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella di Finsch","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco de Finsch, Chasso de Finsch","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba de Finsch","convention_language":true,"id":null},{"lang":"Swedish","names":"Finschstenskvätta, Finschtenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11502,"full_name":"Sterna hirundo","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Rybák obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Fjordterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Visdiefje","convention_language":false,"id":null},{"lang":"English","names":"Common Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Kalatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne pierregarin","convention_language":true,"id":null},{"lang":"German","names":"Flußseeschwalbe, Flusseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Küszvágó csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna comune","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa zwyczajna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-commun, Andorinha-do-mar-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Fisktärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Rasmussen, P. C. and López H., N. 1988. Notes on the status of some birds of Region X, Chile. Bulletin of the British Ornithologists' Club: 108: 154-159.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11503,"full_name":"Turdus kessleri","author_year":"(Przewalski, 1876)","common_names":[{"lang":"English","names":"Kessler's Thrush, White-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle de Kessler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11504,"full_name":"Pelecanus onocrotalus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Pelikán bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Almindelig pelikan","convention_language":false,"id":null},{"lang":"Dutch","names":"Pelikaan, Gewone Pelikaan, Witte Pelikaan","convention_language":false,"id":null},{"lang":"English","names":"White Pelican, Great White Pelican","convention_language":true,"id":null},{"lang":"Finnish","names":"Pelikaani","convention_language":false,"id":null},{"lang":"French","names":"Pélican blanc","convention_language":true,"id":null},{"lang":"German","names":"Rosapelikan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rózsás gödény","convention_language":false,"id":null},{"lang":"Italian","names":"Pellicano","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pelicano-vulgar","convention_language":false,"id":null},{"lang":"Spanish","names":"Pelícano Común, Pelícano vulgar","convention_language":true,"id":null},{"lang":"Swedish","names":"Pelikan, Vit pelikan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Zhatkanbayev, A. H. 1994. The present state of pelican populations (\u003Ci\u003EPelecanus onocrotalus\u003C/i\u003E and \u003Ci\u003EP. crispus\u003C/i\u003E) in Kazakhstan. Bulletin of the British Ornithologists' Club: 114: 202-205.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Pelecanus roseus","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11505,"full_name":"Leucogeranus leucogeranus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Danish","names":"Snetrane","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Witte Kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Siberian White Crane, Siberian Crane, Snow Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Lumikurki","convention_language":false,"id":null},{"lang":"French","names":"Leucogéranne, Grue de Sibérie, Grue blanche d'Asie","convention_language":true,"id":null},{"lang":"German","names":"Nonnenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru bianca asiatica","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla blanca asiática, Grulla siberiana, Grulla siberiana blanca","convention_language":true,"id":null},{"lang":"Swedish","names":"snötrana","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennerley, P. R. 1987. A survey of the birds of the Poyang Lake Nature Reserve, Jiangxi Province, China, 29 December 1985 - 4 January 1986. Hong Kong Bird Report 1984/1985: 97-111.; Meyer de Schauensee, R. 1984. The birds of China. Oxford University Press. Oxford.; Williams, M. D., Bakewell, D. N., Carey, G. J. and Holloway, S. J. 1986. On the bird migration at Beidaihe, Hebei Province, China, during spring 1985. Forktail: 2: 3-20.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kreuzberg-Mukhina, E. 2003. Some unusual patterns of bird migration in Uzbekistan, spring 2002. Sandgrouse: 25: 59-62.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Leucogeranus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Grus leucogeranus","author_year":"Pallas, 1773"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EGrus leucogeranus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/1999","name":"Siberian Crane"},{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11506,"full_name":"Oenanthe cypriaca","author_year":"(Homeyer, 1884)","common_names":[{"lang":"Dutch","names":"Cyperse Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Cyprus Pied Wheatear, Cyprus Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet de Chypre","convention_language":true,"id":null}],"distributions":[{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11508,"full_name":"Pseudorca crassidens","author_year":"(Owen, 1846)","common_names":[{"lang":"English","names":"False Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Faux-orque","convention_language":true,"id":null},{"lang":"Portuguese","names":"Falsa orca","convention_language":false,"id":null},{"lang":"Spanish","names":"Orca falsa","convention_language":true,"id":null},{"lang":"Swedish","names":"halvspäckhuggare, svart späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Baird, R. W., Langelier, K. M. and Stacey, P. J. 1989. First records of False Killer Whales \u003Ci\u003EPseudorca crassidens\u003C/i\u003E in Canada. Canadian Field Naturalist: 103: 368-371.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fuentes, H. R. 1987. Observaciones sobre \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen 1846) (Odontoceti: Delphinidae) varadas en Los Choros, Coquimbo, 4 Region, Chile. An. Mus. Hist. Nat. Valparaiso: 18: 169-175.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Acevedo Gutierrez, A. 1996. Lista de mamiferos marinos en Golfo Dulce e Isla del Coco, Costa Rica. Revista de Biologia Tropical: 44: 933-934.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Van Waerebeek, K. and de Smet, W. M. A. 1996. A second confirmed record of the False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846) (Cetacea, Delphinidae) from West Africa. Mammalia: 60: 319-322.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Killer whale, \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus) and false killer whale, \u003Ci\u003EPseudorca crassidens\u003C/i\u003E Owen, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 181-182.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Greaves, J. and Garrigue, C. 1999. First record of false killer whales (\u003Ci\u003EPseudorca crassidens\u003C/i\u003E), in New Caledonia, South Pacific. Memoirs of the Queensland Museum: 43: 588.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, M. L. L., Yaptinchay, A. A., Jaaman, S. A., Santos, M. D., Muhamad, S. B. S., Perrin, W. F. and Alava, M. N. R. 1997. Preliminary investigation of marine mammal distribution, abundance, and interactions with humans in the southern Sulu Sea. Asian Marine Biology: 14: 61-81.; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baird, R.W., Gorgone, A.M., McSweeny, D.J., Salden, D.R., Deakos, M.H., Liigon, A.D., Schorr, G.S., Barlow, J. and Mahaffy, S.D. 2008. False killer whales (\u003Ci\u003EPseudorca crassidens\u003C/i\u003E) around the main Hawaiian Islands: long-term site fidelity, inter-island movements, and association patterns. Marine Mammal Science: 24: 591-612.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Jefferson, T. A., Leatherwood, S., Ho, D. T., Thuoc, C. V. and Quang, L. H. 1997. Investigations of marine mammals in Vietnam. Asian Marine Biology: 14: 145-172.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Pseudorca","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11509,"full_name":"Muscicapa sibirica","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Dark-sided Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de Sibérie","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11510,"full_name":"Tadarida insignis","author_year":"Blyth, 1862","common_names":[{"lang":"English","names":"East Asian Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ETadarida teniotis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11511,"full_name":"Acrocephalus melanopogon","author_year":"(Temminck, 1823)","common_names":[{"lang":"Czech","names":"Rákosník tamaryškový","convention_language":false,"id":null},{"lang":"Danish","names":"Tamarisksanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkoprietzanger","convention_language":false,"id":null},{"lang":"English","names":"Moustached Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Osmankäämikerttunen, Tamariskikerttunen","convention_language":false,"id":null},{"lang":"French","names":"Lusciniole à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Mariskensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fülemülesitke","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie castagnolo","convention_language":false,"id":null},{"lang":"Polish","names":"Tamaryszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-real","convention_language":false,"id":null},{"lang":"Russian","names":"Tonkoklyuvaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín real","convention_language":true,"id":null},{"lang":"Swedish","names":"Kaveldunsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Lusciniola melanopogon","author_year":"(Temminck, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11515,"full_name":"Larus hartlaubii","author_year":"Bruch, 1853","common_names":[{"lang":"English","names":"King Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Hartlaub","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota plateada Surafricana","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus novaehollandiae hartlaubii","author_year":"Stephens, 1826"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11516,"full_name":"Niltava davidi","author_year":"La Touche, 1907","common_names":[{"lang":"English","names":"Fujian Niltava","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de David","convention_language":true,"id":null},{"lang":"German","names":"Davidniltava","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk niltava, koboltniltava","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. 2000. Twenty six further new species for Cambodia. Cambodia Bird News: 6: 37-43.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11520,"full_name":"Gavialis gangeticus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Ganges gavial","convention_language":false,"id":null},{"lang":"Dutch","names":"Ganges-gaviaal","convention_language":false,"id":null},{"lang":"English","names":"Gharial, Fish-eating Crocodile, Gavial, Long-nosed Crocodile","convention_language":true,"id":null},{"lang":"Finnish","names":"Gangesingaviaali","convention_language":false,"id":null},{"lang":"French","names":"Gavial Du Gange","convention_language":true,"id":null},{"lang":"German","names":"Gangesgavial","convention_language":false,"id":null},{"lang":"Italian","names":"Gaviale del Gange","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavial del Ganges","convention_language":true,"id":null},{"lang":"Swedish","names":"gangesgavial, garial, gavial","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Faizuddin, M. 1985. Distribution, abundance and conservation of Gharials in Bangladesh. Tigerpaper: 12: 22-23.; Khan, M. A. R. 1982. Present status and distribution of the crocodiles and gharial of Bangladesh. In: Crocodiles. Proceedings of the 5th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN. ; Whitaker, R. 1982. Export prospects from commercial crocodile farms in Bangladesh. Report on a mission. Project No. GTO/03/07. International Trade Centre UNCTAD/GATT. ITC/DIP/63 . ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Nair, A.K. 2009. The status and distribution of major aquatic fauna in the National Chambal Gharial Sanctuary in Rajasthan with special reference to the Gangetic Dolphin \u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E (Cetartiodactyla: Platanistidae). Journal of Threatened Taxa: 1: 141-146.; Singh, L.A.K. and Bustard H.R. 1982. Geographical distribution of the gharial \u003Ci\u003EGravialis gangeticus\u003C/i\u003E (Gmelin) in Orissa, India. British Journal of Herpetology: 6: 259-260.; Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.; Singh, L. A. K., Kar, S., and Choudhury, B. C. 1986. Indian crocodilians: a 10-year review of management. In: Crocodiles. Proceedings of the 7th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN and FUDENA. ; Singh, L. A. K., Kar, S., and Choudhury, B. C. 1986. India: status of wild crocodiles. In: Crocodiles. Proceedings of the 7th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN and FUDENA. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"extinct","country_references":"Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.; Swan, L. W., and Leviton, A. E. 1962. The herpetology of Nepal: a history, checklist, and zoogeographical analysis of the herpetofauna. Proceedings of the California Academy of Sciences: 32: 103-147.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Minton, S. A. 1966. A contribution to the herpetology of West Pakistan. Bulletin of the American Museum of Natural History: 134: 27-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Crocodylia","class_name":"Reptilia","family_name":"Gavialidae","genus_name":"Gavialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11521,"full_name":"Hypsugo savii","author_year":"(Bonaparte, 1837)","common_names":[{"lang":"Albanian","names":"Pipistreli i Savit","convention_language":false,"id":null},{"lang":"Croatian","names":"Primorski šišmiš","convention_language":false,"id":null},{"lang":"Danish","names":"Savis flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Savi's dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Savi's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Alpi nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Alppipikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Vespère de Savi","convention_language":true,"id":null},{"lang":"German","names":"Alpenfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alpesi törpedenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello di Savi","convention_language":false,"id":null},{"lang":"Norwegian","names":"Saviflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik Saviego","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Savii","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-munte","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago montañero","convention_language":true,"id":null},{"lang":"Swedish","names":"Alpfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 2001. Status and distribution of bats in Bangladesh with notes on their ecology. Zoos' Print Journal: 16: 479-483.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bihari, Z. and Gombkoto, P. 1994. [Contribution to the faunistical knowledge of bats in north-east Hungary.]. Folia Historico Naturalia Musei Matraensis: 18: 163-189.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Makin, D. 1987. The status of bats in Israel. Pp. 403-408 in V. Hanak, I. Horacek and I. Gaisler (eds) European bat research 1987. Proceedings of the Fourth European Bat Research Symposium. Charles University Press. Prague.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Radulet, N. 1996. \u003Ci\u003EPipistrellus savii\u003C/i\u003E (Bonaparte, 1837) (Chiroptera: Vespertilionidae) signale pour la première fois en Roumanie. Travaux du Museum National d'Histoire Naturelle \"Grigore Antipa\": 36: 385-389.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Hypsugo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Pipistrellus savii","author_year":"(Bonaparte, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11522,"full_name":"Pterodroma phaeopygia","author_year":"(Salvin, 1876)","common_names":[{"lang":"English","names":"Dark-rumped Petrel, Galápagos Petrel, Galapagos Petrel, Hawaiian Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel des Hawaï","convention_language":true,"id":null},{"lang":"Spanish","names":"Petrel Hawaiano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Oestrelata phaeopygia","author_year":"Salvin, 1876"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11523,"full_name":"Polysticta stelleri","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Stellersand","convention_language":false,"id":null},{"lang":"Dutch","names":"Stellers Eidereend, Steller's Eidereend","convention_language":false,"id":null},{"lang":"English","names":"Steller's Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Allihaahka","convention_language":false,"id":null},{"lang":"French","names":"Eider de Steller","convention_language":true,"id":null},{"lang":"German","names":"Scheckente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Steller-pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Edredone di Steller","convention_language":false,"id":null},{"lang":"Polish","names":"Birginiak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider de Steller","convention_language":false,"id":null},{"lang":"Russian","names":"Sibirskaya Gaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider de Steller, Eider menor, Eider Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"alförrädare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Polysticta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas stelleri","author_year":"Pallas, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11524,"full_name":"Locustella fluviatilis","author_year":"(Wolf, 1810)","common_names":[{"lang":"Danish","names":"Flodsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Krekelzanger","convention_language":false,"id":null},{"lang":"English","names":"Eurasian River Warbler, River Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viitasirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle fluviatile","convention_language":true,"id":null},{"lang":"German","names":"Schlagschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Locustella fluviatile","convention_language":false,"id":null},{"lang":"Polish","names":"Wierszczak, Strumieniówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-fluvial","convention_language":false,"id":null},{"lang":"Russian","names":"Rechnoy Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Fluvial","convention_language":true,"id":null},{"lang":"Swedish","names":"Flodsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11525,"full_name":"Anas platyrhynchos","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kachna divoká","convention_language":false,"id":null},{"lang":"Danish","names":"Gråand","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilde Eend","convention_language":false,"id":null},{"lang":"English","names":"Mallard, Common Mallard","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinisorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard colvert","convention_language":true,"id":null},{"lang":"German","names":"Stockente","convention_language":false,"id":null},{"lang":"Italian","names":"Germano reale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Anade azulón","convention_language":true,"id":null},{"lang":"Swedish","names":"Gräsand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced (?),introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"introduced (?)","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Debski, I. 1995. Mallard \u003Ci\u003EAnas platyrhynchos\u003C/i\u003E in Nigeria. Malimbus: 17: 31-32.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain,introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leonard, P. M. 2001. A Mallard \u003Ci\u003EAnas platyrhynchos\u003C/i\u003E in the Luangwa Valley. Zambia Bird Report: 1999: 90-91.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas diazi","author_year":"Ridgway, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11526,"full_name":"Phoenicurus auroreus","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"Daurian Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue aurore","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11527,"full_name":"Bartramia longicauda","author_year":"(Bechstein, 1812)","common_names":[{"lang":"Danish","names":"Bartramsklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Bartram's Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Upland Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Maubèche des champs","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos batitú","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Kirwan, G. M. and Sharpe, C. J. 1999. Range extensions and notes on the status of little-known species from Venezuela. Bulletin of the British Ornithologists' Club: 119: 38-47.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Bartramia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa longicauda","author_year":"Bechstein, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11528,"full_name":"Vanellus senegallus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Wattled Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau du Sénégal","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría Senegalesa","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Afribyx senegallus","author_year":"(Linnaeus, 1766)"},{"full_name":"Parra senegalla","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11529,"full_name":"Ardea cinerea","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Volavka popelavá","convention_language":false,"id":null},{"lang":"Danish","names":"Fiskehejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwe Reiger","convention_language":false,"id":null},{"lang":"English","names":"Grey Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaahaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron cendré","convention_language":true,"id":null},{"lang":"German","names":"Graureiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke gém","convention_language":false,"id":null},{"lang":"Italian","names":"Airone cenerino","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla siwa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-real","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Tsaplya","convention_language":false,"id":null},{"lang":"Spanish","names":"Garza Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Palacios, C.-J. and Barone, R. 2001. Le Héron cendré \u003Ci\u003EArdea cinerea\u003C/i\u003E, nouvelle espèce nidificatrice aux Îles du Cap Vert. Alauda: 69: 18.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea monicae","author_year":"Jouanin \u0026 Roux, 1963"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11530,"full_name":"Calidris subminuta","author_year":"(Middendorff, 1853)","common_names":[{"lang":"Dutch","names":"Taigastrandloper","convention_language":false,"id":null},{"lang":"English","names":"Long-toed Stint","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à longs doigts","convention_language":true,"id":null},{"lang":"Russian","names":"Dlinnopaly Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos dedilargo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia subminuta","author_year":"(Middendorff, 1853)"},{"full_name":"Tringa subminuta","author_year":"Middendorff, 1853"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11531,"full_name":"Luscinia megarhynchos","author_year":"(Brehm, 1831)","common_names":[{"lang":"Czech","names":"Slavík obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Sydlig Nattergal","convention_language":false,"id":null},{"lang":"Dutch","names":"Nachtegaal","convention_language":false,"id":null},{"lang":"English","names":"Nightingale, Common Nightingale","convention_language":true,"id":null},{"lang":"Finnish","names":"Etelänsatakieli","convention_language":false,"id":null},{"lang":"French","names":"Rossignol philomèle","convention_language":true,"id":null},{"lang":"German","names":"Nachtigall","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"ruiseñor Común, Ruisenõr Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sydnäktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Luscinia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus megarhynchos","author_year":"(Brehm, 1831)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11534,"full_name":"Tringa incana","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Wandering Tattler","convention_language":true,"id":null},{"lang":"French","names":"Chevalier errant","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero de Alaska","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"distribution uncertain","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Heteroscelus incanus","author_year":"(Gmelin, 1789)"},{"full_name":"Scolopax incana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11535,"full_name":"Vanellus superciliosus","author_year":"(Reichenow, 1886)","common_names":[{"lang":"English","names":"Brown-chested Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à poitrine châtaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría pechirrufa","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anomalophrys superciliosus","author_year":"(Reichenow, 1886)"},{"full_name":"Lobivanellus superciliosus","author_year":"Reichenow, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11536,"full_name":"Lontra provocax","author_year":"(Thomas, 1908)","common_names":[{"lang":"English","names":"Southern River Otter","convention_language":true,"id":null},{"lang":"French","names":"Loutre Du Chili","convention_language":true,"id":null},{"lang":"Spanish","names":"Huillín","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Chehébar, C. E., Gallur, A., Giannico, G., Gottelli, M. D. and Yorio, P. 1986. A survey of the Southern River Otter \u003Ci\u003ELutra provocax\u003C/i\u003E in Lanin, Puelo and Los Alerces National Parks, Argentina, and evaluation of its conservation status. Biological Conservation: 38: 293-304.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Sterling D. Miller, Jurgen Rottmann, Kenneth J. Raedeke and Richard D. Taber. 1983. Endangered Mammals of Chile: Status and Conservation. Biological Conservation : 25: 335-352.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Mustelidae","genus_name":"Lontra","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ELutra provocax\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11537,"full_name":"Charadrius hiaticula","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stor Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Bontbekplevier","convention_language":false,"id":null},{"lang":"English","names":"Common Ringed Plover, Ringed Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Tylli","convention_language":false,"id":null},{"lang":"French","names":"Grande Gravelot, Pluvier grand-gravelot, Grand Gravelot","convention_language":true,"id":null},{"lang":"German","names":"Sandregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Parti lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere grosso","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sandlo","convention_language":false,"id":null},{"lang":"Polish","names":"sieweczka obrozna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-grande-de-coleira","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Större strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fenchuk, V. A. and Bagdanovich, L. A. 2004. [Breeding record of Ringed Plover (\u003Ci\u003ECharadrius hiaticula\u003C/i\u003E) in the far south west of Belarus.]. Subbuteo: 7: 29-31.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11538,"full_name":"Gallinago hardwickii","author_year":"(Gray, 1831)","common_names":[{"lang":"English","names":"Japanese Snipe, Latham's Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine du Japon","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Japonesa","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella hardwickii","author_year":"(J. E. Gray, 1831)"},{"full_name":"Scolopax hardwickii","author_year":"J. E. Gray, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11539,"full_name":"Myiagra rubecula","author_year":"(Latham, 1801)","common_names":[{"lang":"English","names":"Leaden Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Monarque rougegorge","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Myiagra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11540,"full_name":"Sylvia borin","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Dutch","names":"Tuinfluiter","convention_language":false,"id":null},{"lang":"English","names":"Garden Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Lehtokerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette des jardins","convention_language":true,"id":null},{"lang":"German","names":"Gartengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Beccafico","convention_language":false,"id":null},{"lang":"Polish","names":"Gajówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-figueiras","convention_language":false,"id":null},{"lang":"Russian","names":"Sadovaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Mosquitera","convention_language":true,"id":null},{"lang":"Swedish","names":"Trädgårdssångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Berlioz, J. 1958. Étude d'une collection d'oiseaux de Guinée française. Bulletin du Muséum Nationale d'Histoire Naturelle : 30: 490-497.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11541,"full_name":"Plecotus austriacus","author_year":"(Fischer, 1829)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshgjate i hirte","convention_language":false,"id":null},{"lang":"Croatian","names":"Juzni dugouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr dlouhouchý","convention_language":false,"id":null},{"lang":"Danish","names":"Grå langøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijze grootoorvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Grey Big-eared Bat, Grey Long-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Hall-suurkõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Harmaakorvayökkö","convention_language":false,"id":null},{"lang":"French","names":"Oreillard gris","convention_language":true,"id":null},{"lang":"German","names":"Graues Langohr","convention_language":false,"id":null},{"lang":"Italian","names":"Orecchione meridionale","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Pilkasis ausylis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Grå langøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Gacek szary","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-orelhudo-cinzento","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier sivý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejudo gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Grå långörad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Benda, P. and Ivanova, T. 2003. Long-eared bats, genus \u003Ci\u003EPlecotus\u003C/i\u003E (Mammalia: Chiroptera), in Bulgaria: a revision of systematic and distributional status. Journal of the National Museum, Natural History Series: 172: 157-172.; Gaisler, J. and Hanak, V. 1964. Graues Langohr \u003Ci\u003EPlecotus austriacus\u003C/i\u003E (Fischer 1829) in Bulgarien. Folia Zoologica, Brno: 13: 31-38.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Osborn, D. J. 1989. New bat records from the Red Sea Mountains of Egypt. Mammalia: 52: 596-598.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Spitzenberger, F., Strelkov, P. P., Winkler, H. and Haring, E. 2006. A preliminary revision of the genus \u003Ci\u003EPlecotus\u003C/i\u003E (Chiroptera, Vespertilionidae) based on genetic and morphological results. Zoologica Scripta: 35: 187-230.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Nader, I. A. and Kock, D. 1990. \u003Ci\u003EPlecotus austriacus\u003C/i\u003E (Fischer, 1829) new to Saudi Arabia, with remarks on taxonomy and zoogeography (Mammalia: Chiroptera: Vespertilionidae). Fauna of Saudi Arabia: 11: 318-322.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nader, I. A. and Kock, D. 1983. Notes on some bats from the Near East (Mammalia: Chiroptera). Zeitschrift Säugetierkunde: 48: 1-9.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Petrushenko, Y. V. 2000. [Record of \u003Ci\u003EPlecotus austriacus\u003C/i\u003E in Podolia.]. Vestnik Zoologii: 34: 20.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Plecotus ariel","author_year":"Thomas, 1911"},{"full_name":"Plecotus christiei","author_year":"Gray, 1838"},{"full_name":"Plecotus christii","author_year":"Gray, 1838"},{"full_name":"Plecotus kozlovi","author_year":"Bobrinskoj, 1926"},{"full_name":"Plecotus turkmenicus","author_year":"Strelkov, 1988"},{"full_name":"Plecotus wardi","author_year":"Thomas, 1911"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11542,"full_name":"Phylloscopus sindianus","author_year":"Brooks, 1879","common_names":[{"lang":"English","names":"Mountain Chiffchaff","convention_language":true,"id":null},{"lang":"French","names":"Pouillot montagnard","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11543,"full_name":"Falco cherrug","author_year":"Gray, 1834","common_names":[{"lang":"Czech","names":"Raroh velký","convention_language":false,"id":null},{"lang":"Danish","names":"Slagfalk eller sakerfalk, Slagfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Sakervalk","convention_language":false,"id":null},{"lang":"English","names":"Saker Falcon, Saker","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkohaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon sacre","convention_language":true,"id":null},{"lang":"German","names":"Saker, Würgfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerecsensólyom","convention_language":false,"id":null},{"lang":"Italian","names":"Sacro","convention_language":false,"id":null},{"lang":"Polish","names":"Raróg","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-sacre","convention_language":false,"id":null},{"lang":"Spanish","names":"Halcón sacre","convention_language":true,"id":null},{"lang":"Swedish","names":"Tatarfalk, Slagfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":"Except Mongolian populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11544,"full_name":"Rhincodon typus","author_year":"Smith, 1828","common_names":[{"lang":"Afrikaans","names":"Walvishaai","convention_language":false,"id":null},{"lang":"Arabic","names":"Chanaz","convention_language":false,"id":null},{"lang":"Cebuano","names":"Tuki-tuki, Tawiki","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Chlarm, Yaak","convention_language":false,"id":null},{"lang":"English","names":"Whale Shark","convention_language":true,"id":null},{"lang":"Fijian","names":"Dakuwaqa","convention_language":false,"id":null},{"lang":"French","names":"Chagrin, Requin-baleine","convention_language":true,"id":null},{"lang":"German","names":"Rauhhai, Walhai","convention_language":false,"id":null},{"lang":"Japanese","names":"Jinbeizame","convention_language":false,"id":null},{"lang":"Malay","names":"Yu paus","convention_language":false,"id":null},{"lang":"Malayalam","names":"Thimingala sura, Pulli udoombu","convention_language":false,"id":null},{"lang":"Marathi","names":"Karanj","convention_language":false,"id":null},{"lang":"Polish","names":"Rekin wielorybi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão baleia, Pintado, Pintadona","convention_language":false,"id":null},{"lang":"Spanish","names":"Pez dama, Dámero, Tiburón Ballena","convention_language":true,"id":null},{"lang":"Swahili","names":"Vaame","convention_language":false,"id":null},{"lang":"Tagalog","names":"Tuko, Isdang tuku","convention_language":false,"id":null},{"lang":"Tamil","names":"Pulli udoombu, Thimingal sura","convention_language":false,"id":null},{"lang":"Telugu","names":"Thimingila sora","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Holmberg, J., Norman, B. and Arzoumania, Z. 2009. Estimating population size, structure, and residency time for whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E through collaborative photo-identification. Endangered Species Research: 7: 39-53.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Heyman, W. D., Graham, R. T., Kjerfve, B. and Johannes, R .E. 2001. Whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E aggregate to feed on fish spawn in Belize. Marine Ecology Progress Series: 215: 275-282.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Winterbottom, R. and Anderson, R. C. 1997. A revised checklist of the epipelagic and shore fishes of the Chagos Archipelago, central Indian Ocean. Ichthyological Bulletin of the J.L.B. Smith Institute of Ichthyology 66: 1-28.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Monteiro, P., Ribeiro, D. Silva, J. A., Bispo, J. and Gonçalves, J. M. S. 2008. Ichthyofauna assemblages from two unexplored Atlantic seamounts: Northwest Bank and João Valente Bank (Cape Verde archipelago). Scientia Marina: 72(1): 133-143.; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Burgess, G. H., Smith, S. H. and Lane, E. D. 1994. Fishes of the Cayman Islands. In: Brunt, M. A. and Davies, J. E. (eds.) The Cayman Islands: Natural History and Biogeography. Kluwer Academic Publishers: Dordrecht, The Netherlandspringer, 199-228.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Hobbs, J. A., Frisch, A. J., Hamanaka, T., McDonald, C. A., Gilligan, J. J. and Neilson, J. 2009. Seasonal aggregation of juvenile whale sharks (\u003Ci\u003ERhincodon typus\u003C/i\u003E) at Christmas Island, Indian Ocean. Coral Reefs: 28: 577.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaños, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Graham, R. T. 2007. Whale sharks of the western Caribbean: An overview of current research and conservation efforts and future needs for effective management of the species. Gulf and Caribbean Research: 19(2): 149-159.; Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rezzolla, D. and Storai, T. 2010. \"Whale shark expedition\": Observations on \u003Ci\u003ERhincodon typus\u003C/i\u003E from Arta Bay, Gulf of Tadjoura, Djibouti Republic, southern Red Sea. Cybium: 34(2): 195-206.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fox, S., Foisy, I., De La Parra Venegas, R., Galvan Pastoriza, B. E., Graham, R. T., Hoffmayers, E. R., Holmberg, J. and Pierce, S. J. 2013. Population structure and residency of whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E at Utila, Bay Islands, Honduras. Journal of Fish Biology: 83(3): 574-587.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V., Ganga, U., Pillai, N. G. K., Vivekanandan, E., Bineesh, K. K., Shanis, C. P. R. and Hashim, M. 2011. Deep-sea fishing for chondrichthyan resources and sustainability concerns - a case study from southwest coast of India. Indian Journal of Geo-Marine Sciences: 40(3): 347-355.; Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; White, W. T. and Cavanagh, R. D. 2007. Whale shark landings in Indonesian artisanal shark and ray fisheries. Fisheries Research: 84: 128-131.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Khalaf, M. 2004. Fish fauna of the Jordanian coast, Gulf of Aqaba, Red Sea. Journal of King Abdulaziz University: Marine Sciences: 15(1): 23-50.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.; Riley, M. J., Hale, M. S., Harman, A. and Rees, R. G. 2010. Analysis of whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E aggregations near South Ari Atoll, Maldives Archipelago. Aquatic Biology: 8: 145-150.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Balart, E. F., Castro-Aguirre, J. L., Aurioles-Gamboa, D., García-Rodríguez, F. and Villavicencio-Garayzar, C. 1995. Adiciones a la ictiofauna de Bahía de la Paz, Baja California Sur, México. Hidrobiológia: 5(1-2): 79-85.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ramírez-Macías, D., Meekan, M., De La Parra-Venegas, R., Remolina-Suárez, F., Trigo-Mendoza, M. and Vázquez-Juárez, R. 2012. Patterns in composition, abundance and scarring of whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E near Holbox Island, Mexico. Journal of Fish Biology: 80: 1401-1416.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Brunnschweiler, J.M., Baensch, H., Pierce, S.J. and Sims, D.W. 2009. Deep-diving behaviour of a whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E during long-distance movement in the western Indian Ocean. Journal of Fish Biology: 74: 706-714.; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Duffy, C. A. J. 2002. Distribution, seasonality, lengths, and feeding behaviour of whale sharks (\u003Ci\u003ERhincodon typus\u003C/i\u003E) observed in New Zealand waters. New Zealand Journal of Marine and Freshwater Research: 36: 565-570.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Rodrigues, N. V., Correia. J. P. S., Graça, J. T. C., Rodrigues, F., Pinho, R. and Hirofumi, M. 2012. First record of a whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E in continental Europe. Journal of Fish Biology: 81(4): 1427-1429.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Robinson, D. P., Jaidah, M. Y., Jabado, R. W., Lee-Brooks, K., Nour El-Din, N. M. N., Al Malki, A. A., Elmeer, K., McCormick, P. A., Henderson, A. C., Pierce, S. J., Ormond, R. F. G. 2013. Whale sharks, \u003Ci\u003ERhincodon typus\u003C/i\u003E, aggregate around offshore feeding platforms in Qatari waters of the Arabian Gulf to feed on fish spawn. Plos One: 8(3): e58255.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Rowat, D., Gore, M., Meekan, M. G., Lawler, I. R., Bradshaw, C. J. A. 2009. Aerial survey as a tool to estimate whale shark abundance trends. Journal of Experimental Marine Biology and Ecology: 368: 1-8; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Rowat, D., Speed, C.W., Meekan, M.G., Gore, M.A. and Bradshaw, C.J.A. 2009. Population abundance and apparent survival of the Vulnerable whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E in the Seychelles aggregation. Oryx: 43: 591-598.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Wood, A. D., Brouwer, S. L., Cowley, P. D. and Harrison, T. D. 2000. An updated check list of the ichthyofaunal species assemblage of the Tsitsikamma National Park, South Africa. Koedoe: 43(1): 83-95.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chen, C. 2002. Preliminary report on Taiwan's whale shark fishery. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 162-167.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Ebert, D. A., Mollet, H. F., Baldridge, A., Thomas, T., Forney, K. A. and Ripley, W. E. 2004. Occurence of the whale shark, \u003Ci\u003ERhincodon typus\u003C/i\u003E Smith 1828, in California waters. Northwestern Naturalist: 85: 26-28.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Orectolobiformes","class_name":"Elasmobranchii","family_name":"Rhincodontidae","genus_name":"Rhincodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11546,"full_name":"Vanellus indicus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Danish","names":"Indisk Vibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Indische Kievit","convention_language":false,"id":null},{"lang":"English","names":"Red-wattled Plover, Red-wattled Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau indien","convention_language":true,"id":null},{"lang":"Russian","names":"Ukrashenny Chibis","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría India","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hoplopterus indicus","author_year":"(Boddaert, 1783)"},{"full_name":"Lobivanellus indicus","author_year":"(Boddaert, 1783)"},{"full_name":"Tringa indica","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11547,"full_name":"Oenanthe deserti","author_year":"(Temminck, 1825)","common_names":[{"lang":"Danish","names":"Ørkenstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijntapuit","convention_language":false,"id":null},{"lang":"English","names":"Desert Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet du désert","convention_language":true,"id":null},{"lang":"German","names":"Wüstensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella del deserto","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-do-deserto","convention_language":false,"id":null},{"lang":"Russian","names":"Pustynnaya Kamenka","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Desértica","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökenstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 1998. [Rare birds recorded in Poland in 1997.]. Notatki Ornitologiczne 39: 151-174.; Sikora, A., Póltorak, W. and Kopiec, K. 1998. [Desert Wheatear \u003Ci\u003EOenanthe deserti\u003C/i\u003E a new species for Poland.]. Notatki Ornitologiczne: 39: 177-180.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11548,"full_name":"Gallinago stenura","author_year":"(Bonaparte, 1830)","common_names":[{"lang":"Czech","names":"Bekasina asijská","convention_language":false,"id":null},{"lang":"Danish","names":"Sibirisk Bekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Stekelstaartsnip","convention_language":false,"id":null},{"lang":"English","names":"Pintail Snipe, Pin-tailed Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Suippopyrstökurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine à queue pointue","convention_language":true,"id":null},{"lang":"German","names":"Stiftbekassine","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ázsiai sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccino stenuro","convention_language":false,"id":null},{"lang":"Polish","names":"Bekas syberyjski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Nerceja-siberiana, Narceja-siberiana","convention_language":false,"id":null},{"lang":"Russian","names":"Aziatsky Bekas","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Colirrara","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk beckasin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella stenura","author_year":"(Bonaparte, 1830)"},{"full_name":"Scolopax stenura","author_year":"Bonaparte, 1830"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11549,"full_name":"Tadarida brasiliensis","author_year":"(I. Geoffroy, 1824)","common_names":[{"lang":"English","names":"Brazilian Free-tailed bat","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Barquez, R. M. and Ojeda, R. A. 1992. The bats (Mammalia: Chiroptera) of the Argentine Chaco. Annals of Carnegie Museum: 61: 239-261.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Morando, M. and Polop, J. J. 1997. Annotated checklist of mammal species of Cordoba Province, Argentina. Mastozoología Neotropical: 4: 129-136.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F., Kofron, K. P. and Chapman, A. 1957. Notes on the mammals of the Bahamas with special reference to bats. Journal of Mammalogy: 38: 164-174.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Aguirre, L. F. 1999. Estado de conservación de los murciélagos de Bolivia. Chiroptera Neotropical: 5: 108-112.; Anderson, S. 1997. Mammals of Bolivia. Bulletin of the American Museum of Natural History: 231: 1-652.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Salazar-Bravo, J., Tarifa, T., Aguirre, L. F., Yensen, E. and Yates, T. L. 2003. Revised checklist of Bolivian mammals. Occasional Papers, Museum of Texas Tech University: 220: 27.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 1995. Workshop sobre a conservação dos morcegos Brasileiros. Chiroptera Neotropical: 1: 24-29.; Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Stutz, W. H., de Albuquerque, M. C., Uieda, W., de Macedo, E. M. and França, C. B. 2004. Updated list of bats from Uberlandia, State of Minas Gerais, southeastern Brazil. Chiroptera Neotropical: 10: 188-190.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Rodriguez-H, B. and Wilson, D. E. 1999. Lista y distribución de las especies de murciélagos de Costa Rica. Occasional Papers in Conservation Biology: 5: 34 pp.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Hill, J. E. 1988. A bat from the Falkland Islands. Bat News: 15: 6.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCarthy, T. J., Davis, W. B., Hill, J. E., Knox Jones, J. Jr and Cruz, G. A. 1993. Bat (Mammalia: Chiroptera) records, early collectors, and faunal lists for northern Central America. Annals of Carnegie Museum: 62: 191-228.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Klingener, D., Genoways, H. H. and Baker, R. J. 1978. Bats from southern Haiti. Annals of Carnegie Museum: 47: 81-99.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCarthy, T. J., Davis, W. B., Hill, J. E., Knox Jones, J. Jr and Cruz, G. A. 1993. Bat (Mammalia: Chiroptera) records, early collectors, and faunal lists for northern Central America. Annals of Carnegie Museum: 62: 191-228.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Dávalos, L. M. and Eriksson, R. 2003. New and noteworthy records from ten Jamaican bat caves. Caribbean Journal of Science: 39: 140-144.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ramírez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relación nomenclatural de los Mamíferos terrestres de México. Acta Zoológica Mexicana (n. s.): 21(1): 21-82; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.; Ziegler, T., Unger, J., Feiler, A. and Lehr, E. 2002. The First Gran Chaco Expedition of the Museum für Tierkunde Dresden: records of amphibians, reptiles and mammals from the Dry Chaco of Paraguay (Amphibia, Reptilia, Mammalia). Faunistiche Abhandlungen Staatliches Museum für Tierkunde Dresden: 23: 219-238.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Patterson, B. D., Pacheco, V. and Solari, S. 1996. Distributions of bats along an elevational gradient in the Andes of south-eastern Peru. Journal of Zoology: 240: 637-658; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pedersen, S. C., Genoways, H. H., Morton, M. N., Johnson, J. W. and Courts, S. E. 2003. Bats of Nevis, northern Lesser Antilles. Acta Chiropterologica: 4: 251-267; Pedersen, S. C., Genoways, H. H., Morton, M. N., Kwiecinski, G. G. and Courts, S. E. 2005. Bats of St. Kitts (St. Christopher), northern Lesser Antilles, with comments regarding capture rates of Neotropical bats. Caribbean Journal of Science: 41: 744-760.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Vaughan, N. and Hill, J. E. 1996. Bat (Chiroptera) diversity and abundance in banana plantations and rain forest, and three new records for St. Vincent, Lesser Antilles. Mammalia: 60: 441-447.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Goodwin, G. G. and Greenhall, A. M. 1961. A review of the bats of Trinidad and Tobago: descriptions, rabies infections, and ecology. Bulletin of the American Museum of Natural History: 122: 187-302.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Anon. 2001. Nómina Oficial de Vertebrados Tetrápodos de la Fauna Silvestre. http://www.mgap.gub.uy/Renare/AreasProtegidasyFauna/Fauna/NominaOficialdeVertebrados.htm . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11550,"full_name":"Sterna dougallii","author_year":"Montagu, 1813","common_names":[{"lang":"Czech","names":"Rybák rajský","convention_language":false,"id":null},{"lang":"Danish","names":"Dougalisterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Visdief, Dougalls Stern","convention_language":false,"id":null},{"lang":"English","names":"Roseate Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruusutiira, Kalatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne de Dougall","convention_language":true,"id":null},{"lang":"German","names":"Rosenseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rózsás csér, Küszvágó csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna di Dougall, Sterna del Dougall, Sterna comune","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa rzeczna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-comum, Andorinha-do-mar-rósea","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán rosado, Charrán Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Fisktärna, Rosentärna","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skakuj, M. and Stawarczyk, T. 1997. Five new bird species in Bahrain. Sandgrouse: 19: 39-44.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Spencer, R. and Hudson, R. 1978. Report on bird-ringing for 1976. Ringing \u0026 Migration: 1: 189-252.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and Rocamora, G. 2007. New breeding records of Roseate Tern \u003Ci\u003ESterna dougallii\u003C/i\u003E in Seychelles. Bulletin of the African Bird Club: 14: 62-67.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Atlantic population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11551,"full_name":"Tursiops aduncus","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"English","names":"Indo-Pacific Bottle-nosed Dolphin, Indian Ocean Bottlenose Dolphin, Long-beaked Bottlenose Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Grand dauphin de l'océan Indien","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín mular del Oceano Indico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Kahn, B. 2006. Ocean Cetaceans and associated habitats. In: Green, A., Lkani, P., Atu, W., Ramohia, P., Thomas, P. \u0026 Almany, J. (Eds.) Solomon Islands Marine Assessment: Technical report of the survey conducted May 13 to June 17, 2004 TNC Pacific Island Countries Report No. 1/06.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Reisinger, R.R. and Karczmarski, L. 2009. Population size estimate of Indo-Pacific bottlenose dolphins in the Algoa Bay region, South Africa. Marine Mammal Science: 26: 86-97.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Tursiops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Arafura/Timor Sea populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11552,"full_name":"Phoenicurus phoenicurus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Rehek zahradní","convention_language":false,"id":null},{"lang":"Danish","names":"Rødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Gekraagde Roodstaart","convention_language":false,"id":null},{"lang":"English","names":"Redstart, Common Redstart","convention_language":true,"id":null},{"lang":"Finnish","names":"Leppälintu","convention_language":false,"id":null},{"lang":"French","names":"Rougequeue à front blanc","convention_language":true,"id":null},{"lang":"German","names":"Gartenrotschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti rozsdafarkú","convention_language":false,"id":null},{"lang":"Italian","names":"codirosso","convention_language":false,"id":null},{"lang":"Polish","names":"Pleszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabirruivo-de-tedta-branca, Rabirruivo-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya Gorikhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Colirrojo Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Riddell, L. 2001. Eurasian Redstart at Lake Chivero. Honeyguide: 47: 189-190.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11553,"full_name":"Cephalorhynchus commersonii","author_year":"(Lacépède, 1804)","common_names":[{"lang":"Dutch","names":"Commersons Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Commerson's Dolphin, Piebald Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Commerson","convention_language":true,"id":null},{"lang":"Spanish","names":"Tunina overa, Jacobita","convention_language":true,"id":null},{"lang":"Swedish","names":"skäckig delfin, Commersons delfin","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brown, S. G. 1988. Records of Commerson's dolphin (\u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E) in South American waters and around South Georgia. Rep. Int. Whaling Comm. Spec. Issue: 9: 85-92.; Coscarella, M.A., Gowans, S., Pedraza, S.N. and Crespo, E.A. 2011. Influence of body size and ranging patterns on delphinid sociality: associations among Commerson's dolphins. Journal of Mammalogy: 92: 544-551.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Robineau, D. 1985. Données préliminaires sur la répartition du dauphin de Commerson \u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E aux iles Kerguelen, en particulier dans le Golfe du Morbihan. Biological Conservation: 31: 85-93.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.; Robineau, D., Goodall, R. N. P., Pichler, F. and Baker, C. S. 2007. Description of a new subspecies of Commerson's dolphin, \u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E (Lacépède, 1804), inhabiting the coastal waters of the Kerguelen Islands. Mammalia: 71: 172-180.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Brown, S. G. 1988. Records of Commerson's dolphin (\u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E) in South American waters and around South Georgia. Rep. Int. Whaling Comm. Spec. Issue: 9: 85-92.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"South American population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11554,"full_name":"Monticola saxatilis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Stendrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Rode Rotslijster","convention_language":false,"id":null},{"lang":"English","names":"Rock Thrush, Rufous-tailed Rock-Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivikkorastas","convention_language":false,"id":null},{"lang":"French","names":"Monticole de roche, Monticole merle-de-roche","convention_language":true,"id":null},{"lang":"German","names":"Steinrötel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kövirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Codirossone","convention_language":false,"id":null},{"lang":"Polish","names":"nagórnik (drozd skalny), Nagórnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-das-rochas","convention_language":false,"id":null},{"lang":"Russian","names":"Pyostry Kamenny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Roquero Rojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Stentrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11555,"full_name":"Charadrius asiaticus","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Kulík kaspický","convention_language":false,"id":null},{"lang":"Danish","names":"Kaspisk Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Kaspische Plevier","convention_language":false,"id":null},{"lang":"English","names":"Caspian Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaspiantylli","convention_language":false,"id":null},{"lang":"French","names":"Pluvier asiatique","convention_language":true,"id":null},{"lang":"German","names":"Wermutregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kaspi lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere asiatico","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-asiático","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito Asiático Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Kaspisk pipare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eupoda asiatica","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11556,"full_name":"Plecotus kolombatovici","author_year":"Dulic, 1980","common_names":[{"lang":"English","names":"Kolombatovic's Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11557,"full_name":"Tadorna cana","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"South African Shelduck","convention_language":true,"id":null},{"lang":"French","names":"Tadorne à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Tarro Sudafricano","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas cana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11558,"full_name":"Dromas ardeola","author_year":"Paykull, 1805","common_names":[{"lang":"Danish","names":"Krabbeæder","convention_language":false,"id":null},{"lang":"English","names":"Crab Plover, Crab-plover","convention_language":true,"id":null},{"lang":"French","names":"Drome ardéole","convention_language":true,"id":null},{"lang":"Spanish","names":"Dromas","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Chiozzi, G. and De Marchi, G. 2003. Confirmed breeding record of the Crab plover \u003Ci\u003EDromas ardeola\u003C/i\u003E in Eritrea. Bulletin of the British Ornithologists' Club: 123: 46-47.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Dromadidae","genus_name":"Dromas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11559,"full_name":"Larus saundersi","author_year":"(Swinhoe, 1871)","common_names":[{"lang":"English","names":"Saunders's Gull, Chinese Black-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Chroicocephalus saundersi","author_year":"Swinhoe, 1871"}],"cms_listings":[],"cms_instruments":[]},{"id":11560,"full_name":"Sylvia nisoria","author_year":"(Bechstein, 1795)","common_names":[{"lang":"Danish","names":"Høgesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sperwergrasmus","convention_language":false,"id":null},{"lang":"English","names":"Barred Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjokertuu, Kirjokerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette épervière","convention_language":true,"id":null},{"lang":"German","names":"Sperbergrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Karvalyposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigia padovana, Bigia padovona","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-gavião","convention_language":false,"id":null},{"lang":"Russian","names":"Yastrebinaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca gavilana","convention_language":true,"id":null},{"lang":"Swedish","names":"Höksångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11561,"full_name":"Turdus hortulorum","author_year":"Sclater, 1863","common_names":[{"lang":"English","names":"Grey-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à dos gris","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Gore, M. E. J. and Won, P-O. 1971. The birds of Korea. Royal Asiatic Society, Korea Branch, in conjunction with Taiwan Publishing Co. Seoul.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11564,"full_name":"Calidris canutus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák rezavý","convention_language":false,"id":null},{"lang":"Danish","names":"Islandsk Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kanoetstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Red Knot, Knot","convention_language":true,"id":null},{"lang":"Finnish","names":"Isosirri","convention_language":false,"id":null},{"lang":"French","names":"Bècasseau maubèche, Bécasseau maubèche","convention_language":true,"id":null},{"lang":"German","names":"knutt","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus rdzawy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Seixoeira","convention_language":false,"id":null},{"lang":"Russian","names":"Islandsky Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Gordo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kustsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pinchuk, P. V., Karlionova, N. V., Bogdanovich, I. A. and Zhuraulinou, D. V. 2004. [Red Knot (\u003Ci\u003ECalidris canutus\u003C/i\u003E) - a new species in Belarusian avifauna.]. Subbuteo: 7: 32-34.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Cramp, S. and Simmons, K. E. L. 1983. The Birds of the Western Palearctic. Vol. III. Waders to Gulls. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Tringa canutus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11565,"full_name":"Larus genei","author_year":"Brème, 1839","common_names":[{"lang":"Czech","names":"Racek tenkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Tyndnæbbet måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Dunbekmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Slender-billed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaitanokkalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland railleur","convention_language":true,"id":null},{"lang":"German","names":"Dünnschnabelmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vékonycsórú sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano roseo","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa cienkodzioba","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-bico-fino, Gaviota-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Picofina","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad mås, Långnäbbad mås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11566,"full_name":"Phylloscopus bonelli","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Bjergløvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bergfluiter","convention_language":false,"id":null},{"lang":"English","names":"Bonelli's Warbler, Western Bonelli's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Vuoriuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot de Bonelli","convention_language":true,"id":null},{"lang":"German","names":"Berglaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bonelli-füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí bianco","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa de Bonelli","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Papialbo","convention_language":true,"id":null},{"lang":"Swedish","names":"Bergsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11567,"full_name":"Rallus caerulescens","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Kaffir Rail, African Rail","convention_language":true,"id":null},{"lang":"French","names":"Râle bleuâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Rascón Cafre","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Rallus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11568,"full_name":"Myotis capaccinii","author_year":"(Bonaparte, 1837)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu gishtgjate","convention_language":false,"id":null},{"lang":"Croatian","names":"Dugonogi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr dlouhonohý","convention_language":false,"id":null},{"lang":"Danish","names":"Capaccinis flagermus, Capaccinnis flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Capaccini's vleermuis, Capaccini-vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Long-fingered Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pitkäsormisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin de Capaccini, Vespertilion de Capaccini","convention_language":true,"id":null},{"lang":"German","names":"Langfußfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hosszúlábú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio di Capaccini","convention_language":false,"id":null},{"lang":"Norwegian","names":"Capacciniflaggermus","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cu-degete-lungi","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago patudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Capaccinis fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Atallah, S. I. 1970. Bats of the genus \u003Ci\u003EMyotis\u003C/i\u003E (Family Vespertilionidae) from Lebanon. Univ. Connecticut Occas. Pap.: 1: 205-212.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Aihartza, J. R., Goiti, U., Almenar, D. and Garin, I. 2003. Evidences of piscivory by \u003Ci\u003EMyotis capaccinii\u003C/i\u003E (Bonaparte, 1837) in the Southern Iberian Peninsula. Acta Chiropterologica: 5(2): 193-198; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11569,"full_name":"Turdus torquatus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kos horský","convention_language":false,"id":null},{"lang":"Danish","names":"Ringdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Beflijster","convention_language":false,"id":null},{"lang":"English","names":"Ring Ouzel","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelrastas","convention_language":false,"id":null},{"lang":"French","names":"Merle à plastron","convention_language":true,"id":null},{"lang":"German","names":"Ringdrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Merlo dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-de-peito-branco","convention_language":false,"id":null},{"lang":"Russian","names":"Belozoby Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Mirlo Capiblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Ringtrast","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11570,"full_name":"Calidris alba","author_year":"(Pallas, 1764)","common_names":[{"lang":"Dutch","names":"Drieteenstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Sanderling","convention_language":true,"id":null},{"lang":"Finnish","names":"Pulmussirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau sanderling","convention_language":true,"id":null},{"lang":"German","names":"Sanderling","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fenyérfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello tridattilo","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sandløper","convention_language":false,"id":null},{"lang":"Polish","names":"Piaskowiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-sanderlingo","convention_language":false,"id":null},{"lang":"Russian","names":"Peschanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Tridáctilo","convention_language":true,"id":null},{"lang":"Swedish","names":"Sandlöpare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Webb, H. P. 1992. Field observations of the birds of Santa Isabel, Solomon Islands. Emu: 92: 52-57.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Crocethia alba","author_year":"(Pallas, 1764)"},{"full_name":"Tringa alba","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11571,"full_name":"Berardius bairdii","author_year":"Stejneger, 1883","common_names":[{"lang":"Dutch","names":"Noordelijke Zwarte Butskop","convention_language":false,"id":null},{"lang":"English","names":"Baird's Beaked Whale, Northern Four-toothed Whale, Giant Bottle-nosed Whale","convention_language":true,"id":null},{"lang":"French","names":"Bérardien de Baird","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Baird","convention_language":true,"id":null},{"lang":"Swedish","names":"Bairds näbbval, nordlig jätteflasknosval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Berardius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11572,"full_name":"Tringa stagnatilis","author_year":"(Bechstein, 1803)","common_names":[{"lang":"Czech","names":"Vodouš štíhlý","convention_language":false,"id":null},{"lang":"Danish","names":"Damklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Poelruiter","convention_language":false,"id":null},{"lang":"English","names":"Marsh Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Lampiviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier stagnatile","convention_language":true,"id":null},{"lang":"German","names":"Teichwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tavi cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Albastrello","convention_language":false,"id":null},{"lang":"Polish","names":"brodziec plawny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-verde-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Fino","convention_language":true,"id":null},{"lang":"Swedish","names":"Dammsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Totanus stagnatilis","author_year":"Bechstein, 1803"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11573,"full_name":"Barbastella barbastellus","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Barbastela","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr cerný","convention_language":false,"id":null},{"lang":"Danish","names":"Bredøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Mopsvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Western Barbastelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Laikõrv, Euroopa laikõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Mopsilepakko","convention_language":false,"id":null},{"lang":"French","names":"Barbastelle d'Europe, Barbastelle","convention_language":true,"id":null},{"lang":"German","names":"Mopsfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Piszedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Breiðeyrnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Barbastello","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bredøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Mopek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-negro","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cârn","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de bosque","convention_language":true,"id":null},{"lang":"Swedish","names":"bredörad fladdermus, Grönling, Barbastell","convention_language":false,"id":null}],"distributions":[{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Fonderflick, J., Grosselet, M. and Pade, P. 1999. Capture méridionale de la barbastelle d'Europe (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) et de la pipistrelle commune (\u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E) au Maroc.]. Mammalia: 62: 610-611.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.; Juste, J., Ibáñez, C., Trujillo, D., Muñoz, J. and Ruedi, M. 2003. Phylogeography of Barbastelle bats (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) in the western Mediterranean and the Canary Islands. Acta Chiropterologica: 5(2): 165-175","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Palmeirim, J. M. 1990. Bats of Portugal: zoogeography and systematics. University of Kansas Museum of Natural History, Miscellaneous Publications: 82: 53 pp.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Juste, J., Ibáñez, C., Trujillo, D., Muñoz, J. and Ruedi, M. 2003. Phylogeography of Barbastelle bats (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) in the western Mediterranean and the Canary Islands. Acta Chiropterologica: 5(2): 165-175; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11574,"full_name":"Charadrius leschenaultii","author_year":"Lesson, 1826","common_names":[{"lang":"Czech","names":"Kulík pouštní","convention_language":false,"id":null},{"lang":"Danish","names":"Sylvia","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijnplevier","convention_language":false,"id":null},{"lang":"English","names":"Greater Sand-Plover, Large Sand Dotterel, Greater Sandplover","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkotylli","convention_language":false,"id":null},{"lang":"French","names":"Gravelot de Leschenault, Pluvier de Leschenault, Pluvier du désert","convention_language":true,"id":null},{"lang":"German","names":"Wüstenregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere di Leschenault","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka pustynna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-mongol-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Mongol Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökenpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11575,"full_name":"Arenaria interpres","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stenvender","convention_language":false,"id":null},{"lang":"Dutch","names":"Steenloper","convention_language":false,"id":null},{"lang":"English","names":"Turnstone, Ruddy Turnstone","convention_language":true,"id":null},{"lang":"Finnish","names":"Karikukko","convention_language":false,"id":null},{"lang":"French","names":"Tournepierre à collier","convention_language":true,"id":null},{"lang":"German","names":"Steinwälzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kóforgató","convention_language":false,"id":null},{"lang":"Italian","names":"Voltapietre","convention_language":false,"id":null},{"lang":"Norwegian","names":"Steinvender","convention_language":false,"id":null},{"lang":"Polish","names":"Kamusznik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rola-do-mar","convention_language":false,"id":null},{"lang":"Russian","names":"Kamnesharka","convention_language":false,"id":null},{"lang":"Spanish","names":"Vuelvepiedras común","convention_language":true,"id":null},{"lang":"Swedish","names":"Roskarl","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herrera, M. 2004. Primer registro de \u003Ci\u003EArenaria interpres\u003C/i\u003E para Bolivia. Cotinga: 21: 72-73.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guyra Paraguay. 2004. Lista comentada de las Aves de Paraguay / Annotated checklist of the Birds of Paraguay. Asociación Guyra Paraguay. Asunción, Paraguay.; Lesterhuis, A. J. and Clay, R. P. 2001. First record of a Ruddy Turnstone \u003Ci\u003EArenaria interpres\u003C/i\u003E in Paraguay. Wader Study Group Bulletin: 95: 68.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M. and Sharpe, C. J. 1999. Range extensions and notes on the status of little-known species from Venezuela. Bulletin of the British Ornithologists' Club: 119: 38-47.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Arenaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa interpres","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11576,"full_name":"Emberiza aureola","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Strnad obojkový","convention_language":false,"id":null},{"lang":"Danish","names":"Gulbrystet Værling","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilgengors, Wilgegors","convention_language":false,"id":null},{"lang":"English","names":"Yellow-breasted Bunting","convention_language":true,"id":null},{"lang":"Finnish","names":"Kultasirkku","convention_language":false,"id":null},{"lang":"French","names":"Bruant auréole","convention_language":true,"id":null},{"lang":"German","names":"Weidenammer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti sármány","convention_language":false,"id":null},{"lang":"Italian","names":"Zigolo dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Escrevedeira-aureolada","convention_language":false,"id":null},{"lang":"Russian","names":"Dubrovnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Escribano Aureolado","convention_language":true,"id":null},{"lang":"Swedish","names":"Gyllensparv","convention_language":false,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Skakuj, M. and Stawarczyk, T. 1997. Five new bird species in Bahrain. Sandgrouse: 19: 39-44.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Emberizidae","genus_name":"Emberiza","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11577,"full_name":"Charadrius mongolus","author_year":"Pallas, 1776","common_names":[{"lang":"Dutch","names":"Kleine Woestijnplevier","convention_language":false,"id":null},{"lang":"English","names":"Mongolian Plover, Lesser Sand Plover, Lesser Sandplover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Mongolie","convention_language":true,"id":null},{"lang":"Polish","names":"Sieweczka mongolska","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Mongol chico","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Davidson, P. and Kirwan, G. M. 1997. Around the region. Sandgrouse: 19: 76-80.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11579,"full_name":"Ficedula mugimaki","author_year":"(Temminck, 1835)","common_names":[{"lang":"Dutch","names":"Mugimakivliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Mugimaki Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche mugimaki","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11580,"full_name":"Aquila heliaca","author_year":"Savigny, 1809","common_names":[{"lang":"Czech","names":"Orel královský","convention_language":false,"id":null},{"lang":"Danish","names":"Kejserørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Keizerarend","convention_language":false,"id":null},{"lang":"English","names":"Imperial Eagle, Eastern Imperial Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Keisarikotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle impérial","convention_language":true,"id":null},{"lang":"German","names":"Kaiseradler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Parlagi sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila imperiale","convention_language":false,"id":null},{"lang":"Polish","names":"Cesarski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-imperial","convention_language":false,"id":null},{"lang":"Russian","names":"Mogilnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila imperial oriental, Águila imperial","convention_language":true,"id":null},{"lang":"Swedish","names":"Kejsarörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Petrov, T. et al. 1994. Status of the Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E Savigny) in Bulgaria in the period between 1890 and 1993. In: Meyburg and Chancellor (eds.) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Chavko, J., Danko, S., Obuch, J. and Mihok, J. 2007. The food of the imperial eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Slovakia. Slovak Raptor Journal: 1: 1-18.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hallmann, B. 1994. The decline of the Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Greece. In: Meyburg and Chancellor (eds) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Bagyura, J., Szitta, T., Haraszthy, L., Firmánszky, G., Viszló, L., Kovács, A., Demeter, I. and Horváth, M. 2002. Population increase of Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Hungary between 1980 and 2000. Aquila : 107-108: 133-144.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Golovushkin, M. I. and Osipova, M. A. 1988. [Nesting of Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in the region south to Baikal.]. Ornitologiya: 23: 205-206.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Ryabtsev, V.V. and Katzner, T.E. 2007. Severe declines of Eastern Imperial Eagle \u003Ci\u003EAquila heliaca\u003C/i\u003E populations in the Baikal region, Russia: a modern and historical perspective. Bird Conservation International: 17: 197-209.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. and Porter, R. F. 1985. Status of birds of prey in Turkey. Bulletin of the World Working Group on Birds of Prey: 2: 52-56.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11581,"full_name":"Catharacta skua","author_year":"Brünnich, 1764","common_names":[{"lang":"Danish","names":"Storkjove","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Jager","convention_language":false,"id":null},{"lang":"English","names":"Great Skua","convention_language":true,"id":null},{"lang":"French","names":"Grand Labbe","convention_language":true,"id":null},{"lang":"Polish","names":"Wydrzyk wielki (skua)","convention_language":false,"id":null},{"lang":"Spanish","names":"Págalo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"storlabb","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1988. Notes on some birds of northeastern Brazil (3). Bulletin of the British Ornithologists' Club: 108: 75-79.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Stercorariidae","genus_name":"Catharacta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Stercorarius skua","author_year":"(Brünnich, 1764)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11582,"full_name":"Alectrurus risora","author_year":"(Vieillot, 1824)","common_names":[{"lang":"English","names":"Strange-tailed Tyrant","convention_language":true,"id":null},{"lang":"French","names":"Moucherolle à queue large","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ericson, P. G. P. and Amarillo, L. A. 1997. First observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 117: 60-67.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Alectrurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Yetapa risora","author_year":"(Vieillot, 1824)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11584,"full_name":"Procellaria westlandica","author_year":"Falla, 1946","common_names":[{"lang":"English","names":"Westland Petrel, Westland Black Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin du Westland","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de Westland","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria parkinsoni westlandica","author_year":"G. R. Gray, 1862"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11585,"full_name":"Phoebastria immutabilis","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Laysan Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros de Laysan","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de Laysan","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea immutabilis","author_year":"Rothschild, 1893"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea immutabilis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11586,"full_name":"Larus argentatus","author_year":"Pontoppidan, 1763","common_names":[{"lang":"Danish","names":"Sølvmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Zilvermeeuw","convention_language":false,"id":null},{"lang":"English","names":"European Herring Gull, Herring Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland argenté","convention_language":true,"id":null},{"lang":"German","names":"Silbermöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ezüstsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano reale","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa srebrzysta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-argêntea","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Argéntea","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråtrut","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus smithsonianus","author_year":"Coues, 1862"},{"full_name":"Larus vegae","author_year":"Palmen, 1887"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11587,"full_name":"Pelecanoides garnotii","author_year":"(Lesson, 1828)","common_names":[{"lang":"English","names":"Peruvian Diving-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffinure de Garnot","convention_language":true,"id":null},{"lang":"German","names":"Sturmvogel","convention_language":false,"id":null},{"lang":"Spanish","names":"Potoyunco Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Pelecanoididae","genus_name":"Pelecanoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Puffinuria garnotii","author_year":"Lesson, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11589,"full_name":"Podiceps nigricollis","author_year":"Brehm, 1831","common_names":[{"lang":"Danish","names":"Sorthalset Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Geoorde Fuut","convention_language":false,"id":null},{"lang":"English","names":"Eared Grebe, Black-necked Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakaulauikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe à cou noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzhalstaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketenyakú vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Zausznik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Chernosheynaya Poganka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín cuellinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthalsad dopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Williams, E. 1991. Black-necked Grebe \u003Ci\u003EPodiceps nigricollis\u003C/i\u003E, new to Cameroon. Malimbus: 13: 40.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Lamarche, B. 1988. Liste commentée des oiseaux de Mauritanie. Etude Sahariennes et Ouest-Africaines: 1(4):1-162 .","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Podiceps caspicus","author_year":"(Hablitzl, 1783)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11591,"full_name":"Somateria fischeri","author_year":"(Brandt, 1847)","common_names":[{"lang":"Danish","names":"Brilleederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Brileider","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Eider","convention_language":true,"id":null},{"lang":"French","names":"Eider à lunettes","convention_language":true,"id":null},{"lang":"Russian","names":"Ochkovaya Gaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider de anteojos","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögonejder","convention_language":false,"id":null}],"distributions":[{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula fischeri","author_year":"Brandt, 1847"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11592,"full_name":"Diomedea sanfordi","author_year":"Murphy, 1917","common_names":[{"lang":"English","names":"Northern Royal Albatross","convention_language":true,"id":null}],"distributions":[{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea epomophora\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11593,"full_name":"Zapornia pusilla","author_year":"(Pallas, 1776)","common_names":[{"lang":"Danish","names":"Dværgrørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinst Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Baillon's Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiöhuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette de Baillon","convention_language":true,"id":null},{"lang":"German","names":"Zwergsumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpe vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Schiribilla grigiata","convention_language":false,"id":null},{"lang":"Polish","names":"Karliczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela chica","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgsumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"King, J. M. B. 2003. Baillon's Crake \u003Ci\u003EPorzana pusilla\u003C/i\u003E, new to The Gambia, with notes on seven other species. Malimbus: 25: 59-61.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Porzana pusilla","author_year":"(Pallas, 1776)"},{"full_name":"Rallus pusillus","author_year":"Pallas, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as Porzana pusilla intermedia.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11594,"full_name":"Lontra felina","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Marine Otter","convention_language":true,"id":null},{"lang":"French","names":"Loutre De Mer","convention_language":true,"id":null},{"lang":"Spanish","names":"Chungungo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Castilla, J. C. 1982. Nuevas observaciones sobre conducta, ecologia y densidad de \u003Ci\u003ELutra felina\u003C/i\u003E (Molina 1782) (Carnivora: Mustelidae) en Chile. Publicaciones Ocasionales del Museo Nacional de Historia Natural, Santiago: 38: 197-206.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Rundel, P.W., Dillon, M.O. and Palma, B. 1996. Flora and vegetation of Pan de Azucar National Park in the Atacama desert of northern Chile. Gayana Botanic: 53: 295-315.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Mustelidae","genus_name":"Lontra","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ELutra felina\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11595,"full_name":"Pseudoscaphirhynchus hermanni","author_year":"(Kessler, 1877)","common_names":[{"lang":"English","names":"Little Shovelnose Sturgeon, Small Amu-Dar Shovelnose Sturgeon, Dwarf Sturgeon, Little Amu-Darya Shovelnose","convention_language":true,"id":null},{"lang":"Polish","names":"Nibylopstons amu-daryjski","convention_language":false,"id":null},{"lang":"Swedish","names":"dvärgstör","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.; Petr, T. 1999. Coldwater fish and fisheries in Afghanistan. In: Fish and Fisheries at higher altitudes: Asia. FAO technichal paper No. 385.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11596,"full_name":"Gallinula angulata","author_year":"Sundevall, 1851","common_names":[{"lang":"English","names":"Lesser Moorhen","convention_language":true,"id":null},{"lang":"French","names":"Gallinule africaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Gallineta chica","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Haavisto, S. and Strand, A. 2000. The first Lesser Moorhen \u003Ci\u003EGallinula angulata\u003C/i\u003E in Egypt and the Western Palearctic. Sandgrouse: 22: 137-139.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Gallinula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11598,"full_name":"Addax nasomaculatus","author_year":"(de Blainville, 1816)","common_names":[{"lang":"Danish","names":"addax eller mendesantilope","convention_language":false,"id":null},{"lang":"Dutch","names":"Addax of Mendes-antiloop","convention_language":false,"id":null},{"lang":"English","names":"Addax","convention_language":true,"id":null},{"lang":"Finnish","names":"Mendesinantilooppi","convention_language":false,"id":null},{"lang":"French","names":"Addax, Addax à nez tacheté, Antilope blanche","convention_language":true,"id":null},{"lang":"German","names":"Mendesantilope","convention_language":false,"id":null},{"lang":"Italian","names":"Antilope addax","convention_language":false,"id":null},{"lang":"Spanish","names":"Addax","convention_language":true,"id":null},{"lang":"Swedish","names":"addaxantilop, mendesantilop","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Flower, S. S. 1932. Notes on the recent mammals of Egypt, with a list of the species recorded from that kingdom. Proceedings of the Zoological Society of London: 1932: 369-450.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dupuy, A. 1971. SOS pour la conservation de la nature en Mauretanie. Science et Nature: 108: 31-34.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Trotignon, J. 1975. Le status et la conservation de l'addax et de l'oryx et de la faune associée en Mauritanie. Report to IUCN, Morges. Unpublished. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Newby, J. 1975. The Addax and the Scimitar-horned Oryx in Niger. Report to IUCN, Morges. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Lamprey, H. 1975. Report on the desert encroachment reconnaissance in northern Sudan. Report to IUCN and UNEP. ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Addax","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11599,"full_name":"Rynchops flavirostris","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"African Skimmer","convention_language":true,"id":null},{"lang":"French","names":"Bec-en-ciseaux d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rayador Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Rynchops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11601,"full_name":"Charadrius alexandrinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Hvidbrystet Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Strandplevier","convention_language":false,"id":null},{"lang":"English","names":"Kentish Plover, Snowy Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustajalkatylli","convention_language":false,"id":null},{"lang":"French","names":"Gravelot à collier interrompu, Pluvier à collier interrompu","convention_language":true,"id":null},{"lang":"German","names":"Seeregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Széki lile","convention_language":false,"id":null},{"lang":"Italian","names":"Fratino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hvitbrystlo","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka morska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-de-coleira-interrompida","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo patinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartbent strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11602,"full_name":"Ixobrychus sturmii","author_year":"(Wagler, 1827)","common_names":[{"lang":"Dutch","names":"Afrikaanse Woudaapje","convention_language":false,"id":null},{"lang":"English","names":"Dwarf Bittern","convention_language":true,"id":null},{"lang":"French","names":"Blongios de Sturm","convention_language":true,"id":null},{"lang":"Spanish","names":"Avetorillo plomizo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ixobrychus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea sturmii","author_year":"Wagler, 1827"},{"full_name":"Ardeirallus sturmii","author_year":"(Wagler, 1827)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11604,"full_name":"Platanista gangetica","author_year":"(Roxburgh, 1801)","common_names":[{"lang":"English","names":"Ganges Susu, Ganges River Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Plataniste du Gange, Sousou","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín del Ganges","convention_language":true,"id":null},{"lang":"Swedish","names":"gangesdelfin, susu","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Smith, B. D., Ahmed, B., Ali, M. E. and Braulik, G. 2001. Status of the Ganges river dolphin or shushuk \u003Ci\u003EPlatanista gangetica\u003C/i\u003E in Kaptai Lake and the southern rivers of Bangladesh. Oryx: 35: 61-72.; Smith, B.D., Diyan, M.A.A., Mansur, R.M., Mansur E.F. and Ahmed B. 2010. Identification and channel characteristics of cetacean hotspots in waterways of the eastern Sundarbans mangrove forest, Bangladesh. Oryx: 44: 241-247.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Bashir, T., Khan, A., Gautam, P. and Behera, S.K. 2010. Abundance and prey availability assessment of Ganges River Dolphin (\u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E) in a stretch of Upper Ganges River, India. Aquatic Mammals: 36: 19-26.; Kelkar, N., Krishnaswamy, J., Choudhary, S. and Sutaria, D. 2010. Coexistence of fisheries with river dolphin conservation. Conservation Biology: 24: 1130-1140.; Nair, A.K. 2009. The status and distribution of major aquatic fauna in the National Chambal Gharial Sanctuary in Rajasthan with special reference to the Gangetic Dolphin \u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E (Cetartiodactyla: Platanistidae). Journal of Threatened Taxa: 1: 141-146.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Pilleri, G. and Tagliavini, F. 1982. Observations on the ecology and distribution of the Susu (\u003Ci\u003EPlatanista gangetica\u003C/i\u003E) in Nepalese rivers. Investigations on Cetacea: 13: 257-261.; Smith, B. D. 1993. 1990 status and conservation of the Ganges River Dolphin \u003Ci\u003EPlatanista gangetica\u003C/i\u003E in the Karnali river, Nepal. Biological Conservation: 66: 159-169.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Platanistidae","genus_name":"Platanista","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPlatanista gangetica\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11605,"full_name":"Acrocephalus bistrigiceps","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Black-browed Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle de Schrenck","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11606,"full_name":"Turdus unicolor","author_year":"Tickell, 1833","common_names":[{"lang":"Dutch","names":"Tickells Lijster","convention_language":false,"id":null},{"lang":"English","names":"Indian Grey Thrush, Tickell's Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle unicolore","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11607,"full_name":"Vespertilio murinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Lakuriqnate vespertile","convention_language":false,"id":null},{"lang":"Croatian","names":"Dvobojni šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr pestrý","convention_language":false,"id":null},{"lang":"Danish","names":"Skimmelflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Tweekleurige vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Particoloured Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suur-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kimolepakko","convention_language":false,"id":null},{"lang":"French","names":"Sérotine bicolore","convention_language":true,"id":null},{"lang":"German","names":"Zweifarbfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehértorkú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Serotino bicolore","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Dvispalvis plikšnys","convention_language":false,"id":null},{"lang":"Norwegian","names":"Skimmelflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Mroczek posrebrzany","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-bicolor","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier pestrý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago bicolor","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråskimlig fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Forget, F. 2001. La serotine bicolore (\u003Ci\u003EVespertilio murinus\u003C/i\u003E), une nouvelle espèce de mammifère en region wallonne. Aves Contact: 37: 8-9.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2003. The presence of \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E and \u003Ci\u003EVespertilio murinus\u003C/i\u003E in the Croatian bat fauna confirmed. Natura Croatica: 12(2): 55-62","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Mammals of Serbia - checklist. http://www.wild-serbia.com/pdf/Sisari\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Melnikov, A. V. 1981. [On the hibernation of the particolored bat (\u003Ci\u003EVespertilio murinus\u003C/i\u003E L.).]. Byulleten' Mosk. Obschch. Ispyt. Prir. (Otd. Biol.): 86: 37.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Galan, C. 1997. Fauna de quiropteros del Pais Vasco. Munibe (Ciencias Naturales - Natur Zientziak): 49: 77-100.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Vespertilio","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11608,"full_name":"Phoenicurus ochruros","author_year":"(Gmelin, 1774)","common_names":[{"lang":"Czech","names":"Rehek domácí","convention_language":false,"id":null},{"lang":"Danish","names":"Husrødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Roodstaart","convention_language":false,"id":null},{"lang":"English","names":"Black Redstart","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustaleppälintu","convention_language":false,"id":null},{"lang":"French","names":"Rougequeue noir","convention_language":true,"id":null},{"lang":"German","names":"Hausrotschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Házi rozsdafarkú","convention_language":false,"id":null},{"lang":"Italian","names":"Codirosso spazzacamino","convention_language":false,"id":null},{"lang":"Polish","names":"Kopciuszek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabirruivo-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Colirrojo Tizón","convention_language":true,"id":null},{"lang":"Swedish","names":"Svart rödstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Jantunen, J. 1996. Black Redstart on Ping Chau: the first record for Hong Kong. Hong Kong Bird Report 1996: 116-118.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11609,"full_name":"Puffinus mauretanicus","author_year":"Lowe, 1921","common_names":[{"lang":"English","names":"Balearic Shearwater","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela balear","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Puffinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"27/04/2012","name":"ACAP"}]},{"id":11610,"full_name":"Tringa totanus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Vodouš rudonohý","convention_language":false,"id":null},{"lang":"Danish","names":"Rødben","convention_language":false,"id":null},{"lang":"Dutch","names":"Tureluur","convention_language":false,"id":null},{"lang":"English","names":"Redshank, Common Redshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Punajalkaviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier gambette","convention_language":true,"id":null},{"lang":"German","names":"Rotschenkel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Piroslábú cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Pettegola","convention_language":false,"id":null},{"lang":"Polish","names":"Krwawodziób","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-vermelha-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödbena","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax totanus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11611,"full_name":"Sousa teuszii","author_year":"(Kükenthal, 1892)","common_names":[{"lang":"English","names":"Atlantic Humpbacked Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin à bosse de l'Atlantique","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo africano, Delfín blanco africano","convention_language":true,"id":null},{"lang":"Swedish","names":"kamerundelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Sequeira, M. and Reiner, F. 1992. First record of an Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E Kukenthal, 1892 (Cetacea; Delphinidae) in Guinea-Bissau. Mammalia: 56: 311-313.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sousa","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11612,"full_name":"Grus grus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Common Crane, Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Kurki","convention_language":false,"id":null},{"lang":"French","names":"Grue cendrée","convention_language":true,"id":null},{"lang":"German","names":"Kranich","convention_language":false,"id":null},{"lang":"Hungarian","names":"Daru","convention_language":false,"id":null},{"lang":"Italian","names":"Gru","convention_language":false,"id":null},{"lang":"Norwegian","names":"Trane","convention_language":false,"id":null},{"lang":"Portuguese","names":"Grou-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Trana","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Moreau, G. 1990. [A new breeding species for France: the Common Crane.]. Alauda: 58: 244.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11613,"full_name":"Anser fabalis","author_year":"(Latham, 1787)","common_names":[{"lang":"Czech","names":"Husa polní","convention_language":false,"id":null},{"lang":"Danish","names":"Sædgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Rietgans","convention_language":false,"id":null},{"lang":"English","names":"Bean Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Metsähanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie des moissons","convention_language":true,"id":null},{"lang":"German","names":"Saatgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vetési lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca granaiola","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sædgås","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-campestre","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar campestre","convention_language":true,"id":null},{"lang":"Swedish","names":"Sädgås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[{"full_name":"Anas fabalis","author_year":"Latham, 1787"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11614,"full_name":"Chloephaga hybrida","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Kelp Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette marine","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén caranca","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas hybrida","author_year":"Molina, 1782"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11615,"full_name":"Vanellus cinereus","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Grey-headed Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría ceniza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Microsarcops cinereus","author_year":"(Blyth, 1842)"},{"full_name":"Pluvianus cinereus","author_year":"Blyth, 1842"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11616,"full_name":"Phylloscopus neglectus","author_year":"Hume, 1870","common_names":[{"lang":"English","names":"Plain Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot modeste","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11617,"full_name":"Glareola ocularis","author_year":"Verreaux, 1833","common_names":[{"lang":"English","names":"Madagascar Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole malgache","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera Malgache","convention_language":true,"id":null}],"distributions":[{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11618,"full_name":"Cygnus cygnus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sangsvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilde Zwaan","convention_language":false,"id":null},{"lang":"English","names":"Whooper Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Laulujoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne chanteur, Cygne sauvage","convention_language":true,"id":null},{"lang":"German","names":"Singschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno selvatico","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sangsvane","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź krzykliwy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-bravo","convention_language":false,"id":null},{"lang":"Russian","names":"Лебедь-кликун","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne cantor","convention_language":true,"id":null},{"lang":"Swedish","names":"Sångsvan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"extinct","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas cygnus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11620,"full_name":"Dolichonyx oryzivorus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Bobolink","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Icteridae","genus_name":"Dolichonyx","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"25/07/2018","name":"Southern South American Grassland Birds"}]},{"id":11622,"full_name":"Orcaella heinsohni","author_year":"Beasley, Robertson \u0026 Arnold, 2005","common_names":[{"lang":"English","names":"Australian Snubfin Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Beasley, I., Robertson, K. M. and Arnold, P. 2005. Description of a new dolphin, the Australian Snubfin Dolphin \u003Ci\u003EOrcaella heinsohni\u003C/i\u003E sp. n. (Cetacea, Delphinidae). Marine Mammal Science: 21: 365-400.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Beasley, I., Robertson, K. M. and Arnold, P. 2005. Description of a new dolphin, the Australian Snubfin Dolphin \u003Ci\u003EOrcaella heinsohni\u003C/i\u003E sp. n. (Cetacea, Delphinidae). Marine Mammal Science: 21: 365-400.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcaella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EOrcaella brevirostris\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11623,"full_name":"Cettia cetti","author_year":"(Temminck, 1820)","common_names":[{"lang":"Danish","names":"Cettisanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Cetti's Zanger","convention_language":false,"id":null},{"lang":"English","names":"Cetti's Warbler, Cetti's Bush-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Silkkikerttu","convention_language":false,"id":null},{"lang":"French","names":"Bouscarle de Cetti","convention_language":true,"id":null},{"lang":"German","names":"Seidensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo di fiume","convention_language":false,"id":null},{"lang":"Polish","names":"Wierzbówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-bravo","convention_language":false,"id":null},{"lang":"Russian","names":"Solovinaya Shirokokhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Cettisångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Veron, G., Gaubert, P., Franklin, N., Jennings, A.P. and Grassman Jr, L.I. 2006. A reassessment of the distribution and taxonomy of the Endangered otter civet \u003Ci\u003ECynogale bennettii\u003C/i\u003E (Carnivora: Viverridae) of South-east Asia. Oryx: 40: 42-49.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2004. Fiftieth Irish Bird Report 2002. Irish Birds: 7: 385-412.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Van der Voort, J. 2003. Montenegro (Crna Gora). Hyla - Amphibian and Reptile Workgroup of Natuurpunt. Belgium.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11626,"full_name":"Globicephala melas","author_year":"(Traill, 1809)","common_names":[{"lang":"English","names":"Long-finned Pilot Whale","convention_language":true,"id":null},{"lang":"French","names":"Globicéphale commun","convention_language":true,"id":null},{"lang":"Italian","names":"Globicephala","convention_language":false,"id":null},{"lang":"Portuguese","names":"Baleia Piloto","convention_language":false,"id":null},{"lang":"Spanish","names":"Caldrón negro","convention_language":true,"id":null},{"lang":"Swedish","names":"pilotval, grindval, långfenad grindval","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Walker, D. 1987. Miscellaneous. Annual Report, Calf of Man Bird Observatory: 1986: 55.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. New information about the pilot whale, \u003Ci\u003EGlobicephala melaena\u003C/i\u003E Traill, in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 195-196.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Globicephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations. Formerly listed as \u003Ci\u003EGlobicephala melaena\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11627,"full_name":"Tringa melanoleuca","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Stor Gulbenet Klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Geelpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Greater Yellowlegs","convention_language":true,"id":null},{"lang":"French","names":"Grand Chevalier","convention_language":true,"id":null},{"lang":"Polish","names":"Brodziec piegowaty","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe patigualdo grande","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax melanoleuca","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11628,"full_name":"Cettia major","author_year":"(Horsfield \u0026 Moore, 1854)","common_names":[{"lang":"English","names":"Chestnut-crowned Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Grande Bouscarle","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11629,"full_name":"Branta bernicla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Berneška tmavá","convention_language":false,"id":null},{"lang":"Danish","names":"Knortegås","convention_language":false,"id":null},{"lang":"Dutch","names":"Rotgans","convention_language":false,"id":null},{"lang":"English","names":"Brent Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelhanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache cravant","convention_language":true,"id":null},{"lang":"German","names":"Ringelgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca colombaccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-faces-negras","convention_language":false,"id":null},{"lang":"Russian","names":"Chyornaya Kazarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla Carinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Prutgås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Printemps, T., Rouillon, Y. and Morel, G. J. 1999. Observation de la Bernache cravant \u003Ci\u003EBranta bernicla\u003C/i\u003E au Sénégal. Malimbus: 21: 114-115.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas bernicla","author_year":"Linnaeus, 1758"},{"full_name":"Branta hrota","author_year":"(O. F. Müller, 1776)"},{"full_name":"Branta nigricans","author_year":"(Lawrence, 1846)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11630,"full_name":"Ficedula parva","author_year":"(Bechstein, 1792)","common_names":[{"lang":"Czech","names":"Lejsek malý","convention_language":false,"id":null},{"lang":"Danish","names":"Pikkusieppo, Lille fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Flycatcher, Red-throated Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkusieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobe-mouche nain, Gobemouche nain","convention_language":true,"id":null},{"lang":"German","names":"Zwergschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Pigliamosche petirosso, Pigliamosche pettirosso","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-pequeno","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas papirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre flugsnappare, Mindre flugsnäppare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; McGowan, R. V. and Pritchard, J. S. 1990. First record of the Red-breasted Flycatcher \u003Ci\u003EFicedula parva\u003C/i\u003E for the Philippines. Bulletin of the British Ornithologists' Club: 110: 6-7.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11632,"full_name":"Cyanoptila cyanomelana","author_year":"(Temminck, 1829)","common_names":[{"lang":"English","names":"Blue and White Flycatcher, Blue-and-white Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche bleu","convention_language":true,"id":null},{"lang":"German","names":"Japanschnäpper","convention_language":false,"id":null},{"lang":"Swedish","names":"japansk blåflugsnappare, blåvit flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Anon. 2000. Twelve new species for Cambodia. Cambodia Bird News: 4: 30-32.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Five. http://users.bigpond.net.au/palliser/barc/vol5.htm . ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanoptila","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11633,"full_name":"Grus japonensis","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Japansk trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Chinese kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Japanese Crane, Manchurian Crane, Red-crowned Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Mantsuriankurki","convention_language":false,"id":null},{"lang":"French","names":"Grue du Japon, Grue de Mandchourie, Grue blanche du Japon","convention_language":true,"id":null},{"lang":"German","names":"Mandschurenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru del Giappone, Gru della Manciuria","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla de Manchuria, Grulla manchú","convention_language":true,"id":null},{"lang":"Swedish","names":"japansk trana, manchurisk trana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Williams, M. D., Bakewell, D. N., Carey, G. J. and Holloway, S. J. 1986. On the bird migration at Beidaihe, Hebei Province, China, during spring 1985. Forktail: 2: 3-20.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11634,"full_name":"Crex crex","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Engsnarre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kwatelkoning, Kwartelkoning","convention_language":false,"id":null},{"lang":"English","names":"Corn Crake, Corncrake","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruisrääkkä","convention_language":false,"id":null},{"lang":"French","names":"Râle des genêts","convention_language":true,"id":null},{"lang":"German","names":"Wachtelkönig","convention_language":false,"id":null},{"lang":"Hungarian","names":"Haris","convention_language":false,"id":null},{"lang":"Italian","names":"Re di quaglie","convention_language":false,"id":null},{"lang":"Norwegian","names":"Åkerrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Derkacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Codornizão","convention_language":false,"id":null},{"lang":"Russian","names":"Korostel","convention_language":false,"id":null},{"lang":"Spanish","names":"Guión de codornices","convention_language":true,"id":null},{"lang":"Swedish","names":"Kornknarr","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"extinct,distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Crex","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Rallus crex","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11635,"full_name":"Neophocaena asiaeorientalis","author_year":"Pilleri \u0026 Gihr, 1972","common_names":[{"lang":"English","names":"Narrow-ridged Finless Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin aptèr","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa Lisa","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768-774.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768–774.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Neophocaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Neophocaena phocaenoides asiaeorientalis","author_year":"(G. Cuvier, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11636,"full_name":"Zoothera dauma","author_year":"(Latham, 1790)","common_names":[{"lang":"Czech","names":"Drozd pestrý","convention_language":false,"id":null},{"lang":"Danish","names":"Guldrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudlijster","convention_language":false,"id":null},{"lang":"English","names":"White's Thrush, Scaly Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjorastas","convention_language":false,"id":null},{"lang":"French","names":"Grive dorée","convention_language":true,"id":null},{"lang":"German","names":"Erddrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Himalájai rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo dorato","convention_language":false,"id":null},{"lang":"Polish","names":"Drozd pstry","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-dourado","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Dorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Guldtrast","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Parker, S. 1967. A. S. Meek's three expeditions to the Solomon Islands. Bulletin of the British ornithologists' club: 87: 129-135.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11637,"full_name":"Turdus philomelos","author_year":"Brehm, 1831","common_names":[{"lang":"Danish","names":"Sangdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Zanglijster","convention_language":false,"id":null},{"lang":"English","names":"Song Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Laulurastas","convention_language":false,"id":null},{"lang":"French","names":"Grive musicienne","convention_language":true,"id":null},{"lang":"German","names":"Singdrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo bottaccio","convention_language":false,"id":null},{"lang":"Polish","names":"Piewak drozd","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Pevchy Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Taltrast","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"extinct,introduced","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11638,"full_name":"Larus atlanticus","author_year":"Olrog, 1958","common_names":[{"lang":"English","names":"Olrog's Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland d'Olrog","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cangrejera","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Larus belcheri atlanticus","author_year":"Vigors, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11639,"full_name":"Miniopterus majori","author_year":"Thomas, 1906","common_names":[{"lang":"English","names":"Major's Long-fingered Bat","convention_language":true,"id":null}],"distributions":[{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Garbutt, N. 1999. Mammals of Madagascar. Pica Press. East Sussex, U.K.; Goodman, S. M. 1999. Notes on the bats of the Réserve Naturelle Intégrale d'Andohahela and surrouinding areas of southeastern Madagascar. Fieldiana Zoology: 94: 251-257.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11641,"full_name":"Tringa glareola","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vodouš bahenní","convention_language":false,"id":null},{"lang":"Danish","names":"Tinksmed","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosruiter","convention_language":false,"id":null},{"lang":"English","names":"Wood Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Liro","convention_language":false,"id":null},{"lang":"French","names":"Chevalier sylvain","convention_language":true,"id":null},{"lang":"German","names":"Bruchwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro piro boschereccio, Piro-piro boschereccio","convention_language":false,"id":null},{"lang":"Polish","names":"leczak, brodziec lesny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-bastardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Andarríos Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Grönbena","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A. and Jaffard, M.-E. 2002. Quinze nouvelles espèce d'oiseaux observées en Guadeloupe (F.W.I.). El Pitirre: 15: 1-4.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11642,"full_name":"Thalassarche salvini","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Salvin's Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11643,"full_name":"Charadrius pallidus","author_year":"Strickland, 1852","common_names":[{"lang":"English","names":"Chestnut-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier élégant","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo pálido","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Charadrius venustus","author_year":"Fischer \u0026 Reichenow, 1884"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11644,"full_name":"Sterna lorata","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Peruvian Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne du Pérou","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":11645,"full_name":"Falco peregrinus","author_year":"Tunstall, 1771","common_names":[{"lang":"Danish","names":"Vandrefalk, Vanderfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Slechtvalk","convention_language":false,"id":null},{"lang":"English","names":"Peregrine, Peregrine Falcon, Duck Hawk","convention_language":true,"id":null},{"lang":"Finnish","names":"Muuttohaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon pèlerin","convention_language":true,"id":null},{"lang":"German","names":"Wanderfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándorsólyom","convention_language":false,"id":null},{"lang":"Italian","names":"Pellegrino, Falco pellegrino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Vandrefalk","convention_language":false,"id":null},{"lang":"Polish","names":"sokól wedrowny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-peregrino","convention_language":false,"id":null},{"lang":"Spanish","names":"Halcón real, Halcón blancuzco, Halcón viajero, Halcón común, Halcón peregrino","convention_language":true,"id":null},{"lang":"Swedish","names":"Pilgrimsfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Regalado, P. and Cables, E. 2000. Primer hallazgo de \u003Ci\u003EFalco peregrinus\u003C/i\u003E nidificando en Cuba. Cotinga: 14: 78.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jenny, J. P., Ortiz, F. and Arnold, M. D. 1981. First nesting record of the Peregrine Falcon in Ecuador. Condor: 83: 387.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Cugnasse, J.M. 1984. The peregrine falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in the Massif Central from 1974 to 1983. Alauda: 52: 161-176.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mottley, J. 1863. Observations on the birds of south-eastern Borneo. Proceedings of the Zoological Society of London: 1863: 206-224.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rizzolli, F., Sergio, F., Marchesi, L. and Pedrini, P. 2005. Density, productivity, diet and population status of the Peregrine Falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in the Italian Alps. Bird Study: 52: 188-192.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Newby, J., Grettenberger, J. and Watkins, J. 1987. The birds of northern Air, Niger. Malimbus: 9: 4-16.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schoonmaker, P. K., Wallace, M. P. and Temple, S. A. 1985. Migrant and breeding Peregrine Falcons in northwest Peru. Condor: 87: 423-424.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Gainzarain, J.A., Arambarri, R., and Rodriguez, A.F. 2002. Population size and factors affecting the density of the peregrine falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in Spain. Ardeola: 49: 67-74.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. 1972. Bird records from Surinam. Bulletin of the British Ornithologists' Club: 92: 49-53.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Crick, H.Q.P. and Ratcliffe, D.A. 1995. The peregrine \u003Ci\u003EFalco peregrinus\u003C/i\u003E breeding population of the United Kingdom in 1991. Bird Study: 42: 1-19.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Sharpe, C. J., Ascanio-Echeverria, D. and Rodríguez, G. A. 2001. Further range extensions and noteworthy records for Venezuelan birds. Bulletin of the British Ornithologists' Club: 121: 50-62.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":11646,"full_name":"Balaena mysticetus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Dutch","names":"Groenlandse Walvis","convention_language":false,"id":null},{"lang":"English","names":"Greenland Right Whale, Bowhead Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine de grande baie, Baleine du Groenland","convention_language":true,"id":null},{"lang":"Norwegian","names":"Grønlandshval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena boreal","convention_language":true,"id":null},{"lang":"Swedish","names":"grönlandsval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Rugh, D., Demaster, D., Rooney, A., Breiwick, J., Shelden, K. and Moore, S. 2003. A review of bowhead whale (Balaena mysticetus) stock identity. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 5(3): 267–279.\r\n\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Wiig, Ø., Bachmann, L., Øien, N., Kovacs, K.M. and Lydersen, C. 2010. Observations of bowhead whales (\u003Ci\u003EBalaena mysticetus\u003C/i\u003E) in the Svalbard area 1940–2009. \u003Ci\u003EPolar Biology\u003C/i\u003E: 33(7): 979–984.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ivashchenko, Y. and Clapham, P. 2010. Bowhead whales \u003Ci\u003EBalaena mysticetus\u003C/i\u003E in the Okhotsk Sea. Mammal Review: 40: 65-89.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Balaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11648,"full_name":"Scolopax rusticola","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Sluka lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Skovsneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Houtsnip","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Woodcock","convention_language":true,"id":null},{"lang":"Finnish","names":"Lehtokurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécasse des bois","convention_language":true,"id":null},{"lang":"German","names":"Waldschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Erdei szalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccia","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galinhola","convention_language":false,"id":null},{"lang":"Russian","names":"Valdshnep","convention_language":false,"id":null},{"lang":"Spanish","names":"Chocha Perdiz","convention_language":true,"id":null},{"lang":"Swedish","names":"Morkulla","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Scolopax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11649,"full_name":"Eretmochelys imbricata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Hawksbill turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Joseph, D. 1984. The National Report: Antigua and Barbuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Richardson, J.I., R. Bell and T.H. Richardson. 1999. Population ecology and demographic implications drawn from an 11-yearstudy of nesting hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, at Jumby Bay, Long Island, Antigua, West Indies. Chelonian Conservation and Biology.: 3: 244-250.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dobbs, K.A., J.D. Miller, C.J. Limpus and A.M. Landry Jr. 1999. Hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, nesting at MilmanIsland, northern Great Barrier Reef, Australia. Chelonian Conservation and Biology.: 3: 344-361.; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus C.J. 1992. The hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, in Queensland: population structure within a southern Great Barrier Reef feeding ground. Wildlife Research : 19: 489-506.; Limpus, C. J. and Parmenter, C. J. 1986. The sea turtle resources of the Torres Strait region. Proceedings of Torres Strait Fisheries Seminar, Port Moresby, 1-14 February, 1985 . 96-107; Limpus, C. J., Miller, J. D., Baker, V. and McLachlan, E. 1983. The Hawksbill Turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E (L.), in north-eastern Australia: the Campbell Island rookery. Australian Wildlife Res.: 10: 185-197.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.; Horrocks, J. A. Vermeer, L. A. Krueger, B. Coyne, M. Schroeder, B. A. Balazs, G. H. 2001. Migration routes and destination characteristics of post-nesting hawksbill turtles satellite-tracked from Barbados, West Indies. Chelonian Conservation and biology: 4: 107-114.; Hunte, W. 1984. The National Report: Barbados. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Santos, A.J.B., Freire, E.M.X., Bellini, C. and Corso, G. 2010. Body mass and the energy budget of gravid Hawskbill turtles (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) during the nesting season. Journal of Herpetology: 44: 352-359.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bjorndal, K.A., A.B. Bolten and C.J. Andlagueux. 1993. Decline of the nesting population of hawksbill turtles at Tortuguero, CostaRica. Conservation Biology: 7: 925-927.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng S., P.H. Dutton and D. Evans. 2005. Migration of hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E from Tortuguero, Costa Rica. Ecography: 28: 394-402.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Carrillo, E., Webb, G. J. W. and Manolis, S. C. 1999. Hawksbill turtles (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) in Cuba: an assessment of the historical harvest and its impacts. Chelonian Conservation and Biology: 3: 264-280.; Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Edwards, S. 1984. The National Report: Dominica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Frazier, J. and Salas, S. 1984. The status of marine turtles in the Egyptian Red Sea. Biological Conservation: 30: 41-67.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Kamel, S.J. and Delcroix, E. 2009. Nesting ecology of the hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, in Guadeloupe, French West Indies from 2000-07. Journal of Herpetology: 43: 367-376.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Carr, A., Meylan, A., Mortimer, J., Bjorndal, K., and Carr, T. 1982. Preliminary survey of marine turtle populations and habitats in the western Atlantic. Interim Report to National Marine Fisheries Service. Contract NA80-FA-C-00071. NOAA Technical Memorandum NMFS-SEFC . ; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fernando, A. B. 1983. Nesting site and hatching of the Hawksbill turtle along Tirunelveli coast of Tamil Nadu. Marine Fisheries Information Service, Technical and Extension Series: 50: 33-34.; Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ; Schulz, J. P. 1984. Turtle conservation strategy in Indonesia. IUCN/WWF Report . ; Suganuma, H., N. Kamezaki and A. Yusuf. 1999. Current status of nesting populations of the hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Java Sea, Indonesia. Chelonian Conservation and Biology.: 3: 337-343.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hughes, G. R. 1973. The survival situation of the hawksbill sea-turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in Madagascar. Biological Conservation: 5: 114-118.; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Rakotonirina B. and A. Cooke. 1994. Sea turtles of Madagascar-their status, exploitation and conservation. Oryx : 28: 51-61.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Chan, E.H. and H.C. Liew. 1996. Decline of the leatherback population in Terengganu, Malaysia, 1956-1995. Chelonian Conservation and Biology.: 2: 196-203.; Chan E.H. and H.C. Liew. 1999. Hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, nesting on Redang Island, Terengganu, Malaysia, from1993 to 1997. Chelonian Conservation and Biology.: 3: 326-329.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Colton, E. O. 1977. Turtles of the Maldives. Defenders (of Wildlife): 52: 167-170.; Moutou, F. 1985. Briefly: the Maldive Islands. Oryx: 19: 232-233.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Anon. 1985. Mona Iguana Recovery Plan. U.S. Fish and Wildlife Service. ; Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Cuevas, E., Abreu-Grobois, F.A., Guzmán-Hernández, V., Liceaga-Correa, M.A. and van Dam, R.P. 2010. Post-nesting migratory movements of hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in waters adjacent to the Yucatan Peninsula, Mexico. Endangered Species Research: 10: 123-133.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A. 1989. Status report of the Hawksbill Turtle. In, Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 101-115 ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Seminoff, J. A., Nichols, W. J., Resendiz, A. and Brooks, L. 2003. Occurrence of hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, near Baja California. Pacific Science: 57: 9-16.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ; Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Martin, C. S., J. Jeffers and B. J. Godley. 2005. The status of marine turtles in Montserrat (Eastern Caribbean). Animal Biodiversity and Conservation: 28(2): 159-168.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Saba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Laguex, C. J., Campbell, C. L. and McCoy, W. A. 2003. Nesting and conservation of the Hawkbill Turtle (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E), in the Pearl Cays, Nicaragua. Chelonian Conservation and Biology: 4(3): 588-602; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Salm, R. V. 1986. The proposed Daymaniyat Islands National Nature Reserve Management Plan. IUCN Coastal Zone Management Project. Gland. ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; De Silva, G. S. 1986. Protected areas and turtle eggs in Sabah, East Malaysia. In: McNeely, J. A. and Miller, K. R. (eds) National Parks, conservation, and development. Smithsonian Institution Press. Washington D.C.; Matillano, F. S., and Ladra, D. F. 1986. Nesting habits and habitat of marine turtles in Quiniluban Island, Palawan. Unpublished report . ","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Olson, M. H. 1985. Population characteristics of the Hawksbill Turtle (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) on Mona Island, Puerto Rico: a case study of U. S. Endangered Species Act. Proceedings of the Fifth International Coral Reef Congress, Tahiti, 1985, Vol.5 . ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Jean, C., Ciccione, S., Ballorain, K., Georges, J.-Y. and Bourjea, J. 2010. Ultralight aircraft surveys reveal marine turtle population increases along the west coast of Reunion Island. Oryx: 44: 223-229.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Morris, K. 1984. The National Report: St Vincent. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Witzell, W.N. and A.C. Banner. 1980. The hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in Western Samoa. Bull. Mar. Sci.: 30: 571-579.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: analysis of coastal and marine habitats of the Red Sea. Report to the Meteorology and Environmental Protection Administration, Jeddah. IUCN. Gland, Switzerland. ; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Brooke, M. de L. and Garnett, M. C. 1983. Survival and reproductive performance of Hawksbill Turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E L. on Cousin Island, Seychelles. Biological Conservation: 25: 161-170.; Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Mortimer, J. A. 1983. Marine Turtles in the Republic of Seychelles. WWF Project 1809. IUCN/WWF . ; Mortimer J.A. and R. Bresson. 1999. Temporal distribution and periodicity in hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E nestingat Cousin Island, Republic of Seychelles, 1971-1997. ChelonianConservation and Biology: 3: 318-325.; Philips, J., and Wood, V. 1983. Hawksbill Turtles in the Cousin Island Special Reserve 1973-1982. Cousin Island Research Station Technical Report No. ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Travis, W. 1967. The voice of the turtle. George Allen and Unwin Ltd. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: an assessment of biotopes and management requirements for the Saudi Arabian Gulf coastal zone. Report to the Meteorology and Environmental Protection Administration, Jeddah, Saudi Arabia. IUCN. Gland, Switzerland. ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hirth, H.F. and E.M. Abdel Latif. 1980. A nesting colony of the hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E on Seil Ada Kebir Island,Suakin Archipelago, Sudan. Biology Conservation: 17: 125-130.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Fletemeyer, J. R. 1984. The National Report: Turks-Caicos. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Devaux, B. and Bonin, F. 2010. Oh, happy days! / Floride, Texas. La Tortue: 84: 32-53.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Eretmochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11650,"full_name":"Pipistrellus pygmaeus","author_year":"(Leach, 1825)","common_names":[{"lang":"English","names":"Soprano Pipistrelle","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Lustrat, P. 1999. Première mention de Pipistrelle \"commune\", \u003Ci\u003EPipistrellus\u003C/i\u003E sp. émettant en fréquence terminale à plus de 50 kHz en France. Arvicola: 11: 34-35.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Häussler, U., Nagel, A., Herzig, G. and Braun, M. 1999. \u003Ci\u003EPipistrellus\u003C/i\u003E \"\u003Ci\u003Epygmaeus/mediterraneus\u003C/i\u003E\" in SW - Deutschland: ein fast perfekter Doppelgänger der Zwergfledermaus \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E. Der Flattermann: 21: 13-19.; Zöphel, U., Ziegler, T., Feiler, A. and Pocha, S. 2002. Erste Nachweise der Mückenfledermaus, \u003Ci\u003EPipistrellus pygmaeus\u003C/i\u003E (Leach, 1825), für Sachsen (Mammalia: Chiroptera: Vespertilionidae). Faunistiche Abhandlungen Staatliches Museum für Tierkunde Dresden: 22: 411-422.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Russ, J. M. 1996. First record of bimodality in the echolocation calls of the common pipistrelle \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E in Ireland. Irish Naturalists Journal: 25: 225-226.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Russo, D. and Jones, G. 2000. The two cryptic species of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E (Chiroptera, Vespertilionidae) occur in Italy: evidence from echolocation and social calls. Mammalia: 64: 187-197.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ruedi, M., Tupinier, Y. and De Paz, O. 1998. First breeding record for the noctule bat (\u003Ci\u003ENyctalus noctula\u003C/i\u003E) in the Iberian Peninsula. Mammalia: 62: 301-304.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Zagorodnuik, I. V. and Tyschenko-Tyshkovets, M. L. 2001. \u003Ci\u003EPipistrellus pygmaeus\u003C/i\u003E (55 kHz) in the Kyiv Region (Ukraine). Vestnik Zoologii: 35: 52.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Jones, G. and van Parus, S. M. 1993. Bimodal echolocation in pipistrelle bats: are cryptic species present? Proc. R. Soc. London B. Biol. Sci.: 251: 119-125.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11652,"full_name":"Sylvia hortensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Mestersanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Orpheusgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Western Orphean Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Orfeuskerttu, Orpheuskerttu","convention_language":false,"id":null},{"lang":"German","names":"Orpheusgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dalos poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigia grossa","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka lutniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-real","convention_language":false,"id":null},{"lang":"Russian","names":"Pevchaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Mirlona","convention_language":true,"id":null},{"lang":"Swedish","names":"Mästersångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11653,"full_name":"Pseudoscaphirhynchus fedtschenkoi","author_year":"(Kessler, 1872)","common_names":[{"lang":"English","names":"Syr-Dar Shovelnose Sturgeon, Syr Darya Sturgeon, Syr-Darya Shovelnose","convention_language":true,"id":null},{"lang":"Polish","names":"Nibylopatonos syr-daryjski","convention_language":false,"id":null},{"lang":"Swedish","names":"Syr Darya-stör","convention_language":false,"id":null}],"distributions":[{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11654,"full_name":"Limosa lapponica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Lille kobbersneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Grutto","convention_language":false,"id":null},{"lang":"English","names":"Bar-tailed Godwit","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakuiri","convention_language":false,"id":null},{"lang":"French","names":"Barge rousse","convention_language":true,"id":null},{"lang":"German","names":"Pfuhlschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis goda","convention_language":false,"id":null},{"lang":"Italian","names":"Pittima minore","convention_language":false,"id":null},{"lang":"Polish","names":"Szlamnik, Szlamnik (szlimik, szlamik rdzawy)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Fuselo","convention_language":false,"id":null},{"lang":"Russian","names":"Maly Veretennik","convention_language":false,"id":null},{"lang":"Spanish","names":"Aguja colipinta","convention_language":true,"id":null},{"lang":"Swedish","names":"Myrspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pérez del Val, J. 2001. A survey of birds of Annobón Island, Equatorial Guinea: a preliminary report. Bulletin of the African Bird Club: 8: 54.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax lapponica","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11655,"full_name":"Saxicola rubetra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Bynkefugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Paapje","convention_language":false,"id":null},{"lang":"English","names":"Whinchat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensastasku","convention_language":false,"id":null},{"lang":"French","names":"Tarier des prés","convention_language":true,"id":null},{"lang":"German","names":"Braunkehlchen, Braukehlchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rozsdás csuk","convention_language":false,"id":null},{"lang":"Italian","names":"Stiaccino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cartaxo-nortenho","convention_language":false,"id":null},{"lang":"Russian","names":"Lugovoy Chekan","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarabilla Norteña","convention_language":true,"id":null},{"lang":"Swedish","names":"Buskskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11656,"full_name":"Miniopterus natalensis","author_year":"(A. Smith, 1834)","common_names":[{"lang":"English","names":"Natal Long-fingered Bat","convention_language":true,"id":null}],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only African populations. Formerly included in \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11657,"full_name":"Phylloscopus subaffinis","author_year":"Ogilvie-Grant, 1900","common_names":[{"lang":"English","names":"Buff-throated Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot subaffin","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11658,"full_name":"Regulus regulus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fuglekonge","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudhaantje","convention_language":false,"id":null},{"lang":"English","names":"Common Goldcrest, Goldcrest","convention_language":true,"id":null},{"lang":"Finnish","names":"Hippiäinen","convention_language":false,"id":null},{"lang":"French","names":"Roitelet huppé","convention_language":true,"id":null},{"lang":"German","names":"Wintergoldhähnchen","convention_language":false,"id":null},{"lang":"Italian","names":"Regolo","convention_language":false,"id":null},{"lang":"Polish","names":"Mysikrólik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Estrelinha-de-poupa","convention_language":false,"id":null},{"lang":"Russian","names":"Zheltogolovy Korolyok","convention_language":false,"id":null},{"lang":"Spanish","names":"Reyezuelo Sencillo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kungsfågel","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11659,"full_name":"Sporophila ruficollis","author_year":"Cabanis, 1851","common_names":[{"lang":"English","names":"Dark-throated Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile à gorge sombre","convention_language":true,"id":null},{"lang":"Spanish","names":"Capuchino garganta café","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11660,"full_name":"Vanellus lugubris","author_year":"(Lesson, 1826)","common_names":[{"lang":"English","names":"Senegal Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau terne","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría lúgubre","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius lugubris","author_year":"Lesson, 1826"},{"full_name":"Stephanibyx lugubris","author_year":"(Lesson, 1826)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11662,"full_name":"Lepidochelys olivacea","author_year":"(Eschscholtz, 1829)","common_names":[{"lang":"English","names":"Olive Ridley, Pacific Ridley","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Whiting, S.D., Long, J.L. and Coyne, M. 2007. Migration routes and foraging behaviour of olive ridley turtles \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E in northern Australia. Endangered Species Research: 3: 1-9.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Godgenger, M.-C., Bréheret, N., Bal, G., N'Damité, K., Girard, A. and Girondot, M. 2009. Nesting estimation and analysis of threats for Critically Endangered leatherback \u003Ci\u003EDermochelys coriacea\u003C/i\u003E and Endangered olive ridley \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E marine turtles nesting in Congo. Oryx: 43: 556-563.; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Cornelius, S. E., and Robinson, D. C. 1985. Abundance, distribution and movements of Olive Ridley sea turtles in Costa Rica, V. Final Report, USFW Contract No. 14-16-0002-81-225, WWF-US Contract No. 3085 . ; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Kelle, L., Gratiot, N. and De Thoisy, B. 2009. Olive ridley turtle \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E in French Guiana: back from the brink of regional extirpation? Oryx: 43: 243-246.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Kami, H. G. 1997. First record of the Olive Ridley turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in Iranian coastal waters (Testudines, Cheloniidae). Zoology in the Middle East: 15: 67-70.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Project Global. 2009. Country profile. Federated States of Micronesia. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Sybesma, J. and P.C. Hoetjes. 1992. First record of the Olive Ridley and of nesting by the Loggerhead turtle in Curacao. Caribbean Journal of Science: 28: 103-104.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Firdous, F. 1985. Marine turtle management along Karachi coast. WWF-Pakistan: 4: 5-9.; Kabraji, A. M. and Firdous, F. 1984. Conservation of turtles, Hawkesbay and Sandspit, Pakistan. WWF Project. WWF-International and Sind Wildlife Management Board . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hays de Brown, C. and Brown, W. B. 1982. The status of sea turtles in Peru. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reichart, H. A. 1986. Sea turtles of Suriname. American: 38: 477.; Reichart, H. A. 1989. Status report of the Olive Ridley Turtle. In: Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 175-188; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Lepidochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11663,"full_name":"Branta canadensis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Berneška velká","convention_language":false,"id":null},{"lang":"Danish","names":"Kanadagås","convention_language":false,"id":null},{"lang":"Dutch","names":"Canadese Gans","convention_language":false,"id":null},{"lang":"English","names":"Canada Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Kanadanhanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache du Canada","convention_language":true,"id":null},{"lang":"German","names":"Kanadagans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kanadai lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca del Canada","convention_language":false,"id":null},{"lang":"Polish","names":"Bernikla kanadyjska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso do Canadá","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla Canadiense","convention_language":true,"id":null},{"lang":"Swedish","names":"Kanadagås","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"introduced,introduced (?)","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?),introduced","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"introduced,distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"introduced,introduced (?)","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"introduced,introduced (?)","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"introduced","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"introduced","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced (?),introduced","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11664,"full_name":"Balaenoptera musculus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Blauwe Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Blue Whale, Sulphur-bottom Whale, Sibbald's Rorqual","convention_language":true,"id":null},{"lang":"French","names":"Baleinoptère bleue, Rorqual à ventre cannelé, Rorqual de Sibbold, Baleine bleue, Rorqual bleu, Baleine d'Ostende","convention_language":true,"id":null},{"lang":"Norwegian","names":"Blåhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena azul, Rorcual azul","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgblåval, blåval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Calambokidis, J., Barlow, J., Ford, J.K.B. and Chandler, T.E. 2009. Insights into the population structure of blue whales in the Eastern North Pacific from recent sightings and photographic identification. Marine Mammal Science: 25: 816-832.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Buchan, S.J., Rendell, L.E. and Hucke-Gaete, R. 2010. Preliminary recordings of blue whale (\u003Ci\u003EBalaenoptera musculus\u003C/i\u003E) vocalizations in the Gulf of Corcovado, northern Patagonia, Chile. Marine Mammal Science: 26: 451-459.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smith, B. D., Crespo, E. A. and di Sciara, G. N (comps.) 2003. Dolphins, Whales and Porpoises: 2002-2010 Conservation Action Plan for the World's Cetaceans. IUCN/SSC Cetacean Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bailey, H., Mate, B.R., Palacios, D.M., Irvine, L., Bograd, S.J. and Costa, D.P. 2009. Behavioural estimation of blue whale movements in the Northeast Pacific from state-space model analysis of satellite tracks. Endangered Species Research: 10: 93-106.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Borsa, P. and Hoarau, G. 2004. A Pygmy Blue Whale (Cetacea: Balaenopteridae) in the inshore waters of New Caledonia. Pacific Science: 58: 579-584.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1978. Red data book: Mammalia. IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Bailey, H., Mate, B.R., Palacios, D.M., Irvine, L., Bograd, S.J. and Costa, D.P. 2009. Behavioural estimation of blue whale movements in the Northeast Pacific from state-space model analysis of satellite tracks. Endangered Species Research: 10: 93-106.; Baskin, Y. 1993. Endangered species - Blue Whale population may be increasing off California. Science: 56: 9-13.; Calambokidis, J., Barlow, J., Ford, J.K.B. and Chandler, T.E. 2009. Insights into the population structure of blue whales in the Eastern North Pacific from recent sightings and photographic identification. Marine Mammal Science: 25: 816-832.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11665,"full_name":"Thalassarche eremita","author_year":"Murphy, 1930","common_names":[{"lang":"English","names":"Chatham Albatross","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11666,"full_name":"Ardea melanocephala","author_year":"Vigors \u0026 Children, 1826","common_names":[{"lang":"Danish","names":"Fiskehejre","convention_language":false,"id":null},{"lang":"English","names":"Black-headed Heron","convention_language":true,"id":null},{"lang":"French","names":"Héron mélanocéphale","convention_language":true,"id":null},{"lang":"Spanish","names":"Garza cabecinegra","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11667,"full_name":"Phylloscopus trochiloides","author_year":"(Sundevall, 1837)","common_names":[{"lang":"Danish","names":"Phylloscopus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Fitis","convention_language":false,"id":null},{"lang":"English","names":"Greenish Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Idänuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot verdâtre","convention_language":true,"id":null},{"lang":"German","names":"Grünlaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Zö ld füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí verdastro","convention_language":false,"id":null},{"lang":"Portuguese","names":"felosa-troquilóide","convention_language":false,"id":null},{"lang":"Russian","names":"Zelyonaya Penochka","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Troquiloide","convention_language":true,"id":null},{"lang":"Swedish","names":"Lundsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11668,"full_name":"Gazella dorcas","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Dorcas gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Dorcasgazel","convention_language":false,"id":null},{"lang":"English","names":"Dorcas Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Dorkasgaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle dorcas","convention_language":true,"id":null},{"lang":"German","names":"Dorkas-Gazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella dorcade","convention_language":false,"id":null},{"lang":"Spanish","names":"Gacela dorcas","convention_language":true,"id":null},{"lang":"Swedish","names":"dorkasgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"East, R. (comp.) 1999. African Antelope Database 1998. Compiled by Rod East and the IUCN/SSC Antelope Specialist Group. Occasional paper of the IUCN Species Survival Commission No. 21. IUCN- The World Conservation Union . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ferguson, W. W. 1981. The systematic position of \u003Ci\u003EGazella dorcas\u003C/i\u003E (Artiodactyla: Bovidae) in Israel and Sinai. Mammalia: 45: 453-457.; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Saleh, M. A. 1987. The decline of gazelles in Egypt. Biological Conservation: 39: 83-95.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Ferguson, W. W. 1981. The systematic position of \u003Ci\u003EGazella dorcas\u003C/i\u003E (Artiodactyla: Bovidae) in Israel and Sinai. Mammalia: 45: 453-457.; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Yom-tov, Y. and Ilani, G. 1987. The numerical status of \u003Ci\u003EGazella dorcas\u003C/i\u003E and \u003Ci\u003EGazella gazella\u003C/i\u003E in the southern Negev Desert, Israel. Biological Conservation: 40: 245-253.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brito, J.C., Alvares, F., Martínez-Freiría, F., Sierra, P., Sillero, N. and Tarroso, P. 2010. Data on the distribution of mammals from Mauritania, West Africa. Mammalia: 74: 449-455.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Peris, S. J. 1981. Observations ornithologiques dans le sud ouest du Maroc. Bulletin de l'Institut Scientifique, Rabat: 5: 135-141.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct,reintroduced","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Carlisle, D.B. and Ghorbial, L.I. 1968. Food and water requirements of Dorcas gazelle in the Sudan. Mammalia: 32: 570-576.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Riney, T. 1964. Potential use of wildlife resources in Tunisian forest lands. FAO report to Government of Tunisia. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Northwest African populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11669,"full_name":"Sylvia sarda","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Sardinsk sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sardijnse Grasmus","convention_language":false,"id":null},{"lang":"English","names":"Marmora's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sardiniankerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette sarde","convention_language":true,"id":null},{"lang":"German","names":"Sardengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szardíniai poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Magnanina sarda","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka czarniawa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-sarda","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca sarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Sardinsk sångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11670,"full_name":"Diomedea antipodensis","author_year":"Robertson \u0026 Warham, 1992","common_names":[{"lang":"English","names":"Antiodean wandering albatross, Antipodean Albatross, Gibson's albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros des Antipodes","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros Errante de Gibson, Albatros Errante de las Antípodas, Albatros de Nueva Zelanda, Albatros de las Antipodas","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Diomedea exulans antipodensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea exulans\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11671,"full_name":"Aythya marila","author_year":"(Linnaeus, 1761)","common_names":[{"lang":"Czech","names":"Polák kaholka","convention_language":false,"id":null},{"lang":"Danish","names":"Bjergand","convention_language":false,"id":null},{"lang":"Dutch","names":"Toppereend","convention_language":false,"id":null},{"lang":"English","names":"Scaup, Greater Scaup","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule milouinan","convention_language":true,"id":null},{"lang":"German","names":"Bergente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hegyi réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta grigia","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bergand","convention_language":false,"id":null},{"lang":"Polish","names":"podgorzalka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-bastardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Bergand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas marila","author_year":"Linnaeus, 1761"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11672,"full_name":"Anser anser","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Husa velká","convention_language":false,"id":null},{"lang":"Danish","names":"Grågås","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Gans","convention_language":false,"id":null},{"lang":"English","names":"Greylag Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Merihanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie cendrée","convention_language":true,"id":null},{"lang":"German","names":"Graugans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nyári lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca selvatica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-comun, Ganso-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Sery Gus","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Grågås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas anser","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11673,"full_name":"Netta rufina","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Zrzohlávka rudozobá","convention_language":false,"id":null},{"lang":"Danish","names":"Rødhovedet And","convention_language":false,"id":null},{"lang":"Dutch","names":"Krooneend","convention_language":false,"id":null},{"lang":"English","names":"Red-crested Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Punapäänarsku","convention_language":false,"id":null},{"lang":"French","names":"Nette rousse","convention_language":true,"id":null},{"lang":"German","names":"Kolbenente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Üstökösréce","convention_language":false,"id":null},{"lang":"Italian","names":"Fistione turco","convention_language":false,"id":null},{"lang":"Polish","names":"helmiatka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-de-bico-vermelho","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato colorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhuvad dykand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas rufina","author_year":"Pallas, 1773"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11674,"full_name":"Lagenorhynchus obscurus","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Dusky Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque sombre","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín listado","convention_language":true,"id":null},{"lang":"Swedish","names":"strimmig delfin, mörk delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11676,"full_name":"Melanitta fusca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fløjlsand","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Zeeëend","convention_language":false,"id":null},{"lang":"English","names":"White-winged Scoter, Velvet Scoter","convention_language":true,"id":null},{"lang":"Finnish","names":"Pilkkasiipi","convention_language":false,"id":null},{"lang":"French","names":"Macreuse brune","convention_language":true,"id":null},{"lang":"German","names":"Samtente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füstös réce","convention_language":false,"id":null},{"lang":"Italian","names":"Orco marino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sjøorre","convention_language":false,"id":null},{"lang":"Polish","names":"Uhla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-fusco","convention_language":false,"id":null},{"lang":"Russian","names":"Turpan","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón Especulado","convention_language":true,"id":null},{"lang":"Swedish","names":"Svärta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas fusca","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11677,"full_name":"Otonycteris hemprichii","author_year":"Peters, 1859","common_names":[{"lang":"English","names":"Hemprich's Long-eared Bat, Desert Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Shaimardanov, R. T. 1982. [\u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E and \u003Ci\u003EBarbastella leucomelas\u003C/i\u003E (Chiroptera) in Kazakhstan.]. Zool. Zhur.: 61: 1765.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Fairon, J. 1980. Deux nouvelles espèces de cheiroptères pour le fauna Massif de l'Air (Niger): \u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E Peters, 1959 et \u003Ci\u003EPipistrellus nanus\u003C/i\u003E (Peters, 1852). Bulletin Inst. r. Sci. nat. Belg. (Biol.): 52: 1-7.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Madkour, G. 1986. Two microchiropterans and a carnivore from Qatar. Zoologischer Anzeiger: 216: 72-80.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Beaucornu, J.-C., Bach-Hamba, D., Launay, H., Hellal, H. and Chastel, C. 1983. Deux chiroptères peu connus de Tunisie. Mammalia: 47: 127-128.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Otonycteris","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Otonycteris hemprichi","author_year":"Peters, 1859"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11678,"full_name":"Pipistrellus pipistrellus","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Pipistreli i zakonshem","convention_language":false,"id":null},{"lang":"Croatian","names":"Patuljasti šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr hvízdavý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Kääbus-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kääpiölepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle commune","convention_language":true,"id":null},{"lang":"German","names":"Zwergfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges törpedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Dvergleðurblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello nano","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Šikšniukas nykštukas","convention_language":false,"id":null},{"lang":"Maltese","names":"Pipistrell","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dvergflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik malutki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-anão, Pipistrela","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-pitic","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier hvízdavý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago enano","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgfladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Cüce yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Fonderflick, J., Grosselet, M. and Pade, P. 1999. Capture méridionale de la barbastelle d'Europe (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) et de la pipistrelle commune (\u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E) au Maroc.]. Mammalia: 62: 610-611.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nagy, Z. L. and Szántó, L. 2003. The occurence of hibernating \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E (Schreber, 1774) in caves of the Carpathian Basin. Acta Chiropterologica: 5(1): 161-162","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11679,"full_name":"Grampus griseus","author_year":"(G. Cuvier, 1812)","common_names":[{"lang":"English","names":"Risso's Dolphin, Grey Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Risso, Grampus","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de Risso, Fabo calderón","convention_language":true,"id":null},{"lang":"Swedish","names":"grå delfin, Rissos delfin","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Kinzelbach, R. 1986. First record of Risso's dolphin, \u003Ci\u003EGrampidelphis griseus\u003C/i\u003E, in the eastern Mediterranean Sea. Zoology in the Middle East: 1: 17-19.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goffmann, O., Roditi, M., Shariv, T., Spanier, E. and Kerem, D. 2000. Cetaceans from the Israeli coast of the Mediterranean sea. Israel journal of zoology: 46: 143-147.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Status of the Risso's dolphin, \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier) in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 189-190.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Leatherwood, S., Hubbs, C. L. and Fisher, M. 1979. First records of Risso's Dolphin (\u003Ci\u003EGrampus griseus\u003C/i\u003E) from the Gulf of California with detailed notes on mass stranding. Transactions of the San Diego Society for Natural History: 19: 45-52.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Grampus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Mediterranean population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Baltic and North Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11680,"full_name":"Oxyura vittata","author_year":"(Philippi, 1860)","common_names":[{"lang":"English","names":"Lake Duck","convention_language":true,"id":null},{"lang":"French","names":"Érismature ornée","convention_language":true,"id":null},{"lang":"Spanish","names":"Malvasía Argentina","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Maillard Z., O., Caballero, E., Sánchez, G., Acosta, L., Rocabado, D., Velásquez, M., Terceros, C. and Alvis, W. 2006. Primer registro de \u003Ci\u003EOxyura vittata\u003C/i\u003E en Bolivia. Cotinga: 26: 46-47.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erismatura vittata","author_year":"Philippi, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11681,"full_name":"Aquila adalberti","author_year":"Brehm, 1861","common_names":[{"lang":"Danish","names":"Spansk kejserørn, Iberisk kejserørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Spaanse Keizerarend, Iberische keizerarend","convention_language":false,"id":null},{"lang":"English","names":"Spanish Imperial Eagle, Adalbert's Eagle, White-shouldered Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Iberiankeisarikotka, Espanjankeisarikotka, Pyreneidenkeisarikotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle à épaules blanches, Aigle impérial espagnol, Aquila imperiale iberica, Aigle ibérique","convention_language":true,"id":null},{"lang":"German","names":"Spanischer Kaiseradler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ibériai sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila imperiale iberica, Aquila imperiale occidentale","convention_language":false,"id":null},{"lang":"Polish","names":"Hiszpanski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-imperial, Águia-imperial ibérica","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila imperial ibérica","convention_language":true,"id":null},{"lang":"Swedish","names":"Kejsarörn, Spansk kejsarörn","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Gonzalez-Grande, J. L. 1981. Spain's Imperial Eagle. Natural History: 90: 40-43.; Gonzalez, L.M., Oria, J., Sanchex, R., Margalida, A., Aranda, A., Prada, L., Caldera, J. and Molina, J.I. 2008. Status and habitat changes in the endangered Spanish Imperial Eagle Aquila adalberti population during 1974-2004: implications for its recovery. Bird Conservation International: 18: 242-259.; Heredia, B., Gonzalez, L. M., Gonzalez, J. L. and Alonso, J. C. 1985. La emancipacion y dispersion de los jovenes de Aguila Imperial en el Parque Nacional de Donaña. Vida Silvestre: 53: 37-43.; Ortega, E., Manosa, S., Margalida, A., Sanchez, R., Oria, J. and Gonzalez, L.M. 2009. A demographic descrption of the recovery of the Vulnerable Spansh imperial eagle \u003Ci\u003EAquila adalberti\u003C/i\u003E. Oryx: 43: 113-121.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EAquila heliaca\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E).","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11683,"full_name":"Sylvia mystacea","author_year":"Ménétries, 1832","common_names":[{"lang":"Danish","names":"Menetries Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Levantzwartkop","convention_language":false,"id":null},{"lang":"English","names":"Ménétries's Warbler, Menetries's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"kaspiankerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette de Ménétries","convention_language":true,"id":null},{"lang":"German","names":"Tamariskengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kaukázusi poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Occhinocotto del Caucaso, Occhiocotto del Caucaso","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewska kaspijska, Pokrzewka kaspijska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra de Menetries","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca de Menetries","convention_language":true,"id":null},{"lang":"Swedish","names":"Östlig sammetshätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11684,"full_name":"Gallinago nemoricola","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Wood Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine des bois","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza del Himalaya","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella nemoricola","author_year":"(Hodgson, 1836)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11685,"full_name":"Isurus oxyrinchus","author_year":"Rafinesque, 1810","common_names":[{"lang":"Afrikaans","names":"Haringhaai, Kortvin-mako","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen tonil, Peshkagen tonil","convention_language":false,"id":null},{"lang":"Arabic","names":"Al karch, Qarsh, Deeba","convention_language":false,"id":null},{"lang":"Catalan","names":"Solraig","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Chlarm","convention_language":false,"id":null},{"lang":"Danish","names":"Sildehaj, Makrelhaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Spitssnuit makreelhaai, Haringhaai, Haai","convention_language":false,"id":null},{"lang":"English","names":"Snapper shark, Shortfin mako, Mackerel porbeagle, Mako shark, Bonito shark, Blue pointer, Sharp-nose mackerel shark, Sharp-nosed mackerel shark, Mackerel shark, Dog shark, Shortfin shark, Atlantic mako, Blue shark, Mako, Pointed nose shark, Sharp-nosed shark, Sharpnose mackerel shark","convention_language":true,"id":null},{"lang":"Finnish","names":"Makrillihai","convention_language":false,"id":null},{"lang":"French","names":"Requin-taupe bleu, Taupe bleu, Taupe bleue, Bleu pointu, Marache, Lamie, Requin maquereau, Mako, Requin bleu","convention_language":true,"id":null},{"lang":"German","names":"Blauhai, Mako, Makohai, Makrelenhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Amlez","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo mako, Ossirina","convention_language":false,"id":null},{"lang":"Japanese","names":"Aozame, Meikotsu","convention_language":false,"id":null},{"lang":"Maltese","names":"Pixxitondu, Pixxiplamptu","convention_language":false,"id":null},{"lang":"Maori","names":"Mako, Ngutukao","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Skyllopsaro, Carcharias, Rynchocarcharias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Makrellhai","convention_language":false,"id":null},{"lang":"Papiamento","names":"Tribon blou, Tribon mula","convention_language":false,"id":null},{"lang":"Polish","names":"Rekin ostronosy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-anequim, Rinquim, Marracho-azul, Anequin barbatana curta, Marracho, Peixe-ruim, Tubarão, Tubarão-azul, Tubarao-anequim, Anequim","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin macrou","convention_language":false,"id":null},{"lang":"Samoan","names":"Aso-polota","convention_language":false,"id":null},{"lang":"Serbian","names":"Psina du gonasa, Kucina","convention_language":false,"id":null},{"lang":"Somali","names":"Cawar","convention_language":false,"id":null},{"lang":"Spanish","names":"Atunero, Cane de mare, Tiburón carito, Dientuse, Tinto, Dentuda, Diamante, Mako, Tiburón marrajo, Dientuso azul, Marrajo dientuso, Maco, Dentuse, Tiburon carite, Tiburón bonito, Janequín, Tiburón azujelo, Pesce tondo, Marrajo, Dientuso","convention_language":true,"id":null},{"lang":"Swahili","names":"Papa nyamarasi, Papa nyamzani, Papa sumbwi","convention_language":false,"id":null},{"lang":"Swedish","names":"Makrillhaj, makohaj","convention_language":false,"id":null},{"lang":"Tagalog","names":"Pating","convention_language":false,"id":null},{"lang":"Tamil","names":"Ganumu sorrah","convention_language":false,"id":null},{"lang":"Telugu","names":"Ganumu sora","convention_language":false,"id":null},{"lang":"Turkish","names":"Dikburun","convention_language":false,"id":null},{"lang":"Wolof","names":"Gisandoo","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dulcic, J. and Lipej, L. 2002. Rare and little-known fishes in the Eastern Adriatic during last two decades (1980-2001). Periodicum Biologorum: 104: 185-194.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Isurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11686,"full_name":"Larus ridibundus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Czech","names":"Racek chechtavý","convention_language":false,"id":null},{"lang":"Danish","names":"Hættemåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kokmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Common Black-headed Gull, Black-headed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Naurulokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette rieuse","convention_language":true,"id":null},{"lang":"German","names":"Lachmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dankasirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Guincho-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Reidora","convention_language":true,"id":null},{"lang":"Swedish","names":"Skrattmås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"McCrie, N. and McCrie, T. 1999. Sight records of a Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E in the Northern Territory. Australian Bird Watcher: 18: 87-92.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Muyen, B. van. 2005. First record of Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E for Benin. Bulletin of the African Bird Club: 12: 164-165.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Swarth, C. W. 1987. First sight record of the Black-headed Gull for Cameroon, West Africa. Malimbus: 9: 127-128.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Regalado Ruíz, P. 1998. Primer hallazgo de la Gaviota Reidora (\u003Ci\u003ELarus ridibundus\u003C/i\u003E Linneo) (Aves: Laridae) en Cuba. El Pitirre: 11: 96-97.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Thévenot, M., Radi, M., Qninba, A. and Dakki, M. 2004. First proven breeding record of the Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E in Africa. Alauda: 72: 59-61.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11688,"full_name":"Mesoplodon mirus","author_year":"True, 1913","common_names":[{"lang":"English","names":"True's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de True","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de True","convention_language":true,"id":null},{"lang":"Swedish","names":"Trues näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11689,"full_name":"Grus monacha","author_year":"Temminck, 1835","common_names":[{"lang":"Danish","names":"Munketrane eller hvidhovedet trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Monnikskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Hooded Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Munkkikurki","convention_language":false,"id":null},{"lang":"French","names":"Grue moine","convention_language":true,"id":null},{"lang":"German","names":"Mönchskranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru monaca","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla monjita, Grulla monje","convention_language":true,"id":null},{"lang":"Swedish","names":"munktrana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sonobe, K. and Izawa, N. 1987. Endangered bird species in the Korean Peninsula. Museum of Korean Nature (Korea University in Tokyo) and Wild Bird Society of Japan. Tokyo.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11690,"full_name":"Mergus squamatus","author_year":"Gould, 1864","common_names":[{"lang":"English","names":"Scaly-sided Merganser, Chinese Merganser","convention_language":true,"id":null},{"lang":"French","names":"Harle de Chine","convention_language":true,"id":null},{"lang":"Spanish","names":"Serreta China","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. and Verbelen, P. 1997. Scaly-sided Merganser (\u003Ci\u003EMergus squamatus\u003C/i\u003E) on Doi Inthanon: an addition to the list of Thai birds. Natural History Bulletin of the Siam Society: 45: 233-235.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11691,"full_name":"Loxodonta africana","author_year":"(Blumenbach, 1797)","common_names":[{"lang":"Afrikaans","names":"Olifant","convention_language":false,"id":null},{"lang":"Arabic","names":"Fel","convention_language":false,"id":null},{"lang":"Armenian","names":"Piugh","convention_language":false,"id":null},{"lang":"Azerbaijani","names":"Fil","convention_language":false,"id":null},{"lang":"Basque","names":"Elefante","convention_language":false,"id":null},{"lang":"Belarusian","names":"Slon","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Slon","convention_language":false,"id":null},{"lang":"Catalan","names":"Elefante","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Domrey","convention_language":false,"id":null},{"lang":"Croatian","names":"Slon","convention_language":false,"id":null},{"lang":"Czech","names":"Slon","convention_language":false,"id":null},{"lang":"Danish","names":"Elefant, afrikansk elefant","convention_language":false,"id":null},{"lang":"Dutch","names":"Afrikaanse olifant, Olifant","convention_language":false,"id":null},{"lang":"English","names":"African Savannah Elephant, African Elephant","convention_language":true,"id":null},{"lang":"Estonian","names":"Elevant","convention_language":false,"id":null},{"lang":"Finnish","names":"Elefantti, Norsu, Afrikannorsu","convention_language":false,"id":null},{"lang":"French","names":"Eléphant africain, Eléphant d'Afrique","convention_language":true,"id":null},{"lang":"German","names":"Afrikanischer Elefant","convention_language":false,"id":null},{"lang":"Hindi","names":"Hathis, Haathi","convention_language":false,"id":null},{"lang":"Icelandic","names":"Fill","convention_language":false,"id":null},{"lang":"Italian","names":"Elefante africano","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Elefantas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Elefant","convention_language":false,"id":null},{"lang":"Portuguese","names":"Elefante","convention_language":false,"id":null},{"lang":"Russian","names":"Slon","convention_language":false,"id":null},{"lang":"Spanish","names":"Elefante africano","convention_language":true,"id":null},{"lang":"Swahili","names":"Ndovo, Tembo","convention_language":false,"id":null},{"lang":"Swedish","names":"afrikansk elefant","convention_language":false,"id":null},{"lang":"Urdu","names":"Haathi","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Anstey, S. 1993. Angola: elephants, people and conservation: a preliminary assessment of the status and conservation of elephants in Angola. Project report IUCN Regional Office for Southern Africa. ; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Menzies, J. I. 1996. A systematic revision of \u003Ci\u003EMelomys\u003C/i\u003E (Rodentia: Muridae) of New Guinea. Australian Journal of Zoology: 44: 367-426.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Eltringham, S. K. 1999. The hippos. Poyser Natural History. London.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.; Verschuren, J., Heymans, J. C. and Delvingt, W. 1989. Conservation in Benin - with the help of the European Economic Community. Oryx: 23: 22-26.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Gibson, D.S., Craig, G.C. and Masogo, R.M. 1998. Trends of the elephant population in northern Botswana from aerial survey data. Pachyderm: 25: 27.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Junker, J., van Aarde, R.J. and Ferreira, S.M. 2008. Temporal trends in elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E numbers and densities in northern Botswana: is the population really increasing? Oryx: 42: 58-65.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Spinage, C. A. 1990. Botswana's problem elephants. Pachyderm: 13: 14-19.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Jachmann, H. 1988. Numbers, distribution and movements of the Nazinga elephants. Pachyderm: 10: 16-21.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.; Spinage, C. A. 1985. The elephants of Burkina-Faso, West Africa. Pachyderm: 5: 2-5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bowden, C. G. R. 1986. Records of other species of mammal from western Cameroon. In: Stuart, S. N. (ed.) Conservation of Cameroon montane forests International Council for Bird Preservation. Cambridge (UK).; de Longh, H., Tchamba, M. T., Aarhaug, P. and and Verhage, B. 2004. Impact of dam construction on two elephant populations in northern Cameroon. Pachyderm: 36: 30-43.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Ekobo, A. 1993. The status of Forest Elephants in the south east of the Republic of Cameroon. Pachyderm: 16: 84.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Klop, E. and van Goethem, J. 2008. Savanna fires govern community structure of ungulates in Benoue National Park, Cameroon. Journal of Tropical Ecology: 24: 39-47.; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Van Lavieren, L. P. and Esser, J. D. 1979. Numbers, distribution and habitat preference of large mammals in Bouba Ndjida National Park, Cameroon. African Journal of Ecology: 17: 141-153.; Whyte, I. 1993. Number and migration patterns of Savanna Elephants (\u003Ci\u003ELoxodonta africana africana\u003C/i\u003E) in North Cameroon. Pachyderm: 16: 72.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1988. Elephants of the Dzanga-Sangha dense forest of south-western Central African Republic. Pachyderm: 10: 12-15.; Fay, J. M. and Agnagna, M. 1991. Forest Elephant population in the Central African Republic and Congo. Pachyderm: 14: 3-19.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dolmia, N.M., Calenge, C., Maillard, D. and Planton, H. 2007. Preliminary observations of elephant (\u003Ci\u003ELoxodonta africana\u003C/i\u003E, Blumenbach) movements and home range in Zakouma National Park, Chad. African Journal of Ecology (OnlineEarly Articles): 45(4): 594-598.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Poilecot, P., N'Gakoutou, E.B. and Taloua, N. 2010. Evolution of large mammal populations and distribution in Zakouma National Park (Chad) between 2002 and 2008. Mammalia: 74: 235-246.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Fay, J. M. and Agnagna, M. 1991. Forest Elephant population in the Central African Republic and Congo. Pachyderm: 14: 3-19.; Fay, J. M. and Agnagna, M. 1993. Elephants and ivory in the Congo since the ban: the lull before the storm. Pachyderm: 16: 51-58.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Merz, G. and Hoppe-Dominik, B. 1991. Distribution and status of the Forest Elephant in the Ivory Coast, West Africa. Pachyderm: 14: 22-24.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Alers, M. P. T., Blom, A., Sikubwabo Kiyengo, C., Masunde, T. and Barnes, R. F.W. 1992. Preliminary assessment of the Forest Elephant in Zaire. African Journal of Ecology: 30: 279-291.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Krunkelsven, E. V., Bila-Isia, I. and Draulans, D. 2000. A survey of bonobos and other large mammals in the Salonga National Park, Democratic Republic of Congo. Oryx: 34: 180-187.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Smith, K., Atalia, M. and Watkin, J. 1993. Pachyderms and threats increasing in Garamba national park, Zaire. Species: 20: 30-32.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"reintroduced,extinct","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Largen, M. J. and Yalden, D. W. 1987. The decline of Elephant and Black Rhinoceros in Ethiopia. Oryx: 21: 103-106.; Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Thouless, C. 1991. A report of the Laikipia elephant count, 1990. Pachyderm: 14: 32-36.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Anstey, S. and Dunn, A. 1991. Forest Elephants in Liberia: status and conservation. A report to WWF . ; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Mkanda, F. X. 1993. Status of elephants and poaching for ivory in Malawi: a case study in Liwonde and Kasungu national parks. Pachyderm: 16: 59-61.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chambal, M. 1992. Current elephant range and status in Mozambique. Pachyderm: 16: 44-47.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Ntumi, C.P., Ferreira, S.M. and van Aarde, R J. 2009. A review of historical trends in the distribution and abundance of elephants \u003Ci\u003ELoxodonta africana\u003C/i\u003E in Mozambique. Oryx: 43: 568-579.; Ntumi, C.P., van Aarde, R.J., Fairall, N. and de Boer, W.F. 2005. Use of space and habitat by elephants (\u003Ci\u003ELoxodonta africana\u003C/i\u003E) in the Maputo Elephant Reserve, Mozambique. South African Journal of Wildlife Research: 35: 139-146.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chase, M.J. and Griffin, C.R. 2009. Elephants caught in the middle: impacts of war, fences and people on elephant distribution and abundance in the Caprivi Strip, Namibia. African Journal of Ecology: 47: 223-233.; Gough, K. F. and Kerley, G. I. H. 2006. Demography and population dynamics in the elephants \u003Ci\u003ELoxodonta africana\u003C/i\u003E of Addo Elephant National Park, South Africa: is there evidence of density dependent regulation? Oryx: 40: 434-441.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Young, K. D., Ferreira, S. M. and van Aarde, R. J. 2009. The influence of increasing population size and vegetation productivity on elephant distribution in the Kruger National Park. Austral Ecology: 34: 329-342.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hameed, S.M.A. and Eljack, A.O. 2003. Ramsar Information Sheet (RIS) for Dinder National Park, Sudan. Wetlands International. 40","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Abe, E. 1992. The status of elephants in Uganda: Queen Elizabeth National Park. Pachyderm: 15: 49.; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Foley, C.A.H. and Faust, L.J. 2010. Rapid population growth in an elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E population recovering from poaching in Tarangire National Park, Tanzania. Oryx: 44: 205-212.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Lamprey, H.F. 1964. Estimation of the large mammal densities, biomass and energy exchange in the Tarangire Game Reserve and the Masai Steppe in Tanganyika. East African Wildlife Journal: 2: 1-46.; Swynnerton, G. H. and Hayman, R. W. 1951. A checklist of the land mammals of the Tanganyika Territory and the Zanzibar Protectorate. Journal of the East African Natural History Society: 20: 274-392.; Tanzania Wildlife Conservation Monitoring. 1992. Recent trends in Tanzanian Elephant population 1987-1992. Frankfurt Zoological Society. Arusha, Tanzania. ","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Chanda, G. and Tembo, A. 1993. Status of elephants on the Zambian bank of the middle Zambezi valley. Pachyderm: 16: 48-50.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dunham, K.M. 2008. Detection of anthropogenic mortality in elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E populations: a long-term case study from the Sebungwe region of Zimbabwe. Oryx: 42: 36-48.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Loxodonta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2005","name":"West African Elephants"}]},{"id":11692,"full_name":"Orcinus orca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Orca, Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Epaulard, Orque","convention_language":true,"id":null},{"lang":"German","names":"Schwertwal, Mordwal","convention_language":false,"id":null},{"lang":"Portuguese","names":"Orca, Baleia Assassina","convention_language":false,"id":null},{"lang":"Spanish","names":"Orca, Espadarte","convention_language":true,"id":null},{"lang":"Swedish","names":"späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Guinet, C. and Jouventin, P. 1990. La vie sociale des 'baleines tueuses'. Recherche (Paris): 220: 508-510.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Kami, H. T. and Hosmer, A. J. 1982. Recent beachings of whales on Guam. Micronesica: 18: 133-135.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Killer whale, \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus) and false killer whale, \u003Ci\u003EPseudorca crassidens\u003C/i\u003E Owen, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 181-182.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Ilangakoon, A., Mahendra, W. P. and Subasinghe, H. A. K. 1993. On rare cetacean species off Sri Lanka including the Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linn.) (Delphinidae: Cetacea). Journal of the Bombay Natural History Society: 89: 363-365.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Ottley, T., Henry, C., Khan, A., Siung-Chang, A. and Sturm, M. 1988. Incidents involving whales in Trinidad waters during 1987. Living World: 1988: 47.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Dalheim, M.E., Schulman-Janiger, A., Black, N., Ternullo, R., Ellifrit, D. and Balcomb III, K.C. 2008. Eastern temperate North Pacific offshore killer whales (\u003Ci\u003EOrcinus orca\u003C/i\u003E): Occurrence, movements, and insights into feeding ecology. Marine Mammal Science: 24: 719-729.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kuker, K. and Barrett-Lennard, L. 2010. A re-evaluation of the role of killer whales \u003Ci\u003EOrcinus orca\u003C/i\u003E in a population decline of sea otters \u003Ci\u003EEnhydra lutris\u003C/i\u003E in the Aleutian Islands and a review of alternative hypotheses. Mammal Review: 40: 103-124.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11693,"full_name":"Oenanthe leucopyga","author_year":"(Brehm, 1855)","common_names":[{"lang":"Danish","names":"Broget Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Witkruintapuit","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Wheatear, White-crowned Black Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet à tête blanche","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.; Sorace, A. 1996. The first White-crowned Black Wheatear \u003Ci\u003EOenanthe leucopyga\u003C/i\u003E in Turkey. Sandgrouse: 18: 68.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11694,"full_name":"Pelecanus rufescens","author_year":"Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Kleine Pelikaan","convention_language":false,"id":null},{"lang":"English","names":"Pink-backed Pelican","convention_language":true,"id":null},{"lang":"French","names":"Pélican gris","convention_language":true,"id":null},{"lang":"Spanish","names":"Pelícano rosado","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Shirihai, H., Khoury, F., Al-jbour, S. and Yosef, R. 2000. The first Pink-backed Pelican in Jordan. Sandgrouse: 22: 127-130.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Mwema, M. and Razafindrajao, F. 2006. First Pink-backed pelican \u003Ci\u003EPelecanus rufescens\u003C/i\u003E sightings in Madagascar since 1960. Bulletin of the African Bird Club: 13: 86-87.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11695,"full_name":"Acipenser nudiventris","author_year":"Lovetzky, 1828","common_names":[{"lang":"Bulgarian","names":"Ship","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter hladky","convention_language":false,"id":null},{"lang":"English","names":"Barbel Sturgeon, Fringebarbel Sturgeon, Ship, Ship Sturgeon, Thorn Sturgeon, Spiny Sturgeon, Bastard Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon à barbillons frangés, Esturgeon nu","convention_language":true,"id":null},{"lang":"German","names":"Schip, Glattdick, Dick","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viza, Szintok, Simatok","convention_language":false,"id":null},{"lang":"Polish","names":"Szypr","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-ventre-nu","convention_language":false,"id":null},{"lang":"Romanian","names":"Bogzar, Viza","convention_language":false,"id":null},{"lang":"Russian","names":"Ship","convention_language":false,"id":null},{"lang":"Serbian","names":"Sim","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión barba de flecos","convention_language":true,"id":null},{"lang":"Swedish","names":"knaggstör, glatdick, viza","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Banarescu, P. M. 1994. The present day conservation status of the freshwater fish fauna of Romania. Ocrot. nat. med. inconj.: 38: 43952.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"extinct","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Urchinov, Z.U. 1995. Fisheries in the Zarafshan river basin (Uzbekistan). In: Petr, T. (ed.) Inland fisheries under the impact of irrigated agriculture: Central Asia. URL: http://www.fao.org/docrep/V9529E/v9529E06.htm FAO Fisheries Department. Rome.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11697,"full_name":"Acrocephalus paludicola","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Vandsanger, Sarakerttunen","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Aquatic Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sarakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Phragmite aquatique","convention_language":true,"id":null},{"lang":"German","names":"Seggenrohrsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Pagliarolo","convention_language":false,"id":null},{"lang":"Polish","names":"Wodniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-aquática, Flosa-aquática","convention_language":false,"id":null},{"lang":"Russian","names":"Vertlyavaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín Cejudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vattensångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Schulze-Hagen, K. 1993. Winter quarters of the Aquatic Warbler and habitat situation: short review of recent knowledge. Unpublished.; Schulze-Hagen, K. and Wawrzyniak, H. 1993. Recent situation of the Aquatic Warbler in Germany and conservation activities. Unpublished.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.; Viksne, J. 1994. Putniem Nozīmīgás Vietas Latvijá. Latvijas Ornitologijas biedríba. Riga (Latvia).","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2003","name":"Aquatic Warbler"}]},{"id":11698,"full_name":"Acipenser persicus","author_year":"Borodin, 1897","common_names":[{"lang":"English","names":"Persian Sturgeon","convention_language":true,"id":null},{"lang":"Swedish","names":"persisk stör","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; http://www.caspianenvironment.org/biodb/eng/fishes/Acipenser%20persicus/main.htm. 2008. Caspian Environment Website. ; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kajiwara, N., Ueno, D., Monirith, I., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2003. Contamination by organochlorine compounds in sturgeons from Caspian Sea during 2001 and 2002. Marine Pollution Bulletin: 46(6): 741-747; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Artyukhin, E. N. and Zarkua, Z. G. 1986. [On the question of taxonomic status of the sturgeon in the Rioni River (the Black Sea basin).]. Voprosy Ikhtiologii: 26: 61-67.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kajiwara, N., Ueno, D., Monirith, I., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2003. Contamination by organochlorine compounds in sturgeons from Caspian Sea during 2001 and 2002. Marine Pollution Bulletin: 46(6): 741-747; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11699,"full_name":"Ciconia nigra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sort stork","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ooievaar","convention_language":false,"id":null},{"lang":"English","names":"Black Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustahaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne noire","convention_language":true,"id":null},{"lang":"German","names":"Schwarzstorch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete gólya","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna nera, Cigogna nera","convention_language":false,"id":null},{"lang":"Polish","names":"Bocian czarny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cegonha-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña negra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svart stork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Haupt, H., Lutz, K. and Boye, P (eds.) 2000. Internationale Impulse für den Schutz von Wasservögeln in Deutschland. Bundesamt für Naturschutz 2000. Münster.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Salewski, V., Bobek, M., Peske, L. and Pojer, F. 2000. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Ivory Coast. Malimbus: 22: 92-93.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Mackinnon, J. R. and Phillips, K. 2000. \u003Ci\u003EA field guide to the birds of China\u003C/i\u003E. Oxford University Press, Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Johnson, G. and Smiddy, P. 1989. Black Stork in Co. Dublin - a species new to Ireland. Irish Birds: 4: 69-70.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Tilson, R. L. and Kok, O. B. 1980. Habitat ecology of Black Storks in the Kuiseb River. Madoqua: 11: 347-349.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S. 1993. Status of storks, ibises and spoonbills in Nepal. Specialist Group on Storks, Ibises and Spoonbills Newsletter: 6: 6-8.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Ottosson, U., Hjort, C., Hall, P. Velmala, W. and Wilson, J. M. 2003. On the occurence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Nigeria. Malimbus: 25: 96-97","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Ali, Z. \u0026 Akhtar, M. 2005. Bird surveys at wetlands in Punjab, Pakistan, with special reference to the present status of white-headed duck \u003Ci\u003EOxyura leucocephala\u003C/i\u003E. Forktail 21:43-50; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lesniczak, A. B. 1989. The Black Stork, \u003Ci\u003ECiconia nigra\u003C/i\u003E, in the environs of Rybnik on the Silesian upland. Chronmy PRzyr. Ojczysta: 45: 68-70.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"brazil, M; Brazil, M. 2009. \u003Ci\u003EBirds of East Asia\u003C/i\u003E. Helm Field Guides. A\u0026C Black, London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Humphrey, S. R. and Bain, J. R. 1990. Endangered animals of Thailand. Sandhill Crane Press, Inc. Florida.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haupt, H., Lutz, K. and Boye, P (eds.) 2000. Internationale Impulse für den Schutz von Wasservögeln in Deutschland. Bundesamt für Naturschutz 2000. Münster.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11700,"full_name":"Oryx dammah","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"Danish","names":"Sabel oryx","convention_language":false,"id":null},{"lang":"Dutch","names":"Algazelle","convention_language":false,"id":null},{"lang":"English","names":"White Oryx, Scimitar-horned Oryx, Sahara Oryx","convention_language":true,"id":null},{"lang":"Finnish","names":"Sapelibeisa","convention_language":false,"id":null},{"lang":"French","names":"Oryx de Libye, Oryx algazelle","convention_language":true,"id":null},{"lang":"German","names":"Säbelantilope","convention_language":false,"id":null},{"lang":"Italian","names":"Orice dalla corna a sciabola","convention_language":false,"id":null},{"lang":"Spanish","names":"Orix de Cimitarra, Orix algacel","convention_language":true,"id":null},{"lang":"Swedish","names":"sabeloryx","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"extinct","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"extinct","country_references":"Anon. 1976. Consultants meeting on addax and oryx. IUCN, Morges, Switzerland . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct,reintroduced","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"extinct","country_references":"Newby, J. 1975. The Addax and the Scimitar-horned Oryx in Niger. Report to IUCN, Morges. Unpublished . ; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct","country_references":"East, R. 1988. Antelopes, global survey and regional action plans. Part 1. East and Northeast Africa. IUCN. Gland.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct,reintroduced","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Oryx","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11702,"full_name":"Cepphus grylle","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Tejst","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Zeekoet","convention_language":false,"id":null},{"lang":"English","names":"Black Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Riskilä","convention_language":false,"id":null},{"lang":"French","names":"Guillemot à miroir","convention_language":true,"id":null},{"lang":"German","names":"Gryllteiste","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete lumma","convention_language":false,"id":null},{"lang":"Italian","names":"Uria nera","convention_language":false,"id":null},{"lang":"Norwegian","names":"Teist","convention_language":false,"id":null},{"lang":"Polish","names":"Nurnik, Nurnik zwyczajny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau-d'asa-branca","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao Aliblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Tobisgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Cepphus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca grylle","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11703,"full_name":"Calidris tenuirostris","author_year":"(Horsfield, 1821)","common_names":[{"lang":"Dutch","names":"Grote Kanoet","convention_language":false,"id":null},{"lang":"English","names":"Great Knot, Eastern Knot","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau de l'Anadyr","convention_language":true,"id":null},{"lang":"Russian","names":"Bolshoy Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos grande","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.; Safford, R. J. 1992. A record of Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E from Mauritius, Indian Ocean. Bulletin of the British Ornithologists' Club: 112: 134-135.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Cohen, C. and Winter, D. 2003. Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E: a new species for sub-Saharan Africa. Bulletin of the African Bird Club: 10: 120-121.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schaftenaar, A. 1998. The first Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E in Yemen. Sandgrouse: 20: 48-49.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Totanus tenuirostris","author_year":"Horsfield, 1821"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11704,"full_name":"Huso huso","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Bli turishkurter, Bli turishkurte","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Moruna","convention_language":false,"id":null},{"lang":"Czech","names":"Vyza, Vyza velka","convention_language":false,"id":null},{"lang":"Danish","names":"Hasblas","convention_language":false,"id":null},{"lang":"Dutch","names":"Visgelatine","convention_language":false,"id":null},{"lang":"English","names":"Great Sturgeon, Giant Sturgeon, Russian Sturgeon, European Sturgeon, Beluga","convention_language":true,"id":null},{"lang":"Finnish","names":"Beluga, Kitasampi","convention_language":false,"id":null},{"lang":"French","names":"Beluga, Grand esturgeon, Ichtyocolle","convention_language":true,"id":null},{"lang":"German","names":"Husso, Hausenblase, Europäischer Hausen, Hausen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viza","convention_language":false,"id":null},{"lang":"Icelandic","names":"Mjaldur, Sundmaga hlaup","convention_language":false,"id":null},{"lang":"Italian","names":"Storione ladando, Colla di pesce","convention_language":false,"id":null},{"lang":"Japanese","names":"Gyoko, Kyabia","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Akipíssios, Mocuna","convention_language":false,"id":null},{"lang":"Norwegian","names":"Belugastør, Husblas","convention_language":false,"id":null},{"lang":"Polish","names":"Bieluga z. wyz, Wiz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjâo do Cáspio, Cola de peixe, Esturjão-beluga","convention_language":false,"id":null},{"lang":"Romanian","names":"Morun, Viza","convention_language":false,"id":null},{"lang":"Russian","names":"Kyrpy, Beluga","convention_language":false,"id":null},{"lang":"Serbian","names":"Moruna","convention_language":false,"id":null},{"lang":"Slovenian","names":"Beluga","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión beluga, Cola de pescado, Esturión, Beluga","convention_language":true,"id":null},{"lang":"Swedish","names":"Belugastör, viza, husstör, beluga, Husbloss, husblosstör","convention_language":false,"id":null},{"lang":"Turkish","names":"Mersinmorinasi, Mersinmorinasi baligi, Mersin morinasi","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Jivkov, M., Paykova, G., Miloshev, G., Vassilev, M. and Usanova, E. 2003. Action plan on the conservation of sturgeons in the Bulgarian aquatories of the Danube River and the Black Sea. Institute of Zoology, Bulgarian Academy of Sciences. Sofia. 25; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct,distribution uncertain","country_references":"Lusk, S. 1996. The status of the fish fauna of the Czech Republic. In: Conservation of Endangered Freshwater Fish in Europe. Basel: Birkhäuser Verlag.; Lusk, S. Hanel, L. and Lusková, V. 2004. Red List of the ichthyofauna of the Czech Republic: Development and present status. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 215–226.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Guchmanidze, A. 2009. Current and historical status of sturgeon (Acipenseridae, Osteichthyes) in Georgia. In: Zazanashvili, N. \u0026 Mallon, D. (Eds.) Status and protection of globally threatened species in the Caucasus. Tbilisi.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct (?)","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Chebanov, M., Rosenthal, H., Wulfstorf, N., Gessner, G. J., Van Anrooy, R., Doukakis, P., Pourkazemi, M., Rasht, I. and Williot, P. 2011. Technical guidelines on sturgeon hatchery practices and hatchery management for release. Fourth inter-governmental meeting on the establishment of the Central Asian and Caucasus Regional Fisheries and Aquaculture Commission . Issyk Kul, Kyrgyzstan. ; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Huso","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11705,"full_name":"Chloephaga picta","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Upland Goose, Magellan Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette de Magellan","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén común","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"extinct,introduced","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas picta","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11706,"full_name":"Eptesicus serotinus","author_year":"Schreber, 1774","common_names":[{"lang":"Albanian","names":"Lakuriqnate serotine","convention_language":false,"id":null},{"lang":"Danish","names":"Sydflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Laatvlieger","convention_language":false,"id":null},{"lang":"English","names":"Serotine, Common Serotine","convention_language":true,"id":null},{"lang":"Estonian","names":"Hilis-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Etelänlepakko","convention_language":false,"id":null},{"lang":"French","names":"Sérotine commune","convention_language":true,"id":null},{"lang":"German","names":"Breitflügelfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges késeidenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Síðblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Serotino comune","convention_language":false,"id":null},{"lang":"Maltese","names":"Serotin","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sørflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-hortelão","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cu-aripi-late","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier pozdný","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de huerta","convention_language":true,"id":null},{"lang":"Swedish","names":"Sydfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Robinson, M. F., Smith, A. L. and Bumrungsri, S. 1995. Small mammals of Thung Yai Naresuan and Huai Kha Khaeng Wildlife Sanctuaries in western Thailand. Natural History Bulletin of the Siam Society: 43: 27-54.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Volozheninov, N. N. 1978. [On the ethology of \u003Ci\u003EVespertilio serotinus\u003C/i\u003E.]. Uzbekskii biol. Zh.: 1978: 53-55.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eptesicus sodalis","author_year":"Barrett-Hamilton, 1910"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11707,"full_name":"Thalasseus bergii","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"Dutch","names":"Grote Kuifstern","convention_language":false,"id":null},{"lang":"English","names":"Great Crested-Tern, Greater Crested tern, Crested Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne huppée","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán piquigualdo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Castill, P. 1998. The first breeding record of Swift Tern Sterna bergii in Egypt. Sandgrouse: 20: 49-51.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; McLellan-Davidson, M.E. 1934. The Templeton Crocker expedition to Western Polynesian and Melanesian islands, 1933. Proceedings of the California academy of sciences: 21(16): 189-198.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna bergii","author_year":"Lichtenstein, 1823"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"African and Southwest Asian populations. Formerly listed as \u003Ci\u003ESterna bergii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11708,"full_name":"Myotis alcathoe","author_year":"von Helversen \u0026 Heller, 2001","common_names":[{"lang":"English","names":"Alcathoe's Myotis","convention_language":true,"id":null}],"distributions":[{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"von Helversen, O., Heller, K.-G., Mager, F., Nemeth, A., Volleth, M. and Gombkoto, P. 2001. Cryptic mammalian species: a new species of whiskered bat (\u003Ci\u003EMyotis alcathoe\u003C/i\u003E n. sp.) in Europe. Naturwissenschaften: 88: 217-223.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Agirre-Mendi, P. T., García-Mudarra, J. L., Juste, J. and Ibàñez, C. 2004. Presence of \u003Ci\u003EMyotis alcathoe\u003C/i\u003E Helversen \u0026 Heller, 2001 (Chiroptera, Vespertilionidae) in the Iberian Peninsula. Acta Chiropterologica: 6: 49-57","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11709,"full_name":"Anastomus lamelligerus","author_year":"Temminck, 1823","common_names":[{"lang":"English","names":"African Openbill","convention_language":true,"id":null},{"lang":"French","names":"Bec-ouvert africain","convention_language":true,"id":null},{"lang":"Spanish","names":"Picotenaza Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Anastomus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11710,"full_name":"Larus fuscus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Sildemåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Mantelmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Lesser Black-backed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Selkälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland brun","convention_language":true,"id":null},{"lang":"German","names":"Heringsmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Heringsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Zafferano","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-d'asa-escura","convention_language":false,"id":null},{"lang":"Russian","names":"Klusha","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Sombría","convention_language":true,"id":null},{"lang":"Swedish","names":"Silltrut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Smith, P. W. and Smith, S. A. 2000. Recent sight reports of Lesser Black-backed Gulls (\u003Ci\u003ELarus fuscus\u003C/i\u003E) from Cuba. El Pitirre: 13: 43-44.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S. C., Rivas, F. and Brown, C. 1998. A Lesser Black-backed Gull (\u003Ci\u003ELarus fuscus\u003C/i\u003E) in the Dominican Republic. El Pitirre: 11: 17.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Fairbank, R. J. 2002. Ring-billed \u003Ci\u003ELarus delawarensis\u003C/i\u003E and Lesser Black-backed Gulls \u003Ci\u003EL. fuscus\u003C/i\u003E in Venezuela. Cotinga: 17: 78.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus heuglini","author_year":"Bree, 1876"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11711,"full_name":"Sylvia melanocephala","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Sorthoved Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Sardinian Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Samettipääkerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette mélanocéphale","convention_language":true,"id":null},{"lang":"German","names":"Samtkopfgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kucsmás poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Occhiocotto","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka aksamitna, Pokrzewka aksamintna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-de-cabeça-preta, Toutinegra- de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Cabecinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Sammetshätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Smiddy, P. and O'Sullivan, O. 1994. Forty-first Irish Bird Report, 1993. Irish Birds: 5: 209-230.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Blad, A. 2002. [First record of the Sardinian Warbler \u003Ci\u003ESylvia melanocephala\u003C/i\u003E in Poland.]. Notatki Ornitologiczne: 43: 49-50.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11712,"full_name":"Pangasianodon gigas","author_year":"Chevey, 1931","common_names":[{"lang":"Danish","names":"Kæmpemalle","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenmeerval","convention_language":false,"id":null},{"lang":"English","names":"Giant Catfish","convention_language":true,"id":null},{"lang":"Finnish","names":"Isopiikkievämonni","convention_language":false,"id":null},{"lang":"French","names":"Silure De Verre Géant","convention_language":true,"id":null},{"lang":"German","names":"Riesenwels","convention_language":false,"id":null},{"lang":"Italian","names":"Siluro gigante","convention_language":false,"id":null},{"lang":"Spanish","names":"Siluro Gigante","convention_language":true,"id":null},{"lang":"Swedish","names":"mekongjättemal, indonesisk jättemal","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"D'Aubenton, F. 1963. Rapport sur le fonctionnement d'un barrage mobile sur le Tonlé-Sap. République Française. Ministère des Affaires Etrangères. Mission Francaise d'Aide Economique et Technique au Cambodge. Muséum National d'Histoire Naturelle . ; Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210; Kottelat, M. 1985. Fresh-water fishes of Kampuchea. A provisory annotated check-list. Hydrobiologia: 121: 249-279.; Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210; Sidthimunka, A. 1970. A report on the fisheries surveys of the Mekong River in the vicinity of the Pa Mong Dam site. Department of Fisheries, Thailand Technical Paper: 8: 75 pp.; Suvatti, C. and Menasveta, D. 1968. Threatened species of Thailand's aquatic fauna and preservation problems. In: Talbot, L. M. and Talbot, M. H. (eds.) Conservation in tropical South east Asia. IUCN Publication. New Series 10.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Siluriformes","class_name":"Actinopterygii","family_name":"Pangasiidae","genus_name":"Pangasianodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11713,"full_name":"Oenanthe xanthoprymna","author_year":"(Hemprich \u0026 Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Rødhalet Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodstaarttapuit","convention_language":false,"id":null},{"lang":"English","names":"Rufous-tailed Wheatear, Red-tailed Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Pinaperätasku, Punaperätasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet à queue rousse","convention_language":true,"id":null},{"lang":"German","names":"Rostbürzel-Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösarkú hantmadár, Vörösfarkú hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella codarossa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-de-dorso-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Colirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Persisk stenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11714,"full_name":"Phalaropus lobatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Lyskonoh úzkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Odinshane","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Phalarope, Northern Phalarope","convention_language":true,"id":null},{"lang":"Finnish","names":"Vesipääsky","convention_language":false,"id":null},{"lang":"French","names":"Phalarope à bec étroit","convention_language":true,"id":null},{"lang":"German","names":"Odinshühnchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vékonycsõrû víztaposó","convention_language":false,"id":null},{"lang":"Italian","names":"Falaropo becco sottile, Falaropo beccosottile","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falaropo-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Falaropo picofino","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad simsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dod, A. 1996. Primer reporte para \u003Ci\u003EPhalaropus lobatus\u003C/i\u003E en la República Dominicana. El Pitirre: 9: 6.; Rivas, F. M. 1997. Resumen de aves consideras como raras o accidentales para La República Dominicana. El Pitirre: 10: 58.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Phalaropus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Lobipes lobatus","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa lobata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11716,"full_name":"Rallus aquaticus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Vandrikse","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterral","convention_language":false,"id":null},{"lang":"English","names":"Western Water Rail, Water Rail","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtakana","convention_language":false,"id":null},{"lang":"French","names":"Râle d'eau","convention_language":true,"id":null},{"lang":"German","names":"Wasserralle","convention_language":false,"id":null},{"lang":"Hungarian","names":"Guvat","convention_language":false,"id":null},{"lang":"Italian","names":"Porciglione","convention_language":false,"id":null},{"lang":"Norwegian","names":"Vannrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Wodnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Frango-d'água","convention_language":false,"id":null},{"lang":"Russian","names":"Pastushok","convention_language":false,"id":null},{"lang":"Spanish","names":"Rascón Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vattenrall","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Rallus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11717,"full_name":"Acrocephalus orientalis","author_year":"(Temminck \u0026 Schlegel, 1847)","common_names":[{"lang":"English","names":"Oriental Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle d'Orient","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11718,"full_name":"Otomops martiensseni","author_year":"(Matschie, 1897)","common_names":[{"lang":"English","names":"Martienssen's Free-tailed Bat, Large-eared Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Hill, J. E. 1983. Further records of bats from the Central African Republic (Mammalia: Chiroptera). Annals of the Carnegie Museum: 52: 55-58.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Verschuren, J. 1957. Ecologie, biologie et systematique des cheiroptères. Exploration du Parc National de la Garamba, Mission H. de Saeger (1949-1952): Fascicule 7.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Largen, M. J., Kock, D. and Yalden, D. W. 1974. Catalogue of the mammals of Ethiopia. I. Chiroptera. Monitore Zoologica Italiano: 5: 221-298.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Dowsett, R. J. and Hunter, N. D. 1980. Birds and mammals of Mangochi Mountain. Nyala: 6: 5-118.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 1999. First record of \u003Ci\u003EOtomops martiensseni\u003C/i\u003E (Matschie 1897) for the Republic of Yemen (Mammalia, Chiroptera, Molossidae). Senckenbergiana Biologica: 78: 241-245.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Otomops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Only African populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11719,"full_name":"Natator depressus","author_year":"(Garman, 1880)","common_names":[{"lang":"English","names":"Flatback turtle","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blamires, S. J. and Guinea, M. L. 2003. Emergence success of Flatback Sea Turtles (\u003Ci\u003ENatator depressus\u003C/i\u003E) at Fog Bay, Northern Territory, Australia. Chelonian Conservation and Biology: 4(3): 548-556; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Koch, A.U., Guinea, M.L. and Whiting, S.D. 2008. Asynchronous emergence of flatback seaturtules, \u003Ci\u003ENatator depressus\u003C/i\u003E, from a beach hatchery in northern Australia. Journal of Herpetology: 42: 1-8.; Sutherland, R. W. and Sutherland, E. G. 2003. Status of the Flatback Sea Turtle (\u003Ci\u003ENatator depressus\u003C/i\u003E) Rookery on Crab Island, Australia, with notes on predation by crocodiles. Chelonian Conservation and Biology: 4(3): 612-619","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Natator","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"}]},{"id":11720,"full_name":"Muscicapa dauurica","author_year":"Pallas, 1811","common_names":[{"lang":"Danish","names":"Brun Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruine Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Asian Brown Flycatcher, Brown Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche brun","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögonflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Muscicapa latirostris","author_year":"Raffles, 1822"},{"full_name":"Muscicapa williamsoni","author_year":"Deignan, 1957"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11721,"full_name":"Acrocephalus tangorum","author_year":"La Touche, 1912","common_names":[{"lang":"English","names":"Manchurian Reed-warbler, White-browed Reed-warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle mandchoue","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. and Lewthwaite, R. W. 1996. Manchurian Reed Warbler: the first records for Hong Kong. Hong Kong Bird Report 1996 : 119-122.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11722,"full_name":"Vanellus spinosus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sporevibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Sporenkievit","convention_language":false,"id":null},{"lang":"English","names":"Spur-winged Plover, Spur-winged Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à éperons","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría espinosa","convention_language":true,"id":null},{"lang":"Swedish","names":"sporrvipa","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Robinson, S., van Daele, P. and van de Woestijne, C. 2001. New to Zambia: Spur-winged Plover \u003Ci\u003EVanellus spinosus\u003C/i\u003E. Zambia Bird Report: 1999: 69-72.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius spinosus","author_year":"Linnaeus, 1758"},{"full_name":"Hoplopterus spinosus","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11723,"full_name":"Gallinago megala","author_year":"Swinhoe, 1861","common_names":[{"lang":"Dutch","names":"Siberische Snip","convention_language":false,"id":null},{"lang":"English","names":"Swinhoe's Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine de Swinhoe","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza del Baikal","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1999. Fifty species new to Israel, 1979-1998: their discovery and documentation, with tips on identification. Sandgrouse: 21: 45-105.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella megala","author_year":"(Swinhoe, 1861)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11726,"full_name":"Alle alle","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun malý","convention_language":false,"id":null},{"lang":"Danish","names":"Søkonge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Alk","convention_language":false,"id":null},{"lang":"English","names":"Dovekie, Little Auk","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuruokki","convention_language":false,"id":null},{"lang":"French","names":"Mergule nain","convention_language":true,"id":null},{"lang":"German","names":"Krabbentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alkabukó","convention_language":false,"id":null},{"lang":"Italian","names":"Gazza marina minore","convention_language":false,"id":null},{"lang":"Polish","names":"Alczyk, Alczyk (traczyk)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Torda-aña","convention_language":false,"id":null},{"lang":"Russian","names":"Lyurik","convention_language":false,"id":null},{"lang":"Spanish","names":"Mérgulo Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Alkekung","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Alle","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca alle","author_year":"Linnaeus, 1758"},{"full_name":"Plautus alle","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11727,"full_name":"Aythya ferina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Polák velký","convention_language":false,"id":null},{"lang":"Danish","names":"Taffeland","convention_language":false,"id":null},{"lang":"Dutch","names":"Tafeleend","convention_language":false,"id":null},{"lang":"English","names":"Pochard, Common Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Punasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule milouin","convention_language":true,"id":null},{"lang":"German","names":"Tafelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barátréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moriglione","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-comum, Zarro-comun","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Brunand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas ferina","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11728,"full_name":"Gavia stellata","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Czech","names":"Potáplice malá","convention_language":false,"id":null},{"lang":"Danish","names":"Rødstrubet lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodkeelduiker","convention_language":false,"id":null},{"lang":"English","names":"Red-throated Loon, Red-throated Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaakkuri, Kaalkkuri","convention_language":false,"id":null},{"lang":"French","names":"Plongeon catmarin","convention_language":true,"id":null},{"lang":"German","names":"Sterntaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Északi búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Smålom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur rdzawoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo Chico, Colímbo chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Smålom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus stellatus","author_year":"Pontoppidan, 1763"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11729,"full_name":"Balaenoptera physalus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Gewone Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Herring Whale, Finner, Common Rorqual, Razorback, Fin-backed Whale, Finback, Fin Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine à nageoires, Baleinoptère commun, Baleine fin, Rorqual commun","convention_language":true,"id":null},{"lang":"German","names":"Finnwal","convention_language":false,"id":null},{"lang":"Norwegian","names":"Finnhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Rorcual común, Ballena boba, Ballena aleta","convention_language":true,"id":null},{"lang":"Swedish","names":"sillval","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Amon Kothias, J.-B. and N'Goran, N. Y. 1991. Note sur les baleines echouées en estuaires artificiels en Côte d'Ivoire. Journal Ivoirien d'Oceanologie et de Limnologie: 1: 153-155.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Grubh, B. R. and Pereira, M. J. 1965. Strandings of Finner Whale (\u003Ci\u003EBalaenoptera physalus\u003C/i\u003E Linn.) near Virar (Thana District) and at Bombay, Maharashtra State. Journal of the Bombay Natural History Society: 62: 550-551.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.; Dammerman, K. W. 1938. \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E, een voor Indie nieuwe walvischsoort gestrand op Noesa Kambangan. De Tropische Natur: 27: 48-49.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Spanier, E. 1981. Whales on Israel's coasts? Israel Land \u0026 Nature: 7: 32-33.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Presence and distribution of \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L.) and \u003Ci\u003EBalaenoptera\u003C/i\u003E spp. in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 185-187.; Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mizroch, S.A., Rice, D.W., Zwiefelhofer, D., Waite, J. and Perryman, W.L. 2009. Distribution and movements of fin whales in the North Pacific Ocean. Mammal Review: 39: 193-227.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Anon. 2004. Blue Ventures Conservation Andavadoaka, Madagascar Research update, March 2004. http://www.blueventures.org/BVUpdate0304.pdf . ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1978. Red data book: Mammalia. IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Husson, A. M. 1978. The mammals of Surinam. E. J. Brill. Leiden.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.; Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Mizroch, S.A., Rice, D.W., Zwiefelhofer, D., Waite, J. and Perryman, W.L. 2009. Distribution and movements of fin whales in the North Pacific Ocean. Mammal Review: 39: 193-227.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11732,"full_name":"Glareola nordmanni","author_year":"Fischer, 1842","common_names":[{"lang":"Danish","names":"Sortvinget Braksvale","convention_language":false,"id":null},{"lang":"Dutch","names":"Steppenvorkstaartplevier, Steppevorkstaartplevier","convention_language":false,"id":null},{"lang":"English","names":"Black-winged Pratincole","convention_language":true,"id":null},{"lang":"Finnish","names":"Aropääskykahlaaja","convention_language":false,"id":null},{"lang":"French","names":"Glaréole à ailes noires","convention_language":true,"id":null},{"lang":"German","names":"Schwarzflügel-Brachschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketeszárnyú székicsér","convention_language":false,"id":null},{"lang":"Italian","names":"Pernice di mare orientale","convention_language":false,"id":null},{"lang":"Polish","names":"Wirowiec stepowy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perdoz-do-mar-d'asa-preta, Perdiz-do-mar-d'asa-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Canastera Alinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartvingad vadarsvala","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11734,"full_name":"Anas erythrorhyncha","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Red-billed Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade piquirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11735,"full_name":"Charadrius pecuarius","author_year":"Temminck, 1823","common_names":[{"lang":"Danish","names":"Kittlitz Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Herdersplevier","convention_language":false,"id":null},{"lang":"English","names":"Kittlitz's Sandplover, Kittlitz's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier pâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo pecuario","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11736,"full_name":"Platalea minor","author_year":"Temminck \u0026 Schlegel, 1849","common_names":[{"lang":"English","names":"Black-faced Spoonbill","convention_language":true,"id":null},{"lang":"French","names":"Petite Spatule","convention_language":true,"id":null},{"lang":"German","names":"Schwarzgesichtlöffler","convention_language":false,"id":null},{"lang":"Spanish","names":"Espátula menor","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; La Touche, J. D. D. 1925. A handbook of the birds of eastern China, 1. Taylor and Francis. London.; La Touche, J. D. D. 1934. A handbook of the birds of eastern China, 2. Taylor and Francis. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11737,"full_name":"Taphozous nudiventris","author_year":"Cretzschmar, 1830","common_names":[{"lang":"English","names":"Naked-rumped Tomb Bat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Koch-Weser, S. 1984. Fledermäuse aus Obervolta, W-Afrika. Senckenbergiana Biologica: 64: 255-311.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Vielliard, J. 1974. Les cheiroptères du Tchad. Revue Suisse de Zoologie: 81: 975-991.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Verschuren, J. 1957. Ecologie, biologie et systematique des cheiroptères. Exploration du Parc National de la Garamba, Mission H. de Saeger (1949-1952): Fascicule 7.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Advani, R. 1982. Species composition, relative abundance and associationship of Chiroptera fauna with different rainfall zones in the Indian desert. Zool. Anz.: 208: 276-282.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chandrashekaran, M. K. 2003. Chronobiology, ecology and beaviour of some insectivorous bats of southern India. Journal of the Bombay Natural History Society: 100: 250-283.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Darweesh, N., Al-Melhim, W. N., Disi. A. M. and Amr, Z. S. 1997. First record of the naked-bellied tomb bat, \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E Crtezschmar, 1830, from Jordan. Zoology in the Middle East: 15: 13-14.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Aulagnier, S. and Denys, C. 2000. Presence du taphien à ventre nu, \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E, (Chiroptera, Emballonuridae) au Maroc. Mammalia: 64: 116-118.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dorst, J. 1982. Découverte de \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E dans l'Air (chiroptères). Mammalia: 46: 407-408.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Robbins, C. B. 1980. Small mammals of Togo and Benin. 1. Chiroptera. Mammalia: 44: 83-88.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Sachanowicz, K., Bogdanowicz, W. and Michalak, S. 1999. First record of \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E Cretzschmar, 1830 (Chiroptera, Emballonuridae) in Turkey. Mammalia: 63: 105-107.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Emballonuridae","genus_name":"Taphozous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Taphozous kachhensis","author_year":"Dobson, 1872"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":11738,"full_name":"Hyperoodon ampullatus","author_year":"(Forster, 1770)","common_names":[{"lang":"English","names":"Bottlehead, Northern Bottlenose Whale","convention_language":true,"id":null},{"lang":"French","names":"Hyperoodon boréal","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena hocico de botella del norte","convention_language":true,"id":null},{"lang":"Swedish","names":"nordlig näbbval, vanlig näbbval, dögling","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Silva, M.A., Prieto, R., Magalhães, S., Cabecinhas, R., Cruz, A., Gonçalves, J.M. and Santos, R.S. 2003. Occurrence and distribution of cetaceans in the waters around the Azores (Portugal), summer and autumn 1999-2000: 29(1): 77–83.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Hyperoodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11739,"full_name":"Aythya americana","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Redhead","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à tête rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón Americano","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2005. Fifty-first Irish Bird Report 2003. Irish Birds: 7: 549-574.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula americana","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11741,"full_name":"Charadrius montanus","author_year":"Townsend, 1837","common_names":[{"lang":"English","names":"Mountain Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier montagnard","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito llanero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"extinct","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Desmond, M. J. and Ramirez, F. C. 2002. Nest documentation confirms the presence of a breeding population of Mountain Plover \u003Ci\u003ECharadrius montanus\u003C/i\u003E in north-east Mexico. Cotinga: 17: 17-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eupoda montana","author_year":"(J. K. Townsend, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11742,"full_name":"Calidris acuminata","author_year":"(Horsfield, 1821)","common_names":[{"lang":"Danish","names":"Spidshalet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Sharp-tailed Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à queue pointue","convention_language":true,"id":null},{"lang":"Russian","names":"Ostrokhvosty Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos acuminado","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Patient, R. 2003. The first Sharp-tailed Sandpiper \u003Ci\u003ECalidris acuminata\u003C/i\u003E for Madagascar. Bulletin of the African Bird Club: 10: 50-51.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia acuminata","author_year":"(Horsfield, 1821)"},{"full_name":"Totanus acuminatus","author_year":"Horsfield, 1821"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11744,"full_name":"Trichechus inunguis","author_year":"(Natterer, 1883)","common_names":[{"lang":"Dutch","names":"Amazone Lamantijn","convention_language":false,"id":null},{"lang":"English","names":"South American Manatee, Amazonian Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin de l'Amazone, Lamantin d'Amérique du sud","convention_language":true,"id":null},{"lang":"German","names":"Amazonas-Seekuh","convention_language":false,"id":null},{"lang":"Spanish","names":"Lamantino amazónico, Vaca marina amazónica, Manatí amazónico","convention_language":true,"id":null},{"lang":"Swedish","names":"sydamerikansk manat, amazonmanat","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Domning, D. P. 1982. Commercial exploitation of manatees \u003Ci\u003ETrichechus\u003C/i\u003E in Brazil c. 1785-1973. Biological Conservation: 22: 101-126.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Noriega Murrieta, J. and Godfrey Ruiz, C. 2006. Conservation of aquatic biodiversity in Pacaya-Samiria National Reserve, Peru. ProNaturaleza. Lima, Peru. 8; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11745,"full_name":"Arctocephalus australis","author_year":"(Zimmermann, 1783)","common_names":[{"lang":"Dutch","names":"Zuidamerikaanse Pelsrob","convention_language":false,"id":null},{"lang":"English","names":"South American Fur Seal, Southern Fur Seal","convention_language":true,"id":null},{"lang":"French","names":"Otarie à fourrure australe","convention_language":true,"id":null},{"lang":"German","names":"Südamerikanische Pelzrobbe","convention_language":false,"id":null},{"lang":"Spanish","names":"Lobo fino sudamericano, Oso marino austral","convention_language":true,"id":null},{"lang":"Swedish","names":"sydamerikansk pälssäl, sydlig pälssäl, sydlig sjöbjörn","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Cabrera, A. 1957. Catalogo de los mamiferos de America del sur, vol. I, Metatheria, Unguiculata, Carnivora. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Ciencias Zoologicas: 4: 1-307.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Cabrera, A. 1957. Catalogo de los mamiferos de America del sur, vol. I, Metatheria, Unguiculata, Carnivora. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Ciencias Zoologicas: 4: 1-307.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Augusto Tovar, S. 1971. Catalogo de mamiferos peruanos. Anales Cientificos, Lima, Peru: 9: 18-37.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Otariidae","genus_name":"Arctocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11747,"full_name":"Acrocephalus arundinaceus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Rákosník velký","convention_language":false,"id":null},{"lang":"Danish","names":"Drosselrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Karekiet","convention_language":false,"id":null},{"lang":"English","names":"Great Reed Warbler, Great Reed-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rastaskerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle turdoïde","convention_language":true,"id":null},{"lang":"German","names":"Drosselrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nádirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Cannareccione","convention_language":false,"id":null},{"lang":"Polish","names":"Trzciniak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-grande-dos-caniços","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Tordal","convention_language":true,"id":null},{"lang":"Swedish","names":"Trastsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Kainady, P. V. G. 1976. First positive breeding record of \u003Ci\u003EAcrocephalus arundinaceus\u003C/i\u003E Eurasian Great Reed Warbler for Iraq. Bull. Basrah Nat. Hist. Mus.: 3: 101-105.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11748,"full_name":"Coragyps atratus","author_year":"(Bechstein, 1783)","common_names":[{"lang":"English","names":"Black Vulture, American Black Vulture","convention_language":true,"id":null},{"lang":"French","names":"Urubu noir, Vautour urubu","convention_language":true,"id":null},{"lang":"Spanish","names":"Zopilote negro, Buitre negro americano","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Coragyps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11750,"full_name":"Otis tarda","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Drop velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stortrappe","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote trap","convention_language":false,"id":null},{"lang":"English","names":"Great Bustard","convention_language":true,"id":null},{"lang":"Finnish","names":"Isotrappi","convention_language":false,"id":null},{"lang":"French","names":"Grande Outarde, Outarde barbue","convention_language":true,"id":null},{"lang":"German","names":"Großtrappe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Túzok","convention_language":false,"id":null},{"lang":"Italian","names":"Otarda, Otarda comune","convention_language":false,"id":null},{"lang":"Polish","names":"Drop","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abetarda-comum, Abetarda","convention_language":false,"id":null},{"lang":"Russian","names":"Drofa","convention_language":false,"id":null},{"lang":"Spanish","names":"Avutarda euroasiática, Avutarda común, Avutarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Stortrapp","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct,distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"extinct,distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dornbusch, M. 1983. Status, ecology and conservation of Great Bustard in the German Democratic Republic. In Goriup, P. D. and Vardhan, H. (eds) Bustards in decline. Tourism and Wildlife Society of India. Jaipur.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Farago, S. 1993. Development of the Great Bustard population in Hungary in the period 1981-1990. Folia Zoologica: 42: 221-236.; Farago, S., Ena, V. and Martinez, A. 1987. Comparison of the state of Great Bustard stocks in Hungary and Spain. In: Farago, S. (ed.) The Great Bustard (Otis tarda L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 51-63; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.; Tareh, H. A. 2000. The status of Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Iran. Sandgrouse: 22: 55-60.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Alonso, J. C., Lane, S. J., Dawson, R. and Idaghdour, Y. 2000. Great bustards \u003Ci\u003EOtis tarda\u003C/i\u003E in Morocco: status in spring 1999 and evidence of a decline in recent decades. Oryx: 34: 141-146.; Alonso, J. C., Palacin, C., Martin, C. A., Mouati, N., Arhzaf, Z. L. and Azizi, D. 2005. The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Morocco: a re-evaluation of its status based on recent survey results. Ardeola: 52: 79-90.; Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Bereszynski, A. and Kaczmarkowski, M. 1983. Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.) in Poland. Pp. 118-120 In: Goriup, P. D. and Vardhan, H. (eds.) Bustards in decline. Tourism and Wildlife Society of India. Jaipur.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Alonso, J. C., Palacín, C. and Martín, C. A. 2003. Status and recent trends of the great bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) population in the Iberian peninsula. Biol. Conserv.: 110: 185-195.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bugalho, F. F. 1987. Great Bustard in Portugal. Pp. 65-76 In: Farago, S. (ed.) The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Alonso, J. C., Martin, C. A., Palacin, C., Martin, B. and Magana, M. 2005. The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Andalusia, southern Spain: status, distribution and trends. Ardeola: 52: 67-78.; Alonso, J. C., Palacín, C. and Martín, C. A. 2003. Status and recent trends of the great bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) population in the Iberian peninsula. Biol. Conserv.: 110: 185-195.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Farago, S., Ena, V. and Martinez, A. 1987. Comparison of the state of Great Bustard stocks in Hungary and Spain. In: Farago, S. (ed.) The Great Bustard (Otis tarda L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 51-63; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Otero, C. 1987. The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) in Spain. In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 43-50","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goriup, P. D. and Parr, D. F. 1985. Results of the ICBP bustard survey of Turkey, 1981. Bustard Studies: 2: 77-98.; Kasparek, M. 1989. Status and distribution of the Great Bustard and the Little Bustard in Turkey. Bustard Studies: 4: 80-113.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Andryushchenko, Y. 2002. Current state of the Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E wintering population in south Ukraine. Sandgrouse: 24: 109-116.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain,extinct","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Otis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":false,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Middle-European population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2001","name":"Middle European Great Bustard"}]},{"id":11751,"full_name":"Acipenser fulvescens","author_year":"Rafinesque, 1817","common_names":[{"lang":"English","names":"Lake Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Järvisampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon jaune","convention_language":true,"id":null},{"lang":"Polish","names":"Jesiotr jeziorny","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión lacustre","convention_language":true,"id":null},{"lang":"Swedish","names":"insjöstör, Amerikansk stör","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Birstein, V., Waldman, J. R. and Bernis, W. E (eds.) 1997. Sturgeon biodiversity and conservation. Kluwer Academic Publishers. Dordrecht.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Houston, J. J. 1987. Status of the Lake Sturgeon, \u003Ci\u003EAcipenser fulvescens\u003C/i\u003E, in Canada. Canadian Field Naturalist: 101: 171-185.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Birstein, V., Waldman, J. R. and Bernis, W. E (eds.) 1997. Sturgeon biodiversity and conservation. Kluwer Academic Publishers. Dordrecht.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kempinger, J. J. 1996. Habitat, growth and food of young Lake Sturgeons in the Lake Winnebago system, Wisconsin. North American Journal of Fisheries Management: 16: 102-114.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11752,"full_name":"Pipistrellus nathusii","author_year":"(Keyserling \u0026 Blasius, 1839)","common_names":[{"lang":"Albanian","names":"Pipistreli i Nathusit","convention_language":false,"id":null},{"lang":"Croatian","names":"Šumski šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr parkový","convention_language":false,"id":null},{"lang":"Danish","names":"Troldflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Nathusius' dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Nathusius's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Pargi-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Pikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle de Nathusius","convention_language":true,"id":null},{"lang":"German","names":"Rauhhautfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Durvavitorlájú törpedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Trítilblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello di Nathusius","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Natuzijaus šikšniukas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Trollflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Nathusius","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier parkový","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de Nathusius","convention_language":true,"id":null},{"lang":"Swedish","names":"Trollfladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Pürtüklü yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Borissenko, A. V., Kruskop, S. V. and Kashtalian, A. P. 1999. [New mammal species (Chiroptera, Insectivora) in the Berezinsky Biosphere Reserve.]. Vestnik Zoologii: 33: 107-113, 126.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Furmankiewicz, J. 2003. The vocal activity of \u003Ci\u003EPipistrellus nathusii\u003C/i\u003E (Vespertilionidae) in SW Poland. Acta Chiropterologica: 5(1): 97-105; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Speakman, J. R., Racey, P. A., Hutson, A. M., Webb, P. I. and Burnett, A. M. 1991. Status of Nathusius's pipistrelle (\u003Ci\u003EPipistrellus nathusii\u003C/i\u003E) in Britain. Journal of Zoology, London: 225: 685-690.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11753,"full_name":"Gavia immer","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Czech","names":"Potáplice lední","convention_language":false,"id":null},{"lang":"Danish","names":"Islom","convention_language":false,"id":null},{"lang":"Dutch","names":"Ijsduiker","convention_language":false,"id":null},{"lang":"English","names":"Great Northern Diver, Common Loon","convention_language":true,"id":null},{"lang":"Finnish","names":"Amerikanjääkuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon huard, Plongeon imbrin","convention_language":true,"id":null},{"lang":"German","names":"Eistaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jeges búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga maggiore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Islom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur lodowiec, Lodowiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-grande, Mobélha-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo, Colimbo Grande, Colímbo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Islom, Svartnäbbad islom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus immer","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Northwest European population.\r\nFormerly listed as \u003Ci\u003EGavia immer immer\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11754,"full_name":"Rhinolophus hipposideros","author_year":"(Bechstein, 1800)","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i vogel","convention_language":false,"id":null},{"lang":"Croatian","names":"Mali potkovnjak","convention_language":false,"id":null},{"lang":"Czech","names":"Vrápenec malý","convention_language":false,"id":null},{"lang":"Danish","names":"Lille hesteskonæse, Lille hestekonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Lesser Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiöhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Petit rhinolophe","convention_language":true,"id":null},{"lang":"German","names":"Kleine Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis patkósdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Dvergskeifa","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Liten hesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"podkowiec maly","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-pequeno","convention_language":false,"id":null},{"lang":"Slovak","names":"Podkovár krpatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago pequeño de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärghästskonäsa","convention_language":false,"id":null},{"lang":"Turkish","names":"Küçük nal burunlu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Aellen, V. 1959. Contribution à l'étude de la faune d'Afghanistan 9. Chiroptères. Rev. suisse Zool.: 66: 353-386.; Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Demjanchik, V. and Demjanchik, M. 2003. Information on bats protection and investigation in Belarus in 2000 - first half 2003. www.eurobats.org/PartyReports/Belarus2003Report.pdf . ","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Bontadina, F., Arlettaz, R., Fankhauser, T., Lutz, M., Muhlethaler, E., Theiler, A. and Zingg, P. 2000. The lesser horseshoe bat \u003Ci\u003ERhinolophus hipposideros\u003C/i\u003E in Switzerland: present status and recommendations. Rhinolophe: 14: 69-84.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11755,"full_name":"Locustella ochotensis","author_year":"(Middendorff, 1853)","common_names":[{"lang":"English","names":"Middendorff's Grasshopper-Warbler, Middendorff's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Middendorff","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1994. Middendorff's Grasshopper Warbler: the first record for Hong Kong. Hong Kong Bird Report 194: 123-131.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11756,"full_name":"Eudromias morinellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Morinelplevier","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Dotterel","convention_language":true,"id":null},{"lang":"French","names":"Pluvier guignard","convention_language":true,"id":null},{"lang":"Russian","names":"Khrustan","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito carambolo","convention_language":true,"id":null},{"lang":"Swedish","names":"fjällpipare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Eudromias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius morinellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11757,"full_name":"Acrocephalus griseldis","author_year":"(Hartlaub, 1891)","common_names":[{"lang":"English","names":"Basra Reed-warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle d'Irak","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Lewis, J. M. S. and Tyler, L. 1997. First record of Basra Reed Warbler \u003Ci\u003EAcrocephalus griseldis\u003C/i\u003E in Botswana. Ostrich: 68: 44--45.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Adhami, A. 2006. An updated checklist of the birds of Iran. Podoces: 1: 1-16.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11759,"full_name":"Feresa attenuata","author_year":"Gray, 1874","common_names":[{"lang":"English","names":"Slender Blackfish, Pygmy Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Epaulard pygmée, Orque pygmée","convention_language":true,"id":null},{"lang":"Spanish","names":"Orca pigmea","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgspäckhuggare, mindre späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Lichter, A. A., Fraga, F. and Castello, H. P. 1990. First record of the pygmy killer whale, \u003Ci\u003EFeresa attenuata\u003C/i\u003E, in the southwest Atlantic. Marine Mammal Science: 6: 85-86.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Williams, A.D., Williams, R. and Brereton, R. 2002. The sighting of pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the southern Bay of Biscay and their association with cetacean calves. Journal of the Marine Biological Association of the United Kingdom: 82: 509-511.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Van Waerebeek, K. and Reyes, J. C. 1988. First record of the pygmy killer whale, \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1875 from Peru, with a summary of distribution in the eastern Pacific. Z. Säugetierkd.: 53: 253-255.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Rodriguez-Lopez, M. A. and Mignucci-Giannoni, A. A. 1999. A stranded pygmy killer whale (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in Puerto Rico. Aquatic Mammals: 25: 119-121.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Williams, A.D., Williams, R. and Brereton, R. 2002. The sighting of pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the southern Bay of Biscay and their association with cetacean calves. Journal of the Marine Biological Association of the United Kingdom: 82: 509-511.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; McSweeney, D.J., Bard, R.W., Mahaffy, S.D., Webster, D.L. and Schorr, G.S. 2009. Site fidelity and association patterns of a rare species: Pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the main Hawaiian Islands. Marine Mammal Science: 25: 557-572.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Feresa","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11761,"full_name":"Oxyura leucocephala","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Hvidhovedet and","convention_language":false,"id":null},{"lang":"Dutch","names":"Witkopeend","convention_language":false,"id":null},{"lang":"English","names":"White-headed Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Viuhkasorsa","convention_language":false,"id":null},{"lang":"French","names":"Érismature à tête blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkopf-Ruderente, Weißkopfente, Weisskopfruderente","convention_language":false,"id":null},{"lang":"Italian","names":"Gobbo rugginoso","convention_language":false,"id":null},{"lang":"Polish","names":"Sterniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-rabo-alçado","convention_language":false,"id":null},{"lang":"Spanish","names":"Malvasía Cabeciblanca, Malvasía","convention_language":true,"id":null},{"lang":"Swedish","names":"Kopparand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Djahida, B. 1996. Status and conservation of the White-headed Duck in Algeria. Oxyura: 8: 21-24.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Sultanov, E. H. 2001. Status of White-headed Duck in Azerbaijan. Threatened Waterfowl Research Group News: 13: 44-45.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dimitrov, M., Profirov, L., Nyagolov, K. and Michev, T. 2000. Record counts of White-headed Duck in Bulgaria. Threatened Waterfowl Research Group News: 12: 18-20.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Hulo, I., Horvat, F. and Sekeres, O. 2008. New data on rare breeding and migrant species [of birds] on Subotica lakes and sandy terrains (Serbia). Ciconia (Serbia and Montenegro): 14: 57-62.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Handrinos, G. I. 1996. The White-headed Duck \u003Ci\u003EOxyura leucocephala\u003C/i\u003E in Greece. Oxyura: 8: 31-35.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gustin, M.Rizzi, V. and Gallo-Orsi, U. 2000. White-headed Duck reintroduction in Apulia, southern Italy: 1999 update. Threatened Waterfowl Research Group News: 12: 21-25.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Torres, J. 2001. New records of White-headed Duck from Morocco. Threatened Waterfowl Research Group News: 13: 43.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dolz, J. C., Gimenez, M. and Huertas, J. 1991. Status of some threatened Anatidae species in the Comunidad, Valencia, East Spain. IWRB Threatened Waterfowl Research Group Newsletter: 1: 7-8.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Azafzaf, H. 2001. White-headed Ducks in Tunisia. Threatened Waterfowl Research Group News: 13: 37-42.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. (ed.) 1975. Turkey bird report 1970-1973.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.; Kreuzberg-Mukhina, E., Lanovenko, Y., Filatov, A. and Zagrabin, S. 2001. Status and distribution of the White-headed Duck in Uzbekistan. Threatened Waterfowl Research Group News: 13: 46-48.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11763,"full_name":"Barbastella leucomelas","author_year":"(Cretzschmar, 1826)","common_names":[{"lang":"English","names":"Eastern Barbastelle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Harrison, D. L. and Makin, D. 1989. Significant new records of vespertilionid bats (Chiroptera: Vespertilionidae) from Israel. Mammalia: 52: 593-596.; Makin, D. 1976. Preliminary report of a survey of Microchiroptera in Israel. Abstract. Israel J. Zool.: 25: 211.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Shaimardanov, R. T. 1982. [\u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E and \u003Ci\u003EBarbastella leucomelas\u003C/i\u003E (Chiroptera) in Kazakhstan.]. Zool. Zhur.: 61: 1765.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Khabilov, T. K. 1986. [New data on bats (Chiroptera: Vespertilionidae) in Badakhshan.]. Dokl. Akad. Nauk Tadzh. SSR: 29: 628-631.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Barbastella darjelingensis","author_year":"(Hodgson, 1855)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11764,"full_name":"Acipenser gueldenstaedtii","author_year":"Brandt \u0026 Ratzeburg, 1833","common_names":[{"lang":"Bulgarian","names":"Ruska esetra","convention_language":false,"id":null},{"lang":"English","names":"Danube Sturgeon, Azov-Black Sea Sturgeon, Kura Sturgeon, Osetr, Russian Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Venäjänsampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon du Danube, Esturgeon russe, Osciètre","convention_language":true,"id":null},{"lang":"German","names":"Waxdick, Russischer Stör","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vágo tok","convention_language":false,"id":null},{"lang":"Italian","names":"Storione danubiano","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Storioni","convention_language":false,"id":null},{"lang":"Norwegian","names":"Rysk stør","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr kolchidzki, Jesiotr rosyjski, Jesiotr krótkonosy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-do-Danúbio, Esturjao do Danúbio","convention_language":false,"id":null},{"lang":"Romanian","names":"Nisetru","convention_language":false,"id":null},{"lang":"Russian","names":"Russkii osetr, Viziga, Djirim, Chernamorsko-azovskyi osetr","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión del Danubio","convention_language":true,"id":null},{"lang":"Swedish","names":"Rysk stör, Osetr","convention_language":false,"id":null},{"lang":"Turkish","names":"Karaca baligi, Karaca","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Karapetkova, M. Zhivkov, M. and Pchelarov, T. 1995. Ribite v B'lgariya. Geya Libris. Sofia.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Vecsei, P. 2001. Threatened fishes of the world: \u003Ci\u003EAcipenser gueldenstaedtii\u003C/i\u003EBrandt \u0026 Ratzenburg, 1833 (Acipenseridae). Environmental Biology of Fishes: 60: 362.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Birstein, V. J. 1996. Sturgeons in the Lower Danube: a trip to Romania. The Sturgeon Quarterly: 4: 41223.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Levin, A.V. 1997. The Distribution and Migration of Sturgeon in the Caspian Sea. IUCN. Gland, Switzerland and Cambridge, UK. 13-19; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11765,"full_name":"Niltava grandis","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Large Niltava","convention_language":true,"id":null},{"lang":"French","names":"Grand Gobemouche","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11766,"full_name":"Locustella fasciolata","author_year":"(Gray, 1860)","common_names":[{"lang":"Danish","names":"Stor Græshoppesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Krekelzanger","convention_language":false,"id":null},{"lang":"English","names":"Gray's Warbler, Gray's Grasshopper-Warbler, Gray's Grasshopper Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle fasciée","convention_language":true,"id":null},{"lang":"Swedish","names":"större flodsångare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11767,"full_name":"Melanitta nigra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sortand","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Zeeëend","convention_language":false,"id":null},{"lang":"English","names":"Common Scoter, Black Scoter","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustalintu","convention_language":false,"id":null},{"lang":"French","names":"Macreuse noire","convention_language":true,"id":null},{"lang":"German","names":"Trauerente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete réce","convention_language":false,"id":null},{"lang":"Italian","names":"Orchetto marino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Svartand","convention_language":false,"id":null},{"lang":"Polish","names":"Markaczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-negro","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sjöorre","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas nigra","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11768,"full_name":"Turdus obscurus","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Gul Larmdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Vale Lijster","convention_language":false,"id":null},{"lang":"English","names":"Eye-browed Thrush, Eyebrowed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle obscur","convention_language":true,"id":null},{"lang":"Polish","names":"Drozd oliwkowy","convention_language":false,"id":null},{"lang":"Russian","names":"Olivkovy Drozd","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11769,"full_name":"Turdus merula","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Solsort","convention_language":false,"id":null},{"lang":"Dutch","names":"Merel","convention_language":false,"id":null},{"lang":"English","names":"Blackbird, Common Blackbird, Eurasian Blackbird","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustarastas","convention_language":false,"id":null},{"lang":"French","names":"Merle noir","convention_language":true,"id":null},{"lang":"German","names":"Amsel","convention_language":false,"id":null},{"lang":"Italian","names":"Merlo","convention_language":false,"id":null},{"lang":"Polish","names":"Kos","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merlo-preto, Melro-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Chyorny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Mirlo Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Koltrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"extinct,introduced","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11770,"full_name":"Himantopus himantopus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stylteløber","convention_language":false,"id":null},{"lang":"Dutch","names":"Steltkluut","convention_language":false,"id":null},{"lang":"English","names":"Black-winged Stilt","convention_language":true,"id":null},{"lang":"Finnish","names":"Pitkäjalka","convention_language":false,"id":null},{"lang":"French","names":"Échasse blanche, Echasse blanche","convention_language":true,"id":null},{"lang":"German","names":"Stelzenläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gólyatöcs","convention_language":false,"id":null},{"lang":"Italian","names":"Cavaliere d'Italia","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pernalonga, Perna-longa","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeñuela Común, Cigüeñela, Ciguëñuela común","convention_language":true,"id":null},{"lang":"Swedish","names":"Styltlöpare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Himantopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius himantopus","author_year":"Linnaeus, 1758"},{"full_name":"Himantopus ceylonensis","author_year":"Whistler, 1944"},{"full_name":"Himantopus knudseni","author_year":"Stejneger, 1887"},{"full_name":"Himantopus meridionalis","author_year":"C. L. Brehm, 1843"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11771,"full_name":"Ficedula hypoleuca","author_year":"(Pallas, 1764)","common_names":[{"lang":"Danish","names":"Broget Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonte Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"European Pied Flycatcher, Pied Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjosieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche noir","convention_language":true,"id":null},{"lang":"German","names":"Trauerschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kormos légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia nera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas Cerrojillo","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartvit flugsnappare, Svarvit flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11772,"full_name":"Sialia currucoides","author_year":"Bechstein, 1798","common_names":[{"lang":"English","names":"Mountain Bluebird","convention_language":true,"id":null},{"lang":"French","names":"Merlebleu azuré","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11773,"full_name":"Haliaeetus pelagicus","author_year":"(Pallas, 1811)","common_names":[{"lang":"English","names":"Steller's Sea-Eagle","convention_language":true,"id":null},{"lang":"French","names":"Pygargue de Steller, Pygargue empereur","convention_language":true,"id":null},{"lang":"Spanish","names":"Pigargo de Steller, Pigargo gigante","convention_language":true,"id":null},{"lang":"Swedish","names":"jättehavsörn","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. 1986. Sea eagle sunrise. BBC Wildlife: 4: 588-592.; Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Lobkov, E. G. and Neufeldt, I. A. 1986. Distribution and biology of the Steller's Sea Eagle - \u003Ci\u003EHaliaeetus pelagicus pelagicus\u003C/i\u003E (Pallas). Proceedings of the Zoological Institute of the Academy of Sciences, USSR . 107-146.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11774,"full_name":"Anous tenuirostris","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Lesser Noddy","convention_language":true,"id":null},{"lang":"French","names":"Noddi marianne","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiñosa picofina","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna tenuirostris","author_year":"Temminck, 1823"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11775,"full_name":"Nycticorax nycticorax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Nathejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kwak","convention_language":false,"id":null},{"lang":"English","names":"Black-crowned Night-heron, Night Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Yöhaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron bihoreau, Bihoreau gris","convention_language":true,"id":null},{"lang":"German","names":"Nachtreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bakcsó","convention_language":false,"id":null},{"lang":"Italian","names":"Nitticora","convention_language":false,"id":null},{"lang":"Polish","names":"Slepowron","convention_language":false,"id":null},{"lang":"Portuguese","names":"Goraz","convention_language":false,"id":null},{"lang":"Russian","names":"Kvakva","convention_language":false,"id":null},{"lang":"Spanish","names":"Martinete, Martinete Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Natthäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Vogt, C. A. 2007. Range extensions and noteworthy records for mainland Ecuador. Bulletin of the British Ornithologists' Club: 127: 228-233.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Nycticorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea nycticorax","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11776,"full_name":"Phylloscopus tytleri","author_year":"Brooks, 1872","common_names":[{"lang":"English","names":"Tytler's Leaf-warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Tytler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11777,"full_name":"Eptesicus bottae","author_year":"(Peters, 1869)","common_names":[{"lang":"English","names":"Botta's Serotine","convention_language":true,"id":null},{"lang":"French","names":"Sérotine de Botta","convention_language":true,"id":null},{"lang":"Polish","names":"Mroczek Botty","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de huerta turco","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. 1998. \u003Ci\u003EEptesicus bottae\u003C/i\u003E Mammalia, Chiroptera auf der Insel Rhodos. Bonn. Zool. Beitr.: 48: 113-121.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Bates, P. J. J. and Harrison, D. L. 1989. New records of small mammals from Jordan. Bonner Zoologische Beiträge: 40: 223-226.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Nader, I. A. and Kock, D. 1990. \u003Ci\u003EEptesicus\u003C/i\u003E (\u003Ci\u003EEptesicus\u003C/i\u003E) \u003Ci\u003Ebottae\u003C/i\u003E (Peters 1869) in Saudi Arabia with notes on its subspecies and distribution (Mammalia: Chiroptera: Vespertilionidae). Senckenbergiana Biol.: 70: 1-13.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eptesicus ognevi","author_year":"Bobrinski, 1918"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11778,"full_name":"Rhinolophus ferrumequinum","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i madh","convention_language":false,"id":null},{"lang":"Croatian","names":"Veliki potkovnjak","convention_language":false,"id":null},{"lang":"Czech","names":"Vrápenec velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Greater Horseshoe Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suur-sagarnina","convention_language":false,"id":null},{"lang":"Finnish","names":"Isohevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Grand rhinolophe","convention_language":true,"id":null},{"lang":"German","names":"Große Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy patkósdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Skeifublaka","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo maggiore","convention_language":false,"id":null},{"lang":"Maltese","names":"Rinolofu Kbir","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stor hesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"podkowiec duzy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-grande","convention_language":false,"id":null},{"lang":"Slovak","names":"Podkovár stíhlokrídly","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago grande de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Stor hästskonäsa, större hästskonäsa","convention_language":false,"id":null},{"lang":"Turkish","names":"Büyük nal burunlu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Vasiliev, A. G. 1997. [First find of the Great Horseshoe Bat \u003Ci\u003ERhinolophus ferrumequinum\u003C/i\u003E in Moldova.]. Vestnik Zoologi: 31: 28.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11779,"full_name":"Phylloscopus orientalis","author_year":"(Brehm, 1855)","common_names":[{"lang":"English","names":"Eastern Bonelli's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11781,"full_name":"Saxicola insignis","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"White-throated Bushchat, Hodgson's Bushchat","convention_language":true,"id":null},{"lang":"French","names":"Tarier de Hodgson","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11782,"full_name":"Diomedea epomophora","author_year":"Lesson, 1825","common_names":[{"lang":"English","names":"Royal Albatross, Southern Royal Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros royal","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros real","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11783,"full_name":"Squalus acanthias","author_year":"Linnaeus, 1758","common_names":[{"lang":"Afrikaans","names":"Spikkel-penhaai, Doringhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkagen","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb bouchouika, Wâwy, Kelb el bahr, Abou shoka, Kelb bahr","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Akula, Morsko kuce, Kuceska akula, Chernomorska akula","convention_language":false,"id":null},{"lang":"Catalan","names":"Agullat","convention_language":false,"id":null},{"lang":"Danish","names":"Kongeål, Pighaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Gerookte haaiwangen, Doornhaai","convention_language":false,"id":null},{"lang":"English","names":"Spring dogfish, Spotted spiny dogfish, Rigg, Pacific dogfish, Rock salmon, White-spotted dogfish, Southern spiny dogfish, Spiky dog, Grayfish, Victorian spotted dogfish, Spiny dogfish, Darwen salmon, Spurdog, Huss, Dogfish, Common spiny fish, Piked dogfish, White-spotted spurdog, Blue dog, Flake","convention_language":true,"id":null},{"lang":"Faroese","names":"Haúr","convention_language":false,"id":null},{"lang":"Finnish","names":"Piikkihai","convention_language":false,"id":null},{"lang":"French","names":"Aiguillat, Aiguillat commun, Aiguillat tacheté","convention_language":true,"id":null},{"lang":"German","names":"Dornhai, Gemeiner Dornhai, Dornfisch, Schillerlocken","convention_language":false,"id":null},{"lang":"Hebrew","names":"Qozan qetan, Kotsan ktan kotz","convention_language":false,"id":null},{"lang":"Icelandic","names":"Háfur, Heitreykt","convention_language":false,"id":null},{"lang":"Italian","names":"Spinarolo","convention_language":false,"id":null},{"lang":"Japanese","names":"Abura-tsunozame","convention_language":false,"id":null},{"lang":"Maltese","names":"Mazzola griza, Mazzola bix-xewka, Mazzola","convention_language":false,"id":null},{"lang":"Maori","names":"Koinga, Makohuarau","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Stictokentroni, Skylópsaro, Skyllos","convention_language":false,"id":null},{"lang":"North Moluccan Malay","names":"Peegagh","convention_language":false,"id":null},{"lang":"Norwegian","names":"Pighai, Piggha","convention_language":false,"id":null},{"lang":"Polish","names":"Kolen","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galhudo, Galhudo-malhado, Malhado melga","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin, Câine de mare","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya kolyuchaya akula, Kolyuchaya akula, Katran","convention_language":false,"id":null},{"lang":"Serbian","names":"Koscenjak, Pas kostelj","convention_language":false,"id":null},{"lang":"Spanish","names":"Pinchudo, Galludo, Mielga, Galludo espinoso","convention_language":true,"id":null},{"lang":"Swedish","names":"tagghaj, Pigghaj, hå, havsål","convention_language":false,"id":null},{"lang":"Turkish","names":"Mahmuzlu camgöz, Köpek baligi","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lipej. L., De Maddalena, A. and Soldo, A. 2004. Sharks of the Adriatic Sea. Knjiznica Annales Majora. Koper, Slovenia.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Squaliformes","class_name":"Elasmobranchii","family_name":"Squalidae","genus_name":"Squalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Northern hemisphere populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11784,"full_name":"Gazella cuvieri","author_year":"(Ogilby, 1841)","common_names":[{"lang":"Danish","names":"Cuviers gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Edmigazel","convention_language":false,"id":null},{"lang":"English","names":"Idmi, Edmi Gazelle, Cuvier's Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Cuvieringaselli","convention_language":false,"id":null},{"lang":"French","names":"Edmi, Gazelle de Cuvier","convention_language":true,"id":null},{"lang":"German","names":"Edmi-Gazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella di Cuvier","convention_language":false,"id":null},{"lang":"Spanish","names":"Gacela de Cuvier","convention_language":true,"id":null},{"lang":"Swedish","names":"Arabisk gasell, atlasgasell, bergsgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; de Smet, K. 1991. Cuvier's gazelle in Algeria. Oryx: 25: 99-104.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Willan, R. G. M. 1973. Tunisia's wildlife. Oryx: 12: 74-76.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11785,"full_name":"Caperea marginata","author_year":"(Gray, 1846)","common_names":[{"lang":"Dutch","names":"Dwergwalvis","convention_language":false,"id":null},{"lang":"English","names":"Pygmy Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine Pygmée","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena franca pigmea","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgrätval","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Gill, P.C., Kemper, C.M., Talbot, M. and Lyons, S.A. 2008. Large group of pygmy right whales seen in a shelf upwelling region off Victoria, Australia. Marine Mammal Science: 24: 962-968.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Aguayo, A., Navarro, D.T. and Ram, J.A. 1998. Los Mamíferos Marinos de Chile: 1. Cetacea. \u003Ci\u003ESerie Centífica Instituto Antártico Chileno\u003C/i\u003E: 48: 19–159.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Kemper, C.M. 2002. Distribution of the pygmy right whale, \u003Ci\u003ECaperea marginata\u003C/i\u003E, in the Australasian region. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 18(1): 99–111.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Neobalaenidae","genus_name":"Caperea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11786,"full_name":"Terpsiphone paradisi","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Indian Paradise-flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Tchitrec de paradis","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11787,"full_name":"Chlamydotis undulata","author_year":"(Jacquin, 1784)","common_names":[{"lang":"Danish","names":"Kravetrappe","convention_language":false,"id":null},{"lang":"Dutch","names":"Kraagtrap","convention_language":false,"id":null},{"lang":"English","names":"African Houbara Bustard, African Houbara","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutrappi, Kaulustrappi","convention_language":false,"id":null},{"lang":"French","names":"Outarde houbara, Houbara ondulé","convention_language":true,"id":null},{"lang":"German","names":"Kragentrappe","convention_language":false,"id":null},{"lang":"Italian","names":"Moara africana, Gallina prataiola, Ubara","convention_language":false,"id":null},{"lang":"Polish","names":"Hubara","convention_language":false,"id":null},{"lang":"Portuguese","names":"Sisão, Abetarda-moura","convention_language":false,"id":null},{"lang":"Spanish","names":"Hubara, Avutarda hubara","convention_language":true,"id":null},{"lang":"Swedish","names":"Kragtrapp, Småtrapp","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Smet, K. de. 1989. The Houbara Bustard in Algeria: a preliminary report. Bustard Studies: 4: 157-159.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Saleh, M. 1989. The status of the Houbara Bustard in Egypt. Bustard Studies: 4: 151-156.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goriup, P. D. (ed.) 1983. The Houbara Bustard in Morocco: a report of the Al-Areen/ICBP March 1982 preliminary survey. International Council for Bird Preservation, Cambridge, U.K., on behalf of Al-Areen Wildlife Park, Bahrain. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Anon. 2002. Tunisia National Report (2002). National Report to CMS. http://www.unep-wcmc.org/cms/index.html . ; Chammem, M., Khorchani, T., Boukhris, M., Combreau, O., Chiniti, L. and Hammadi, M. 2003. L’Outarde houbara \u003Ci\u003EChlamydotis undulata undulata\u003C/i\u003E en Tunisie : statut actuel et distribution géographique. Alauda: 71: 41-47.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Chlamydotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Northwest African populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11788,"full_name":"Myotis schaubi","author_year":"Kormos, 1934","common_names":[{"lang":"English","names":"Schaub's Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11789,"full_name":"Turdus cardis","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Japanese Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle du Japon","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11790,"full_name":"Turdus iliacus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Vindrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Koperwiek","convention_language":false,"id":null},{"lang":"English","names":"Redwing","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakylkirastas","convention_language":false,"id":null},{"lang":"French","names":"Grive mauvis","convention_language":true,"id":null},{"lang":"German","names":"Rotdrossel","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo sassello","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-ruivo-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Alirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödvingetrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11791,"full_name":"Gelochelidon nilotica","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Sandterne","convention_language":false,"id":null},{"lang":"English","names":"Gull-billed Tern, Common Gull-billed Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne hansel","convention_language":true,"id":null},{"lang":"Spanish","names":"Pagaza piconegra","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Johnston-González, R., Arbeláez-Alvardo, D. and Angarita Martínez, I. 2005. Primeros registros de reproducción del Gaviotín Blanco (\u003Ci\u003EGelochelidon nilotica\u003C/i\u003E) en Colombia. Orn. Colombiana: 3: 84-87.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Gelochelidon","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna nilotica","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African populations. Formerly listed as \u003Ci\u003ESterna nilotica nilotica\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11792,"full_name":"Sternula albifrons","author_year":"Pallas, 1764","common_names":[{"lang":"Czech","names":"Rybák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgterne","convention_language":false,"id":null},{"lang":"English","names":"Little Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne naine","convention_language":true,"id":null},{"lang":"German","names":"Zwergseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis csér","convention_language":false,"id":null},{"lang":"Italian","names":"Fraticello","convention_language":false,"id":null},{"lang":"Polish","names":"rybitwa bialoczelna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-anã","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrancito, Charrancito Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Småtärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hansbro, P. and Sargeant, D. 1999. The first Little Tern \u003Ci\u003ESterna albifrons\u003C/i\u003E in Yemen. Sandgrouse: 21: 180.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna albifrons","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna albifrons\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11793,"full_name":"Recurvirostra avosetta","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Klyde","convention_language":false,"id":null},{"lang":"Dutch","names":"Kluut","convention_language":false,"id":null},{"lang":"English","names":"Avocet, Pied Avocet","convention_language":true,"id":null},{"lang":"Finnish","names":"Avosetti","convention_language":false,"id":null},{"lang":"French","names":"Avocette élégante","convention_language":true,"id":null},{"lang":"German","names":"Säbelschnäbler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gulipán","convention_language":false,"id":null},{"lang":"Italian","names":"Avocetta","convention_language":false,"id":null},{"lang":"Polish","names":"Szablodziób","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alfaiate","convention_language":false,"id":null},{"lang":"Spanish","names":"Avoceta, Avoceta Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Skärfläcka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. 1993. The first record of Pied Avocet (\u003Ci\u003ERecurvirostra avosetta\u003C/i\u003E) for Thailand. Natural History Bulletin of the Siam Society: 41: 69.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11794,"full_name":"Sterna paradisaea","author_year":"Pontoppidan, 1763","common_names":[{"lang":"Czech","names":"Rybák dlouhoocasý","convention_language":false,"id":null},{"lang":"Danish","names":"Havterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Stern","convention_language":false,"id":null},{"lang":"English","names":"Arctic Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapintiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne arctique","convention_language":true,"id":null},{"lang":"German","names":"Küstenseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna codalunga","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa popielata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-árctica","convention_language":false,"id":null},{"lang":"Russian","names":"Полярная крачка","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán ártico, Charrán Artico, Charrá árctico","convention_language":true,"id":null},{"lang":"Swedish","names":"Silvertärna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A. III, Castillo U., A., Gell-mann, M. and Rocha, O. O. 1991. Records of new and unusual birds from northern Bolivia. Bulletin of the British Ornithologists' Club: 111: 120-138.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Komar, O. 2003. Notes on autumn bird migration in coastal El Salvador. Orn. Neotrop.: 14: 39-46.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mead, C. J. and Clark, J. A. 1987. Report on bird-ringing for 1987 [error = 1986]. Ringing \u0026 Migration: 8: 135-200.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Bisschop, J. 2002. Arctic Tern in Kenya in July 2002. Dutch Birding: 24: 358-359.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Atlantic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11795,"full_name":"Calidris minutilla","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Amerikansk Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinste Strandloper, Amerikaanse Kleinste Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Least Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau minuscule","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos menudillo","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia minutilla","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa minutilla","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11796,"full_name":"Podiceps auritus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Nordisk lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Huifduiker, Kuifduiker","convention_language":false,"id":null},{"lang":"English","names":"Horned Grebe, Slavonian Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakurkku-uikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe esclavon","convention_language":true,"id":null},{"lang":"German","names":"Ohrentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füles vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso cornuto","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz rogaty","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín cuellirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthakedopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Carey, G. J. 1998. Horned Grebe at Mai Po: the first record for Hong Kong. Hong Kong Bird Report 1998: 114-115.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus auritus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11798,"full_name":"Gallinago gallinago","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Bekasina otavní","convention_language":false,"id":null},{"lang":"Danish","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Watersnip","convention_language":false,"id":null},{"lang":"English","names":"Snipe, Common Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Taivaanvuohi","convention_language":false,"id":null},{"lang":"French","names":"Bécassine des marais","convention_language":true,"id":null},{"lang":"German","names":"Bekassine","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Polish","names":"Kszyk, Kszyk (bekas)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza común","convention_language":true,"id":null},{"lang":"Swedish","names":"Enkelbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella delicata","author_year":"(Ord, 1825)"},{"full_name":"Capella gallinago","author_year":"(Linnaeus, 1758)"},{"full_name":"Scolopax delicata","author_year":"Ord, 1825"},{"full_name":"Scolopax gallinago","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11799,"full_name":"Haematopus moquini","author_year":"Bonaparte, 1856","common_names":[{"lang":"Danish","names":"Sort Strandskade","convention_language":false,"id":null},{"lang":"English","names":"African Oystercatcher, African Black Oystercatcher","convention_language":true,"id":null},{"lang":"French","names":"Huîtrier de Moquin","convention_language":true,"id":null},{"lang":"Spanish","names":"Ostrero negro Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Haematopus ostralegus moquini","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11800,"full_name":"Lymnocryptes minimus","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Danish","names":"Enkeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Bokje","convention_language":false,"id":null},{"lang":"English","names":"Jack Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Jänkäkurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine sourde","convention_language":true,"id":null},{"lang":"German","names":"Zwergschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Frullino","convention_language":false,"id":null},{"lang":"Polish","names":"Bekasik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-galega","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Chica","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Lymnocryptes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax minima","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11802,"full_name":"Steno bredanensis","author_year":"(G. Cuvier in Lesson, 1828)","common_names":[{"lang":"English","names":"Rough-toothed Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Sténo","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de pico largo","convention_language":true,"id":null},{"lang":"Swedish","names":"näbbdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Perkins, J. S. and Miller, G. W. 1983. Mass stranding of \u003Ci\u003ESteno bredanensis\u003C/i\u003E in Belize. Biotropica: 15: 235-236.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinedo, M. C. and Castello, H. P. 1980. Primeiros registros dos golfinhos \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, \u003Ci\u003EStenella\u003C/i\u003E cfr. \u003Ci\u003Eplagiodon\u003C/i\u003E e \u003Ci\u003ESteno bredanensis\u003C/i\u003Epara o sul do Brasil, com notas osteologicas. Boletim Inst. Oceanogr. S. Paulo: 29: 313-317.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Pitman, R.L. and Stinchcomb, C. 2002. Rough-toothed dolphins (\u003Ci\u003ESteno bredanensis\u003C/i\u003E) as predators of mahimahi (_Coryphaena hippurus). Pacific Science: 56: 447-450.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. and West, K. L. 2005. Distribution of the Rough-toothed Dolphin (\u003Ci\u003ESteno bredanensis\u003C/i\u003E) around the Windward Islands (French Polynesia). Pacific Science: 59: 17-24.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Goosebeaked whale, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, and rough-toothed dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E G. Cuvier, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 203-204.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Vella, A. 1999. Cetacean surveys around the Maltese Islands \u0026 Maltes [Maltese] sea-user cetacean questionnaire study. European Research on Cetaceans: 12: 66-73.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Steno","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11803,"full_name":"Caretta caretta","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Loggerhead","convention_language":true,"id":null},{"lang":"French","names":"Caouanne","convention_language":true,"id":null},{"lang":"Spanish","names":"Caguama","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Haxhiu, I. 1995. Results of studies on the chelonians of Albania. Chelonian Conservation and Biology: 1: 324-326.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J., Fleay, A. and Guinea, M. 1984. Sea turtles of the Capricornia Section, Great Barrier Reef Marine Park. In: Ward, W. T. and Saenger, P. (eds.) The Capricornia Section of the Great Barrier Reef: past, present and future. The Royal Society of Queensland and Australian Coral Reef Society. Queensland, Australia.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Baptistotte, C., Thomé, C. A. and Bjorndal, K. A. 2003. Reproductive biology and conservation status of the Loggerhead Sea Turtle (\u003Ci\u003ECaretta caretta\u003C/i\u003E) in Espírito Santo state, Brazil. Chelonian Conservation and Biology: 4(3): 603-611; Marcovaldi, M.A. and Chaloupka, M. 2007. Conservation status of the loggerhead sea turtle in Brazil: an encouraging outlook. Endangered Species Research: 3: 133-143.; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and littoral ecosystems of the region. In: Fretey, J. Biogeography and Conservation of Marine Turtles. CMS Technical Series Publication Convention on the Conservation of Migratory Species of Wild Animals. Bonn.; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ; Uetz, P., Chenna, R., Etzold, T. and Hallermann, J. 2005. The EMBL Reptile Database. Accessed at \u003Cwww.embl-heidelberg.de/~uetz/LivingReptiles.html\u003E on 20/09/2005 . ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"C. D. Bell, J. L. Solomon, J. M. Blumenthal, T. J. Austin, G. Ebanks-Petrie, A. C. Broderick and B. J. Godley. 2007. Monitoring and conservation of critically reduced marine turtle nesting populations: lessons from the Cayman Islands. Animal Conservation: 10: 39-47.; Parsons, J. 1984. The National Report: Cayman Islands. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Broderick, A. C., Glen, F., Godley, B. J. and Hays, G. C. 2002. Estimating the number of green and loggerhead turtles nesting annually in the Mediterranean. Oryx: 36: 227-235.; Demetropoulos, A. 1983. WWF/IUCN Project 1815. Cyprus-turtle conservation. Report for 1982. ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Campbell, A., Clarke, M., Ghoneim, S., Hameid, W. S., Simms, C. and Edwards, C. 2002. On status and conservation of marine turtles along the Egyptian Mediterranean Sea coast: results of the Darwin Initiative Sea Turtle Conservation Project 1998-2000. Zoology in the Middle East: 24: 19-29.; Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Margaritoulis, D. and Rees, A. F. 2001. The Loggerhead Turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, population nesting in Kyparissia Bay, Peloponnesus, Greece: results of beach surveys over seventeen seasons and determination of the core nesting habitat. Zoology in the Middle East: 24: 75-90.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Sato, K., Bando, T., Matsuzawa, Y., Tanaka, H., Sakamoto, W., Minamikawa, S. and Goto, K. 1997. Decline of the loggerhead turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, nesting on Senri Beach in Minabe, Wakayama, Japan. Chelonian Conservation and Biology: 2: 600-603.; Stewart-Smith, J. 1987. In the shadow of Fujisan. Penguin Books. Harmondsworth, UK.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Newbury, N., Khalil, M. and Venizelos, L. 2002. Population status and conservation of marine turtles at El-Mansouri, Lebanon. Zoology in the Middle East: 27: 47-60.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; WWF/EGA/SSC. 2005. Marine and coastal resources assessment of the Eastern Region of Libya. Background study for the preparation of a conservation plan. The Environment General Authority of the Great Socialist People's Libyan Arab Jamahiriya.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Peckham, S.H., Maldonado-Diaz, D. Koch, V. Mancini, A., Gaos, A., Tinker, M.T. and Nichols, W.J. 2008. High mortality of loggerhead turtles due to bycatch, human consumption and strandings at Baja California Sur, Mexico, 2003 to 2007. Endangered Species Research: 5: 171-183.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; Sybesma, J. and P.C. Hoetjes. 1992. First record of the Olive Ridley and of nesting by the Loggerhead turtle in Curacao. Caribbean Journal of Science: 28: 103-104.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"De Celis, N. C. 1982. Status of marine turtles in the Philippines. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Geldiay, R. 1984. Investigation in connection with populations of sea turtles (\u003Ci\u003ECaretta c. caretta\u003C/i\u003E L. and \u003Ci\u003EChelonia m. mydas\u003C/i\u003E L.) living in the Aegean and Mediterranean coast of Turkey and their protection. Doga Bilim Dergisi: 8: 66-75.; Geldiay, R., Koray, J., and Balik, S. 1982. On the status of sea turtle populations (\u003Ci\u003ECaretta c. caretta\u003C/i\u003E and \u003Ci\u003EChelonia m. mydas\u003C/i\u003E) in the northern Mediterranean sea. Paper presented at the World Conference on Sea Turtle conservation, Nov. 26-30, 1979, Washington D.C . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Tükozan, O., Taskavak, E. and Ilgaz, Ç. 2003. A review of the biology of the Loggerhead Turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, at five major nesting beaches on the south-western Mediterranean coast of Turkey. Herpetological Journal: 13(1): 27-33","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Fletemeyer, J. R. 1984. The National Report: Turks-Caicos. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Bjorndal, K. A., and Meylan, A. B. 1983. Sea turtles nesting at Melbourne Beach, Florida, I. Size, growth and reproductive biology. Biological Conservation: 26: 65-77.; Conley, W. J., and Hoffman, B. A. 1986. Florida Sea Turtle nesting activity: 1979-1985. Fla. Dept. of Natural Resources. St. Petersburg.; Dodd, C. K. and Byles, R. A. 2003. Post-nesting movements and behavior of Loggerhead Sea Turtles (Caretta caretta) departing from East-Central Florida nesting beaches. Chelonian Conservation and Biology: 4(3): 530-536; Ehrhart, L. M. 1983. An assessment of the status of the immature green turtle (\u003Ci\u003EChelonia mydas\u003C/i\u003E) and loggerhead turtle (\u003Ci\u003ECaretta caretta\u003C/i\u003E) populations of the central part of the indian river lagoon system, Brevard County, Florida. Report to WWF-US . ; Ehrhart, L. M. 1989. Status report of the Loggerhead Turtle. In Ogren, L. et al. (eds) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 122-139; Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hawkes, L.A., Witt, M.J., Broderick, A.C., Coker, J.W., Coyne, M.S., Dodd, M., Frick, M.G., Godfrey, M.H. Griffin, D.B., Murphy, S.R., Murphy, T.M. et al. 2011. Home on the range: spatial ecology of loggerhead turtles in Atlantic waters of the USA. Diversity and Distributions: 17: 624-640.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Caretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11804,"full_name":"Balaenoptera edeni","author_year":"Anderson, 1879","common_names":[{"lang":"Dutch","names":"Bryde's Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Bryde's Whale, Tropical Whale","convention_language":true,"id":null},{"lang":"French","names":"Rorqual tropical, Rorqual de Bryde, Baleinoptère de Bryde, Rorqual d'Eden","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de Bryde","convention_language":true,"id":null},{"lang":"Swedish","names":"Brydes fenval, tropisk bardval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Sea Alarm Foundation. 2010. Bangladesh. 4","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Neve, P. 1973. Bryde's Whale beached. Journal of the Saudi Arabian Natural History Society: 7: 14.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Hoelzel, A. R. 1998. Genetic structure of cetacean populations in sympatry, parapatry, and mixed assemblages: implications for conservation policy. Journal of Heredity: 89: 451-458.; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Robineau, D. 1981. Sur l'echouage d'un rorqual de Bryde en mer Rouge, pres de Hodeidah (Yemen du nord). Mammalia: 45: 383-387.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11805,"full_name":"Delphinapterus leucas","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"White Whale, Beluga","convention_language":true,"id":null},{"lang":"Finnish","names":"Beluga","convention_language":false,"id":null},{"lang":"French","names":"Dauphin blanc, Delphinaptère blanc, Bélouga, Beluga","convention_language":true,"id":null},{"lang":"Russian","names":"Beluga","convention_language":false,"id":null},{"lang":"Slovenian","names":"Beluga","convention_language":false,"id":null},{"lang":"Spanish","names":"Beluga, Ballena blanca","convention_language":true,"id":null},{"lang":"Swedish","names":"beluga, vitval","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"de Smet, W. M. A. 1974. Inventaris van de walvisachtigen (Cetacea) van de Vlaamse kust en de Schelde. Bulletin Inst. r. Sci. nat. Belg. (Biol.): 50: 1-156.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Berzin, A. A. 1981. A note on the recent distribution and numbers of the White Whale in the Soviet far east. Report of the International Whaling Commission: 31: 527-529.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Goetz, K.T., Montgomery, R.A., Ver Hoef, J.M., Hobbs, R.C. and Johnson, D.S. 2012. Identifying essential summer habitat of the endangered beluga whale \u003Ci\u003EDelphinapterus leucas\u003C/i\u003E in Cook Inlet, Alaska. Endangered Species Research: 16: 135-147.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Monodontidae","genus_name":"Delphinapterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11806,"full_name":"Ardeola idae","author_year":"(Hartlaub, 1860)","common_names":[{"lang":"English","names":"Madagascar Pond-heron","convention_language":true,"id":null},{"lang":"French","names":"Crabier blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Garcilla Malgache","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Seddon, N., Tobias, J., Yount, J. W., Ramanampamonjy, J. R., Butchart, S. and Randrianizahana, H. 2000. Conservation issues and priorities in the Mikea Forest of south-west Madagascar. Oryx: 34: 287-304.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Ardea idae","author_year":"Hartlaub, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11807,"full_name":"Larus marinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Svartbag","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Mantelmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Great Black-backed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Merilokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland marin","convention_language":true,"id":null},{"lang":"German","names":"Mantelmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dolmányos sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Mugnaiaccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Morskaya Chayka","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Havstrut","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11809,"full_name":"Calidris temminckii","author_year":"(Leisler, 1812)","common_names":[{"lang":"Czech","names":"Jespák šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Temmincksryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Temmincks Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Temminck's Stint","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapinsirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau de Temminck","convention_language":true,"id":null},{"lang":"German","names":"Temminckstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Temminck-partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio nano","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus Temmincka, Biegus mały","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito de Temminck","convention_language":false,"id":null},{"lang":"Russian","names":"Belokhvosty Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Temminck","convention_language":true,"id":null},{"lang":"Swedish","names":"Mosnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia temminckii","author_year":"(Leisler, 1812)"},{"full_name":"Tringa temminckii","author_year":"Leisler, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11810,"full_name":"Branta leucopsis","author_year":"(Bechstein, 1803)","common_names":[{"lang":"Danish","names":"Bramgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Brandgans","convention_language":false,"id":null},{"lang":"English","names":"Barnacle Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoposkihanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache nonnette","convention_language":true,"id":null},{"lang":"German","names":"Nonnengans, Brandgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apácalúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca facciabianca","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-faces-brancas","convention_language":false,"id":null},{"lang":"Russian","names":"Beloschkaya Kazarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla cariblanca","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitkindad gås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Yerokhov, S. N. and Beryozovikov, N. N. 2000. [First record of the Barnacle Goose in Kazakhstan.]. Casarca: 6: 367-369.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas leucopsis","author_year":"Bechstein, 1803"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11811,"full_name":"Lagenodelphis hosei","author_year":"Fraser, 1956","common_names":[{"lang":"English","names":"Fraser's Dolphin, Sarawak Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Fraser","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de Borneo","convention_language":true,"id":null},{"lang":"Swedish","names":"kortnäbbad delfin, Frasers delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Watkins, W. A., Daher, M. A., Fristrup, K. and Notarbartolo-di-Sciara, G. 1994. Fishing and acoustic behavior of Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) near Dominica, Southeast Caribbean. Caribbean Journal of Science: 30: 76-82.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Jefferson, T. A. and Leatherwood, S. 1994. \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E. Mammalian Species: 470: 1-5.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. 1996. First records of Fraser's Dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) from the Maldives. Journal of South Asian Natural History: 2: 75-80.; Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Montoya-Ospina, R. A., Pérez-Zayas, J. J., Rodriguez-López, M. A. and Williams, E. H. Jr. 1999. New records of Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) for the Caribbean. Aquatic Mammals: 25: 15-19.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D. K., Caldwell, M. C. and Walker, R. V. 1976. First records for Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) in the Atlantic and the melon-headed whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) in the western Atlantic. Cetology: 25: 1-4.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hersh, S. L. and Odell, D. K. 1986. Mass stranding of Fraser's dolphin, \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E, in the western North Atlantic. Marine Mammal Science: 2: 73-76.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Praderi, R., Praderi, G. and Garcia, R. 1992. First record of Fraser's dolphin, \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E, in the South Atlantic Ocean (Mammalia: Cetacea: Delphinidae). Comunicaciones Zoologicas del Museo de Historia Natural de Montevideo: 12: 1-6.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenodelphis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Southeast Asian populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11812,"full_name":"Limnodromus griseus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Kortnæbbet Sneppeklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Grijze Snip","convention_language":false,"id":null},{"lang":"English","names":"Short-billed Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta gris","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Mullarney, K. 1988. Short-billed Dowitcher in County Wexford - an addition to the Irish list. Irish Birds: 3: 596-600.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[{"full_name":"Scolopax grisea","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11813,"full_name":"Kogia breviceps","author_year":"(Blainville, 1838)","common_names":[{"lang":"English","names":"Pygmy Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot pygmée","convention_language":true,"id":null},{"lang":"Portuguese","names":"Cachalote Anão","convention_language":false,"id":null},{"lang":"Spanish","names":"Cachalote cabeza chica, Cachalote pigmeo","convention_language":true,"id":null},{"lang":"Swedish","names":"pygmékaskelot","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Porter, L. and Morton, B. 2003. A description of the first intact Dwarf Sperm Whale from the South China Sea and a review of documented specimens of the Kogiidae (Cetacea) from Hong Kong. Systematics and Biodiversity: 1: 127-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Robineau, D. and Rancurel, P. 1981. Sur deux specimens du genre \u003Ci\u003EKogia\u003C/i\u003E (Cetacea, Physeteridae) en Nouvelle-Caledonie. Zeitschrift Säugetierkunde: 46: 56-58.; Sylvestre, J.-P. 1988. On a specimen of pygmy sperm whale \u003Ci\u003EKogia breviceps\u003C/i\u003E (Blainville, 1838) from New Caledonia. Aquatic Mammals: 14: 76-77.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1977. The mammals of Pakistan. Benn. London.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Seréne, R. 1934. Sur un échouange de \u003Ci\u003EKogia breviceps\u003C/i\u003E GRAY à proximité de l'Institut Océanographique de Nhatrang (Annam). Bull. Mus. Nat. Hist. Nat.: ?: 398-399.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Kogia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11814,"full_name":"Sporophila cinnamomea","author_year":"(Lafresnaye, 1839)","common_names":[{"lang":"English","names":"Chestnut Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile cannelle","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11815,"full_name":"Tarsiger chrysaeus","author_year":"Hodgson, 1845","common_names":[{"lang":"English","names":"Golden Bush-Robin","convention_language":true,"id":null},{"lang":"French","names":"Rossignol doré","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus chrysaeus","author_year":"(Hodgson, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11816,"full_name":"Phylloscopus nitidus","author_year":"Blyth, 1843","common_names":[{"lang":"Danish","names":"Grøn Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Groene Fitis","convention_language":false,"id":null},{"lang":"English","names":"Green Warbler, Bright Green Warbler, Yellowish-breasted Warbler, Bright-green Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot du Caucase","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A. and Adhami, A. 2006. An updated checklist of the birds of Iran. Podoces: 1: 1-16.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Ostrowski, S. and Guinard, E. 2002. First record of Green Warbler \u003Ci\u003EPhylloscopus nitidus\u003C/i\u003E in western Saudi Arabia. Sandgrouse: 24: 58-59.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11817,"full_name":"Oenanthe pleschanka","author_year":"(Lepechin, 1770)","common_names":[{"lang":"Dutch","names":"Bonte Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Pied Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Nunnatasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet pie","convention_language":true,"id":null},{"lang":"German","names":"Nonnensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apácahantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella dorsonero","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-de-peito-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Pía","convention_language":true,"id":null},{"lang":"Swedish","names":"Nunnestenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11819,"full_name":"Kogia sima","author_year":"(Owen, 1866)","common_names":[{"lang":"English","names":"Owen's Pygmy Sperm Whale, Dwarf Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot nain","convention_language":true,"id":null},{"lang":"Spanish","names":"Cachalote enano","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgkaskelot, minikaskelot","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dunphy-Daly, M.M., Heithaus, M.R., Claridge, D.E. 2008. Temporal variation in dwarf sperm whale (\u003Ci\u003EKogia sima\u003C/i\u003E) habitat use and group size off Great Abaco Island, Bahamas. Marine Mammal Society: 24: 171-182.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Crovetto, A. and Toro, H. 1983. Presence de \u003Ci\u003EKogia simus\u003C/i\u003E (Cetacea, Physeteridae) dans les eaux chiliennes. Mammalia: 47: 591-593.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Porter, L. and Morton, B. 2003. A description of the first intact Dwarf Sperm Whale from the South China Sea and a review of documented specimens of the Kogiidae (Cetacea) from Hong Kong. Systematics and Biodiversity: 1: 127-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Debrot, A. O. 1992. Notes on a Gervais beaked whale, \u003Ci\u003EMesoplodon europaeus, and a dwarf sperm whale, \u003C/i\u003EKogia simus_, stranded in Curacao, Netherlands Antilles. Marine Mammal Science: 8: 172-178.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Robineau, D. and Rancurel, P. 1981. Sur deux specimens du genre \u003Ci\u003EKogia\u003C/i\u003E (Cetacea, Physeteridae) en Nouvelle-Caledonie. Zeitschrift Säugetierkunde: 46: 56-58.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1991. First record of the dwarf sperm whale, \u003Ci\u003EKogia simus\u003C/i\u003E (Owen), from New Zealand. National Museum of New Zealand Records: 3: 125-130.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D. K., Caldwell, M. C. and Arrindell, G. 1973. Dwarf sperm whales, \u003Ci\u003EKogia simus\u003C/i\u003E, from the Lesser Antillean island of St. Vincent. Journal of Mammalogy: 54: 515-517.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chou, W.-H. 1989. First record of dwarf sperm whale (\u003Ci\u003EKogia simus\u003C/i\u003E) from Taiwan. Bull. Natl. Mus. Nat. Sci. (Taichung): 1: 23-37.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Kogia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Kogia simus","author_year":"(Owen, 1866)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11821,"full_name":"Hydroprogne caspia","author_year":"Pallas, 1770","common_names":[{"lang":"Czech","names":"Rybák velkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Rovterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenstern","convention_language":false,"id":null},{"lang":"English","names":"Caspian Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Räyskä","convention_language":false,"id":null},{"lang":"French","names":"Sterne caspienne","convention_language":true,"id":null},{"lang":"German","names":"Raubseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Lócsér","convention_language":false,"id":null},{"lang":"Italian","names":"Rondine di mare maggiore, Sterna maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa wielkodzioba","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-de-bico-vermelho","convention_language":false,"id":null},{"lang":"Spanish","names":"Pagaza piquirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Skräntärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Hydroprogne","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hydroprogne caspia","author_year":"(Pallas, 1770)"},{"full_name":"Hydroprogne tschegrava","author_year":"(Lepechin, 1770)"},{"full_name":"Sterna caspia","author_year":"Pallas, 1770"},{"full_name":"Sterna tschegrava","author_year":"Lepechin, 1770"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African populations. Formerly listed as \u003Ci\u003ESterna caspia\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11823,"full_name":"Calidris bairdii","author_year":"(Coues, 1861)","common_names":[{"lang":"Danish","names":"Bairds Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bairds Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Baird's Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau de Baird","convention_language":true,"id":null},{"lang":"Russian","names":"Berdov Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Baird","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Smith, J. P. and the Israeli Rarities Committee. 2001. The Israeli Rarities and Distribution Committee Bulletin on Rare Birds in Israel (1989 - 2000). The Israeli Rarities and Distribution Committee Bulletin 1: 01.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Actodromas bairdii","author_year":"Coues, 1861"},{"full_name":"Erolia bairdii","author_year":"(Coues, 1861)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11824,"full_name":"Nyctalus lasiopterus","author_year":"(Schreber, 1780)","common_names":[{"lang":"Czech","names":"Netopýr obrovský","convention_language":false,"id":null},{"lang":"Danish","names":"Stor brunflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote rosse vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Giant Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Hiidvidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläislepakko","convention_language":false,"id":null},{"lang":"French","names":"Grande noctule","convention_language":true,"id":null},{"lang":"German","names":"Riesenabendsegler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Óriás-koraidenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola gigante","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Didysis nakviša","convention_language":false,"id":null},{"lang":"Norwegian","names":"Riseflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiec olbrzymi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-gigante","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-mare-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier východný","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Jättefladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.; Palmeirim, J. M. 1982. On the prresence of \u003Ci\u003ENyctalus lasiopterus\u003C/i\u003E in north Africa (Mammalia: Chiroptera). Mammalia: 46: 401-403.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Verbeek, H. D. J. 1997. Grote rosse vleermuis \u003Ci\u003ENyctalus lasiopterus\u003C/i\u003E (Schreber, 1780). Natuurhistorische Bibliotheek van de KNNV: 65: 188-190.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11825,"full_name":"Pelecanus crispus","author_year":"Bruch, 1832","common_names":[{"lang":"Danish","names":"Krøltoppet pelikan","convention_language":false,"id":null},{"lang":"Dutch","names":"Kroeskoppelikaan","convention_language":false,"id":null},{"lang":"English","names":"Dalmatian Pelican","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiharapelikaani","convention_language":false,"id":null},{"lang":"French","names":"Pélican dalmate, Pélican Frisé","convention_language":true,"id":null},{"lang":"German","names":"Krauskopfpelikan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Borzas gödény","convention_language":false,"id":null},{"lang":"Italian","names":"Pelícano ceñudo, Pellicano riccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pelicano-crespo","convention_language":false,"id":null},{"lang":"Spanish","names":"Pelícano rizado, Pelícano Ceñudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Krushuvad pelikan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shi, H.Q., Cao, L., Barter, M.A. and Liu, N.F. 2008. Status of the East Asian population of the Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E: the need for urgent conservation action. Bird Conservation International: 18: 181-193.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Crivelli, A.J. 1996. Action plan for the Dalmatian Pelican (\u003Ci\u003EPelecanus crispus\u003C/i\u003E) in Europe. European Commission for the Environment. 29","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.; Zhatkanbayev, A. H. 1994. The present state of pelican populations (\u003Ci\u003EPelecanus onocrotalus\u003C/i\u003E and \u003Ci\u003EP. crispus\u003C/i\u003E) in Kazakhstan. Bulletin of the British Ornithologists' Club: 114: 202-205.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shi, H.Q., Cao, L., Barter, M.A. and Liu, N.F. 2008. Status of the East Asian population of the Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E: the need for urgent conservation action. Bird Conservation International: 18: 181-193.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Crivelli, A.J. 1996. Action plan for the Dalmatian Pelican (\u003Ci\u003EPelecanus crispus\u003C/i\u003E) in Europe. European Commission for the Environment. 29; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Schernazarov, E. 1988. [New breeding site of Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E in Uzbekistan.]. Ornitologiya: 23: 225.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11826,"full_name":"Mycteria ibis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Skovstork","convention_language":false,"id":null},{"lang":"English","names":"Yellow-billed Stork","convention_language":true,"id":null},{"lang":"French","names":"Tantale ibis","convention_language":true,"id":null},{"lang":"Spanish","names":"Tántalo Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ragyov, D. N., Popova-Wightman, L. G., Popov, K. S., Dalakchieva, S. Y., Nikolov, B. P. and Nikolov, I. P. 2003. The first Yellow-billed Stork \u003Ci\u003EMycteria ibis\u003C/i\u003E in Bulgaria. Sandgrouse: 25: 63-64.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hellyer, P. 2000. The first Yellow-billed Stork \u003Ci\u003EMycteria ibis\u003C/i\u003E in Qatar and the Arabian Gulf. Sandgrouse: 22: 125-126.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Mycteria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tantalus ibis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11827,"full_name":"Egretta ardesiaca","author_year":"(Wagler, 1827)","common_names":[{"lang":"English","names":"Black Heron","convention_language":true,"id":null},{"lang":"French","names":"Aigrette ardoisée","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta azabache","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Ikonga, J. M. and Rainey, H. J. 2005. Premières observations de l'Aigrette ardoisée \u003Ci\u003EEgretta ardesiaca\u003C/i\u003E au Congo-Brazzaville. Bulletin of the African Bird Club: 12: 166-167.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al--Saghier, O. and Porter, R. F. 1997. The first Black Heron Egretta ardesiaca in Yemen. Sandgrouse: 19: 140-141.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ardesiaca","author_year":"Wagler, 1827"},{"full_name":"Hydranassa ardesiaca","author_year":"(Wagler, 1827)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11828,"full_name":"Phylloscopus sibilatrix","author_year":"(Bechstein, 1793)","common_names":[{"lang":"Dutch","names":"Fluiter","convention_language":false,"id":null},{"lang":"English","names":"Wood Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sirittäjä","convention_language":false,"id":null},{"lang":"French","names":"Pouillot siffleur","convention_language":true,"id":null},{"lang":"German","names":"Waldlaubsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Luí verde","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-assobiadeira","convention_language":false,"id":null},{"lang":"Russian","names":"Penochka-treshchotka","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Silbador","convention_language":true,"id":null},{"lang":"Swedish","names":"Grönsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Dickerman, R. W., Cane, W. P., Carter, M. F., Chapman, A. and Schmitt, C. G. 1994. Report on three collections of birds from Liberia. Bulletin of the British Ornithologists' Club: 114: 267-274.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11829,"full_name":"Erithacus rubecula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rødhals","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodborst","convention_language":false,"id":null},{"lang":"English","names":"European Robin, Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Punarinta","convention_language":false,"id":null},{"lang":"French","names":"Rougegorge familier","convention_language":true,"id":null},{"lang":"German","names":"Rotkehlchen, Rotkenhlchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösbegy","convention_language":false,"id":null},{"lang":"Italian","names":"Pettirosso","convention_language":false,"id":null},{"lang":"Polish","names":"Rudzik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pisco-de-peito-ruivo, Pico-de-peito-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Petirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Erithacus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11830,"full_name":"Sylvia deserticola","author_year":"Tristram, 1859","common_names":[{"lang":"Danish","names":"Tristrams Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Atlasgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Tristram's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de l'Atlas","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11831,"full_name":"Sporophila palustris","author_year":"(Barrows, 1883)","common_names":[{"lang":"English","names":"Marsh Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile des marais","convention_language":true,"id":null},{"lang":"German","names":"Sumpfpfäffchen","convention_language":false,"id":null},{"lang":"Spanish","names":"Capuchino pecho blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"kärrfrösparv","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"This includes \u003Ci\u003ESporophila zelichi\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"This includes \u003Ci\u003ESporophila zelichi\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11833,"full_name":"Sula dactylatra","author_year":"Lesson, 1831","common_names":[{"lang":"English","names":"Masked Booby","convention_language":true,"id":null},{"lang":"French","names":"Fou masqué","convention_language":true,"id":null},{"lang":"Spanish","names":"Piquero enmascarado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"extinct","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Sula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11834,"full_name":"Bucephala islandica","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Czech","names":"Hohol islandský","convention_language":false,"id":null},{"lang":"Danish","names":"Islandsk Hvinand","convention_language":false,"id":null},{"lang":"Dutch","names":"IJslandse Brilduiker","convention_language":false,"id":null},{"lang":"English","names":"Barrow's Goldeneye","convention_language":true,"id":null},{"lang":"Finnish","names":"Amerikantelkkä","convention_language":false,"id":null},{"lang":"French","names":"Garrot d'Islande","convention_language":true,"id":null},{"lang":"German","names":"Spatelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Izlandi kerceréce","convention_language":false,"id":null},{"lang":"Italian","names":"Quattrocchi d'Islanda","convention_language":false,"id":null},{"lang":"Polish","names":"Sierpiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato da Islândia","convention_language":false,"id":null},{"lang":"Russian","names":"Islandski Gogol","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Islándico","convention_language":true,"id":null},{"lang":"Swedish","names":"Islandsknipa","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matejev, S.D. and Vasic, V.F. 1973. Catalogus Faunae Jugoslaviae -Aves IV/3. Academia Scientiarium et Artium Slovenic, Lubljana (in Serbian) .","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas islandica","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11835,"full_name":"Sterna repressa","author_year":"Hartert, 1916","common_names":[{"lang":"Danish","names":"Hvidkindet Terne","convention_language":false,"id":null},{"lang":"English","names":"White-cheeked Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne à joues blanches","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán arábigo","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11836,"full_name":"Ciconia abdimii","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Abdim's Stork","convention_language":true,"id":null},{"lang":"French","names":"Cigogne d'Abdim","convention_language":true,"id":null},{"lang":"Spanish","names":"Cigüeña de Abdim","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11837,"full_name":"Charadrius wilsonia","author_year":"Ord, 1814","common_names":[{"lang":"English","names":"Wilson's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Wilson","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo piquigrueso","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Peredo, R. 2000. Observación de \u003Ci\u003ECharadrius wilsonia\u003C/i\u003E Ridgway, 1919 en Chile. Boletín Chileno de Ornitología: 7: 29-30.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Levesque, A., Duzont, F. and Ramsahai, A. 2005. Cinq espèces d'oiseaux nicheurs récemment découvertes en Guadeloupe (Antilles françaises). Alauda: 73: 69-70.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11838,"full_name":"Diomedea exulans","author_year":"Linnaeus, 1758","common_names":[{"lang":"Dutch","names":"Grote Albatros","convention_language":false,"id":null},{"lang":"English","names":"Wandering Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros hurleur","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros viajero","convention_language":true,"id":null},{"lang":"Swedish","names":"vandringsalbatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea gibsoni","author_year":"Robertson \u0026 Warham, 1993"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11840,"full_name":"Uria aalge","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Czech","names":"Alkoun úzkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Lomvie","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeekoet","convention_language":false,"id":null},{"lang":"English","names":"Common Murre, Guillemot, Common Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Etelänkiisla","convention_language":false,"id":null},{"lang":"French","names":"Guillemot marmette, Guillemot de troïl","convention_language":true,"id":null},{"lang":"German","names":"Trottellumme","convention_language":false,"id":null},{"lang":"Italian","names":"Uria","convention_language":false,"id":null},{"lang":"Norwegian","names":"Lomvi","convention_language":false,"id":null},{"lang":"Polish","names":"Nurzyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Tonkoklyuvaya Kayra","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sillgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Uria","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus aalge","author_year":"Pontoppidan, 1763"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11842,"full_name":"Phylloscopus borealoides","author_year":"Portenko, 1950","common_names":[{"lang":"English","names":"Sakhalin Leaf-Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11843,"full_name":"Isurus paucus","author_year":"Guitart Manday, 1966","common_names":[{"lang":"Afrikaans","names":"Langvin-mako","convention_language":false,"id":null},{"lang":"English","names":"Longfin Mako","convention_language":true,"id":null},{"lang":"French","names":"Petite taupe","convention_language":true,"id":null},{"lang":"Japanese","names":"Bake-aozame","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-anequim-de-gadanha, Tubarão","convention_language":false,"id":null},{"lang":"Spanish","names":"Dientuso prieto, Marrajo carite","convention_language":true,"id":null},{"lang":"Swedish","names":"långfenad makrillhaj","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Isurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11844,"full_name":"Chlidonias niger","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sortterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Stern","convention_language":false,"id":null},{"lang":"English","names":"Black Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustatiira","convention_language":false,"id":null},{"lang":"French","names":"Guifette noire","convention_language":true,"id":null},{"lang":"German","names":"Trauerseeschwalbe","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattino","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa czarna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Fumarel común","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarttärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rivas, F. M. and López, N. 1997. Black Tern (\u003Ci\u003EChlidonias niger\u003C/i\u003E) en la Bahia de Calderas, Bani, República Dominicana. El Pitirre: 10: 58.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11845,"full_name":"Mergus serrator","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Toppet Skallesluger","convention_language":false,"id":null},{"lang":"Dutch","names":"Middelste Zaagbek","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Merganser","convention_language":true,"id":null},{"lang":"Finnish","names":"Tukkakoskelo","convention_language":false,"id":null},{"lang":"French","names":"Harle huppé","convention_language":true,"id":null},{"lang":"German","names":"Mittelsäger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös bukó","convention_language":false,"id":null},{"lang":"Italian","names":"Smergo minore","convention_language":false,"id":null},{"lang":"Polish","names":"Szlachar, szlachar (tracz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merganso-de-poupa","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta mediana","convention_language":true,"id":null},{"lang":"Swedish","names":"Småskrake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11847,"full_name":"Burhinus oedicnemus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Dytík úhorní","convention_language":false,"id":null},{"lang":"Danish","names":"Triel","convention_language":false,"id":null},{"lang":"Dutch","names":"Griel","convention_language":false,"id":null},{"lang":"English","names":"Stone Curlew, Eurasian Thick-knee, Stone-Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Paksujalka","convention_language":false,"id":null},{"lang":"French","names":"Dicnème criard, Oedicnème criard","convention_language":true,"id":null},{"lang":"German","names":"Triel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ugartyúk","convention_language":false,"id":null},{"lang":"Italian","names":"Occhione","convention_language":false,"id":null},{"lang":"Polish","names":"Kulon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcaravão","convention_language":false,"id":null},{"lang":"Russian","names":"Avdotka","convention_language":false,"id":null},{"lang":"Spanish","names":"Alcaraván, Alcaraván común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tjockfot","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1987. A synopsis of the avifauna of China. Science Press. Beijing.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Burhinidae","genus_name":"Burhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius oedicnemus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11848,"full_name":"Lagenorhynchus acutus","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Atlantic White-sided Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque à flanc blanc de l'Atlantique","convention_language":true,"id":null},{"lang":"Norwegian","names":"Kvitskjeving","convention_language":false,"id":null},{"lang":"Spanish","names":"Delfín de flancos blancos","convention_language":true,"id":null},{"lang":"Swedish","names":"västlig vitsidsdelfin, atlantisk vitsiding","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 64-72.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Selzer, L. A. and Payne, P. M. 1988. The distribution of white-sided (\u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E) and common dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) vs. environmental features of the continental shelf of the northeastern United States. Marine Mammal Science: 4: 141-153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11849,"full_name":"Myiagra cyanoleuca","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Satin Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Monarque satiné","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Myiagra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11850,"full_name":"Hippolais olivetorum","author_year":"(Strickland, 1837)","common_names":[{"lang":"Czech","names":"Sedmihlásek olivní","convention_language":false,"id":null},{"lang":"Danish","names":"Olivensanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Griekse Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Olive-tree Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Oliivikultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs des oliviers","convention_language":true,"id":null},{"lang":"German","names":"Olivenspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Olívgeze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino levantino, Campino levantino","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganuacz oliwny, Zaganiacz oliwny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-oliveiras","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarcero grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Olivsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11851,"full_name":"Sylvia nana","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Ørkensanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijngrasmus","convention_language":false,"id":null},{"lang":"English","names":"Asian Desert Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiökerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette naine","convention_language":true,"id":null},{"lang":"German","names":"Wüstengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola nana","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka pustynna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra do Sara","convention_language":false,"id":null},{"lang":"Russian","names":"Pustynnaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Sahariana","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökensångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Murdoch, D., Andrews, I. and Hofland, R. 2004. The Syrian Wetland Expedition 2004: a summary. Sandgrouse: 26: 94-104.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11852,"full_name":"Balaenoptera omurai","author_year":"Wada, Oishi \u0026 Yamada, 2003","common_names":[{"lang":"English","names":"Omura's whale","convention_language":true,"id":null}],"distributions":[{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Wada, S., Oishi, M. and Yamada, T. K. 2003. A newly discovered species of living baleen whale. Nature: 426: 278-281.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Wada, S., Oishi, M. and Yamada, T. K. 2003. A newly discovered species of living baleen whale. Nature: 426: 278-281.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11853,"full_name":"Acrocephalus concinens","author_year":"(Swinhoe, 1870)","common_names":[{"lang":"English","names":"Blunt-winged Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle de Swinhoe","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11854,"full_name":"Phylloscopus cantator","author_year":"(Tickell, 1833)","common_names":[{"lang":"English","names":"Yellow-vented Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot chanteur","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11855,"full_name":"Merops apiaster","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vlha pestrá","convention_language":false,"id":null},{"lang":"Danish","names":"Biæder","convention_language":false,"id":null},{"lang":"Dutch","names":"Bijeneter","convention_language":false,"id":null},{"lang":"English","names":"European Bee-eater, Bee-eater","convention_language":true,"id":null},{"lang":"Finnish","names":"Mehiläissyöjä","convention_language":false,"id":null},{"lang":"French","names":"Guêpier d'Europe","convention_language":true,"id":null},{"lang":"German","names":"Bienenfresser","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gyugyalag, Gyurgyalag","convention_language":false,"id":null},{"lang":"Italian","names":"Gruccione","convention_language":false,"id":null},{"lang":"Polish","names":"zolna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abelharuco-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Zolotisatya Shchurka","convention_language":false,"id":null},{"lang":"Spanish","names":"Abejaruco común, Abejaruco Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Biätare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. 2001. European Bee-eater Merops apiaster and Citrine Wagtail Motacilla citreola: the first records for Seychelles. Bulletin of the African Bird Club: 8: 51-53.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Coraciiformes","class_name":"Aves","family_name":"Meropidae","genus_name":"Merops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11856,"full_name":"Cygnus columbianus","author_year":"(Ord, 1815)","common_names":[{"lang":"Danish","names":"Pibesvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Zwaan","convention_language":false,"id":null},{"lang":"English","names":"Tundra Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkujoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne de Bewick, Cygne siffleur","convention_language":true,"id":null},{"lang":"German","names":"Zwergschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno minore","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź czarnodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-pequeno","convention_language":false,"id":null},{"lang":"Russian","names":"Американский лебедь","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre sångsvan","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Georg, P. V. 1968. \u003Ci\u003ECygnus bewickii\u003C/i\u003E Yarrell, Bewick's Swan: an addition to the avifauna of Iraq. Bull. Iraq Nat. Hist. Mus.: 3: 11-13.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas columbianus","author_year":"Ord, 1815"},{"full_name":"Cygnus bewickii","author_year":"Yarrell, 1830"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11857,"full_name":"Catharus ustulatus","author_year":"(Nuttall, 1840)","common_names":[{"lang":"Danish","names":"Brunrygget Skovdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwerglijster","convention_language":false,"id":null},{"lang":"English","names":"Russet-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à dos olive","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"McNair, D. B., Massiah, E. B. and Frost, M. D. 1999. New and rare species of Nearctic landbird migrants during autumn for Barbados and the Lesser Antilles. Caribbean Journal of Science: 35: 46-53.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S., Rimmer, C., Keith, A., Wiley, J., Raffaele, H., Mcfarland, K. and Fernandez, E. 2006. Birds of the Dominican Republic \u0026 Haiti. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11858,"full_name":"Panurus biarmicus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Skægmejse","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardmannetje","convention_language":false,"id":null},{"lang":"English","names":"Bearded Tit, Bearded Reedling, Bearded Parrotbill","convention_language":true,"id":null},{"lang":"Finnish","names":"Viiksitimali","convention_language":false,"id":null},{"lang":"French","names":"Panure à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Bartmeise","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barkóscinege","convention_language":false,"id":null},{"lang":"Italian","names":"Basettino","convention_language":false,"id":null},{"lang":"Polish","names":"wasatka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chapim-de-bigode","convention_language":false,"id":null},{"lang":"Russian","names":"Usataya Sinitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Bigotudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Skäggmes","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; Tavares, J., Sá Pessoa, P. and Brito e Abreu, F. 2000. The first breeding record of Bearded Tit \u003Ci\u003EPanurus biarmicus\u003C/i\u003E in Syria. Sandgrouse: 22: 145-146.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Panuridae","genus_name":"Panurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Panuridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11859,"full_name":"Charadrius dubius","author_year":"Scopoli, 1786","common_names":[{"lang":"Danish","names":"Lille Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Plevier","convention_language":false,"id":null},{"lang":"English","names":"Little Ringed Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutylli","convention_language":false,"id":null},{"lang":"French","names":"Pluvier petit-gravelot, Petit Gravelot","convention_language":true,"id":null},{"lang":"German","names":"Flußregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere piccolo","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dverglo","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka rzeczna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-pequeno-de-coleira","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11861,"full_name":"Regulus calendula","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Ruby-crowned Kinglet","convention_language":true,"id":null},{"lang":"French","names":"Roitelet à couronne rubis","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11862,"full_name":"Rhinolophus blasii","author_year":"Peters, 1867","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i Blasiusit","convention_language":false,"id":null},{"lang":"Croatian","names":"Blazijev potkovnjak","convention_language":false,"id":null},{"lang":"Danish","names":"Blasius hesteskonæse, Blasius' hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Blasius' hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Peak-saddle Horseshoe Bat, Blasius's Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Blasinhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe de Blasius","convention_language":true,"id":null},{"lang":"German","names":"Blasius-Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Blasius-patkósdenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo di Blasius","convention_language":false,"id":null},{"lang":"Norwegian","names":"Blasiushesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"Podkowiec Blasiusa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Liliacul-lui-Blasius","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de herradura de Blasius, Murciélago dálmata de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Blasius hästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kock, D. and Howell, K. M. 1988. Three bats new for mainland Tanzania (Mammalia: Chiroptera). Senckenbergiana biologica: 68: 223-239.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11863,"full_name":"Hippolais icterina","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Czech","names":"Sedmihlásek hajní","convention_language":false,"id":null},{"lang":"Danish","names":"Gulbug","convention_language":false,"id":null},{"lang":"Dutch","names":"Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Icterine Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs ictérine","convention_language":true,"id":null},{"lang":"German","names":"Gelbspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"felosa-icterina","convention_language":false,"id":null},{"lang":"Russian","names":"Zelyonaya Peresmeshka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarcero Icterino","convention_language":true,"id":null},{"lang":"Swedish","names":"Härmsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. R. 2007. First records of Icterine Warbler \u003Ci\u003EHippolais icterina\u003C/i\u003E for The Gambia and Senegal. Bulletin of the African Bird Club: 14: 72-74.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Catry, P. and Mendes, L. 1998. Red-throated Pipit \u003Ci\u003EAnthus cervinus\u003C/i\u003E and Icterine Warbler \u003Ci\u003EHippolais icterinus\u003C/i\u003E, new to Guinea-Bissau. Malimbus: 20: 123-124.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Barlow, C. R. 2007. First records of Icterine Warbler \u003Ci\u003EHippolais icterina\u003C/i\u003E for The Gambia and Senegal. Bulletin of the African Bird Club: 14: 72-74.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11864,"full_name":"Cettia brunnifrons","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Grey-sided Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle à couronne brune","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11866,"full_name":"Sterna bernsteini","author_year":"Schlegel, 1863","common_names":[{"lang":"English","names":"Chinese Crested Tern, Chinese Crested-tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne d'Orient","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán Chino","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna zimmermanni","author_year":"Reichenow, 1903"},{"full_name":"Thalasseus zimmermanni","author_year":"(Reichenow, 1903)"}],"cms_listings":[],"cms_instruments":[]},{"id":11869,"full_name":"Inia geoffrensis","author_year":"(Blainville, 1817)","common_names":[{"lang":"Dutch","names":"Inia","convention_language":false,"id":null},{"lang":"English","names":"Amazon River Dolphin, Boutu, Boto","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de l'Amazone, Inia","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo","convention_language":true,"id":null},{"lang":"Swedish","names":"boutu, amazondelfin","convention_language":false,"id":null}],"distributions":[{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Iniidae","genus_name":"Inia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11870,"full_name":"Myadestes townsendi","author_year":"(Audubon, 1838)","common_names":[{"lang":"English","names":"Townsend's Solitaire","convention_language":true,"id":null},{"lang":"French","names":"Solitaire de Townsend","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Myadestes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11871,"full_name":"Egretta gularis","author_year":"(Bosc, 1792)","common_names":[{"lang":"Danish","names":"Revhejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Westelijke Rifreiger","convention_language":false,"id":null},{"lang":"English","names":"Western Reef Heron, Western Reef-egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette à gorge blanche","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Norton, R. L., White, A. and Dobson, A. 2005. West Indies and Bermuda. North American Birds: 59: 166-169.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea gularis","author_year":"Bosc, 1792"},{"full_name":"Egretta dimorpha","author_year":"Hartert, 1914"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11874,"full_name":"Ficedula zanthopygia","author_year":"(Hay, 1845)","common_names":[{"lang":"English","names":"Yellow-rumped Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à croupion jaune","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11875,"full_name":"Ardeola rufiventris","author_year":"(Sundevall, 1851)","common_names":[{"lang":"English","names":"Rufous-bellied Heron","convention_language":true,"id":null},{"lang":"French","names":"Crabier à ventre roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Garcilla ventrirroja","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea rufiventris","author_year":"Sundevall, 1851"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11876,"full_name":"Turdus pilaris","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Sjagger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kramsvogel","convention_language":false,"id":null},{"lang":"English","names":"Fieldfare","convention_language":true,"id":null},{"lang":"Finnish","names":"Räkättirastas","convention_language":false,"id":null},{"lang":"French","names":"Grive litorne","convention_language":true,"id":null},{"lang":"German","names":"Wacholderdrossel","convention_language":false,"id":null},{"lang":"Italian","names":"Cesena","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-zornal","convention_language":false,"id":null},{"lang":"Russian","names":"Ryabinnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Bjö rktrast, Björktrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Marchant, S. 1963. Notes on the winter status of certain species in Iraq. Ardea: 51: 237-243.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11877,"full_name":"Aythya nyroca","author_year":"(Güldenstädt, 1770)","common_names":[{"lang":"Czech","names":"Polák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Hvidøjet and","convention_language":false,"id":null},{"lang":"Dutch","names":"Witoogeend","convention_language":false,"id":null},{"lang":"English","names":"Ferruginous Duck, White-eyed Pochard, Ferruginous Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruskosotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule nyroca","convention_language":true,"id":null},{"lang":"German","names":"Moorente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Cigányréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta tabaccata","convention_language":false,"id":null},{"lang":"Polish","names":"Podgorza","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón pardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitögd dykand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Sultanov, E. and Agayeva, N. 2003. The current breeding status of Ferruginous Duck \u003Ci\u003EAythya nyroca\u003C/i\u003E in Azerbaijan. Sandgrouse: 25: 41-49.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Petkov, N. 2000. Population trends of breeding Ferruginous Duck in Bulgaria. Threatened Waterfowl Research Group News: 12: 44-48.; Petkov, N. and Mittev, D. 2001. Ferruginous Ducks at Durankulak Lake complex, Bulgaria, 1995-2001. Threatened Waterfowl Research Group News: 13: 49-55.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Trolliet, B. and Girard, O. 2001. Record counts of Ferruginous Duck in Sahelian Africa. Threatened Waterfowl Research Group News: 13: 56-57.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Talukdar, B. K. and Bhattacharjee, P. C. 2000. Status of wintering Ferruginous Duck in the Brahmaputra valley, Assam, India. Threatened Waterfowl Research Group News: 12: 39-41.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Saporetti, F. 2000. Breeding Ferruginous Duck at Palude Brabbia Regional Reserve, northern Italy. Threatened Waterfowl Research Group News: 12: 42-43.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Trolliet, B. and Girard, O. 2001. Record counts of Ferruginous Duck in Sahelian Africa. Threatened Waterfowl Research Group News: 13: 56-57.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R. 1968. Beiträge zur avifauna der mongolei teil I. Non-passeriformes. Ergebnisse der Mongolisch- Deutschen Biologischen Expecition seit 1962. Mitt. Zool. Mus. Berlin: 44: 149-292.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11878,"full_name":"Orcaella brevirostris","author_year":"(Owen in Gray, 1866)","common_names":[{"lang":"English","names":"Irrawaddy Dolphin, Snubfin Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Orcelle","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín del Irrawaddy","convention_language":true,"id":null},{"lang":"Swedish","names":"irawaddydelfin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.; Smith, B.D., Diyan, M.A.A., Mansur, R.M., Mansur E.F. and Ahmed B. 2010. Identification and channel characteristics of cetacean hotspots in waterways of the eastern Sundarbans mangrove forest, Bangladesh. Oryx: 44: 241-247.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Baird, I. G. and Beasley, I. L. 2005. Irrawaddy Dolphin \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E in the Cambodian Mekong River: an initial survey. Oryx: 39: 301-310.; Baird, I. G. and Bounhong Mounsouphom. 1994. Irrawaddy Dolphins (\u003Ci\u003EOrcaella brevirostris\u003C/i\u003E) in southern Lao PDR and northeastern Cambodia. Natural History Bulletin of the Siam Society: 42: 159-175.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Baird, I. G. and Bounhong Mounsouphom. 1994. Irrawaddy Dolphins (\u003Ci\u003EOrcaella brevirostris\u003C/i\u003E) in southern Lao PDR and northeastern Cambodia. Natural History Bulletin of the Siam Society: 42: 159-175.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Gressitt, J. L. 1970. Biogeography of Laos. Pacific Insects Monograph: 24: 573-626.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcaella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11879,"full_name":"Anser brachyrhynchus","author_year":"Baillon, 1834","common_names":[{"lang":"Czech","names":"Husa krátkozobá","convention_language":false,"id":null},{"lang":"Danish","names":"Kortnæbbet Gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Rietgans","convention_language":false,"id":null},{"lang":"English","names":"Pink-footed Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Lyhytnokkahanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie à bec court","convention_language":true,"id":null},{"lang":"German","names":"Kurzschnabelgans","convention_language":false,"id":null},{"lang":"Italian","names":"Oca zamperosee","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-bico-curto, Ganso-de-boco-curto","convention_language":false,"id":null},{"lang":"Swedish","names":"Spetsbergsgås","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anser fabalis brachyrhynchus","author_year":"(Latham, 1787)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11880,"full_name":"Monodon monoceros","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Narwhal, Unicorn Whale","convention_language":true,"id":null},{"lang":"French","names":"Narval","convention_language":true,"id":null},{"lang":"Norwegian","names":"Narhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Narval","convention_language":true,"id":null},{"lang":"Swedish","names":"narval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Dietz, R., Heide-Jorgensen, M.P., Richard, P., Orr, J., Laidre, K. and Schmidt, H.C. 2008. Movements of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) from Admiralty Inlet monitored by satellite telemetry. Polar Biology: 31: 1295-1306.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Heide-Jorgensen, M.P., Dietz, R., Laidre, K.L. and Richard, P. 2002. Autumn movements, home ranges, and winter density of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) tagged in Tremblay Sound, Baffin Island. Polar Biology: 25: 331-341.; Hrynyshyn, J. and Sorg A. 2004. Canada's narwhal whale - a species on the edge. Arctic Series - Canadian Marine Environment Protection Society. British Columbia, Canada. ; Marcoux, M., uger-Methe, M. and Humphries, M.M. 2009. Encounter frequencies and grouping patterns of narwhals in Koluktoo Bay, Baffin Island. Polar Biology: 32: 1705-1716.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Born, E.W., Heide-Jorgensen, M.P., Larsen, F. and Martin, A. 1994. Abundance and stock composition of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) in Inglefield Bredning (NW Greenland). Meddelelser om Gradand. BioScience: 39: 51-68.; Heide-Jorgensen, M. and Acquarone, M. 2002. Size and trends of the bowhead whale, beluga and narwhal stocks wintering off west Greenland. NAMMCO Scientific Publications: 4: 191-210.; Heide-Jorgensen, M.P. 2004. Aerial digital photographic surveys of narwhals, \u003Ci\u003EMonodon monoceros\u003C/i\u003E, in Northwest Greenland. Marine Mammal Science: 20: 246-261.; Heide-Jørgensen, M.P., Laidre, K.L., Burt, M.L., Borchers, D.L., Marques, T.A., Hansen, R.G., Rasmussen, M. and Fossette, S. 2010. Abundance of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) on the hunting grounds in Greenland. Journal of Mammalogy: 91: 1135-1151.; Nielsen, M.R. 2009. Is climate change causing the increasing narwhal (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) catches in Smith Sound, Greenland? Polar Research: 28: 238-245.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mittermeier, R. A. and Roosmalen, M. G. M. van. 1982. Conservation of primates in Surinam. International Zoo Yearbook: 22: 59-68.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Wolkers, H., Lydersen, C., Kovacs, K. M., Burkow, I. and van Bavel, B. 2006. Accumulation, metabolism, and food-chain transfer of chlorinated and brominated contaminants in subadult white whales (\u003Ci\u003EDelphinapterus leucas\u003C/i\u003E) and Narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) from Svalbard, Norway. \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 50(1): 69–78.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Monodontidae","genus_name":"Monodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11881,"full_name":"Alca torda","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Alka malá","convention_language":false,"id":null},{"lang":"Danish","names":"Alk","convention_language":false,"id":null},{"lang":"Dutch","names":"Alk","convention_language":false,"id":null},{"lang":"English","names":"Razorbill, Razor-billed Auk","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokki","convention_language":false,"id":null},{"lang":"French","names":"Petit Pingouin, Pingouin torda","convention_language":true,"id":null},{"lang":"German","names":"Tordalk","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alka","convention_language":false,"id":null},{"lang":"Italian","names":"Gazza marina","convention_language":false,"id":null},{"lang":"Norwegian","names":"Alke","convention_language":false,"id":null},{"lang":"Polish","names":"Alka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Torda-mergulheira","convention_language":false,"id":null},{"lang":"Russian","names":"Gagarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Alca Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tordmule","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Alca","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11882,"full_name":"Myotis blythii","author_year":"(Tomes, 1857)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i vogel","convention_language":false,"id":null},{"lang":"Croatian","names":"Oštrouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr východní","convention_language":false,"id":null},{"lang":"Danish","names":"Lille museøre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine vale vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Lesser Mouse-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Teravkõrv-lendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Hiirenkorvasiippa","convention_language":false,"id":null},{"lang":"French","names":"Petit murin","convention_language":true,"id":null},{"lang":"German","names":"Kleines Mausohr","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hegyesorrú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Liten musøre","convention_language":false,"id":null},{"lang":"Polish","names":"Nocek ostrouszny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rato-pequeno","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier ostrouchý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago ratonero mediano","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre musöra","convention_language":false,"id":null},{"lang":"Turkish","names":"Fare kukali küçük yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Rakhmatulina, I. K. 1980. [Material on the ecology of bats from Azykhsk Cave.]. Pp. 154-179 in A. P. Kuzyakin and K. K. Panyutin (eds.) [Bats (Chiroptera).]. Nauka, Moscow.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11883,"full_name":"Phylloscopus collybita","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Gransanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Tjiftjaf","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Chiffchaff, Common Chiffchaff, Chiffchaff","convention_language":true,"id":null},{"lang":"Finnish","names":"Tiltaltti","convention_language":false,"id":null},{"lang":"French","names":"Pouillot véloce","convention_language":true,"id":null},{"lang":"German","names":"Zilpzalp","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csilpcsalpfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Pierwiosnek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Gransångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Püttger-Conradt, A. 2002. A record of Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E in Kinshasa, Congo. Die Vogelwelt: 123: 109.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Phylloscopus brehmii","author_year":"(Homeyer, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11884,"full_name":"Glareola cinerea","author_year":"Fraser, 1843","common_names":[{"lang":"English","names":"Grey Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera gris","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11885,"full_name":"Hirundo atrocaerulea","author_year":"Sundevall, 1850","common_names":[{"lang":"English","names":"Blue Swallow","convention_language":true,"id":null},{"lang":"French","names":"Hirondelle bleue","convention_language":true,"id":null}],"distributions":[{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Hirundinidae","genus_name":"Hirundo","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11886,"full_name":"Rousettus aegyptiacus","author_year":"(É. Geoffroy, 1810)","common_names":[{"lang":"English","names":"Egyptian fruit bat, Egyptian Rousette","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Feiler, A. 1986. Zur Faunistik und Biometrie angolanischer Fledermause (Mammalia, Mega- et Microchiroptera). Zoologische Abhandlungen st. Mus. Tierk., Dresden: 42: 65-77.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Kock, D. 1981. Zur Chiropteran-fauna von Burundi (Mammalia). Senckenbergiana Biologica: 61: 329-336.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J., Harrison, D. L. and Granjon, L. 1991. Bats (Chiroptera) from the Mayombe and lower Kouilou (with a checklist for Congo). Tauraco Research Report: 4: 251-263.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Cabrera, A. 1929. Catalogo descriptivo de los mamiferos de la Guinea Espanola. Memorias de la Sociedad Espagnol de Historia Natural, Madrid: 16: 1-121.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Roche, J. 1971. Recherches mammalogiques en Guinea forestière. Bulletin du Muséum National d'Histoire Naturelle: 16: 737-781.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Eid, E., and Dhesat, M. 2007. Small mammals monitoring program at mujib nature reserve. Royal Society for the Conservation of Nature . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Bergmans, W. and Van Strien, N. 2004. Systematic notes on a collection of bats from Malawi. I. Megachiroptera: Epomophorinae and Rousettinae (Mammalia, Chiroptera). Acta Chiropterologica: 6: 249-268.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Baeten, B. B., van Cakenberghe, V. and de Vree, F. 1984. An annotated inventory of a collection of bats from Rwanda. Revue de Zoologie Africaines: 98: 183-196.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Feiler, A. 1988. Die Säugetiere der inseln im Golf von Guinea. Zoologische Abhandlungen staatliche Museum für Tierkunde Dresden: 44: 83-88.; Juste, J. and Ibáñez, C. 1993. Geographic variation and taxonomy of \u003Ci\u003ERousettus aegyptiacus\u003C/i\u003E (Mammalia: Megachiroptera) in the islands of the Gulf of Guinea. Zoological Journal of the Linnean Society: 107: 117-129.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Pteropodidae","genus_name":"Rousettus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Rousettus arabicus","author_year":"Anderson \u0026 de Winton, 1902"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":11887,"full_name":"Phylloscopus occipitalis","author_year":"(Blyth, 1845)","common_names":[{"lang":"English","names":"Western Crowned-Warbler, Western Crowned Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11888,"full_name":"Uria lomvia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun tlustozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Polarlomvie","convention_language":false,"id":null},{"lang":"Dutch","names":"Dikbekzeekoet","convention_language":false,"id":null},{"lang":"English","names":"Thick-billed Murre, Brünnich's Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Pohjankiisla","convention_language":false,"id":null},{"lang":"French","names":"Guillemot de Brünnich","convention_language":true,"id":null},{"lang":"German","names":"Dickschnabellumme","convention_language":false,"id":null},{"lang":"Italian","names":"Uria di Brünnich","convention_language":false,"id":null},{"lang":"Polish","names":"Nurzyk polarny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau de Brünnich","convention_language":false,"id":null},{"lang":"Russian","names":"Tolstoklyuvaya Kayra","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao de Brünnich","convention_language":true,"id":null},{"lang":"Swedish","names":"Spetsbergsgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Mullarney, K. 1988. Brünnich's Guillemot in County Wexford - an addition to the Irish list. Irish Birds: 3: 601-605.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Uria","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca lomvia","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11889,"full_name":"Phylloscopus proregulus","author_year":"(Pallas, 1811)","common_names":[{"lang":"Danish","names":"Fuglekongesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Pallas' Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Lemon-rumped Warbler, Pallas's Leaf-Warbler, Pallas's Leaf Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Pallas","convention_language":true,"id":null},{"lang":"Russian","names":"Korolkovaya Penochka","convention_language":false,"id":null},{"lang":"Swedish","names":"kungsfågelsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bellio, M. G., Pressanin, R. and Parodi, R. 1997. First record of Pallas' Warbler (\u003Ci\u003EPhylloscopus proregulus\u003C/i\u003E) in Italy. Fauna: 4: 133-134.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11890,"full_name":"Oxyura jamaicensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Czech","names":"Kachnice kaštanová","convention_language":false,"id":null},{"lang":"Danish","names":"Amerikansk Skarveand","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Stekelstaarteend, Rosse Stekelstaart","convention_language":false,"id":null},{"lang":"English","names":"Ruddy Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Kupariviuhkasorsa","convention_language":false,"id":null},{"lang":"French","names":"Erismature rousse, Érismature rousse, Érismature roux","convention_language":true,"id":null},{"lang":"German","names":"Schwarzkopf-Ruderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketefejú halcsontfarkú réce","convention_language":false,"id":null},{"lang":"Italian","names":"Gobbo rugginoso della Giamaica","convention_language":false,"id":null},{"lang":"Polish","names":"Sterniczka jamajska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-rabo-alçado-americano","convention_language":false,"id":null},{"lang":"Spanish","names":"Malvasía Canela","convention_language":true,"id":null},{"lang":"Swedish","names":"Amerikansk kopparand","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"Brown, A. C. and Collier, N. 2004. A new breeding population of \u003Ci\u003EOxyura jamaicensis\u003C/i\u003E (Ruddy Duck) on St. Martin, Lesser Antilles. Caribbean Journal of Science: 40: 259-263.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A., Duzont, F. and Ramsahai, A. 2005. Cinq espèces d'oiseaux nicheurs récemment découvertes en Guadeloupe (Antilles françaises). Alauda: 73: 69-70.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"introduced","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,introduced (?)","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas jamaicensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11891,"full_name":"Phocoena dioptrica","author_year":"Lahille, 1912","common_names":[{"lang":"Dutch","names":"Brilbruinvis","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Lahille, Marsouin à lunettes","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa de anteojo","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögontumlare","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Goodall, R. N. P. and Cameron, L. S. 1979. \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E, una nueva especie para aguas chilenas. Revista Mus. argent. Cienc. nat. Bernardino Rivadavia Inst. nac. Invest. Cienc. nat. (Zool.): 12: 143-152.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. 1977. Spectacled Porpoise, \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E, new to the subantarctic Pacific Ocean. New Zealand Journal of Marine and Freshwater Research: 11: 401-406.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11892,"full_name":"Sporophila hypochroma","author_year":"Todd, 1915","common_names":[{"lang":"English","names":"Grey-and-chestnut Seedeater, Rufous-rumped Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile à croupion roux","convention_language":true,"id":null},{"lang":"German","names":"Rotbürzelpfäffchen","convention_language":false,"id":null},{"lang":"Swedish","names":"kastanjekindad frösparv","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S., Rocha, G. and Aldabe, J. 2006. The occurrence of \u003Ci\u003ESporophila hypochroma\u003C/i\u003E and \u003Ci\u003ES. hypoxantha\u003C/i\u003E in Uruguay. Bulletin of the British Ornithologists' Club: 126: 45-49.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11893,"full_name":"Phylloscopus ijimae","author_year":"(Stejneger, 1882)","common_names":[{"lang":"English","names":"Ijima's Leaf-warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot d'Ijima","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11894,"full_name":"Aix galericulata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Mandarinand","convention_language":false,"id":null},{"lang":"Dutch","names":"Mandarijneend","convention_language":false,"id":null},{"lang":"English","names":"Mandarin, Mandarin Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Mandariinisorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard mandarin","convention_language":true,"id":null},{"lang":"German","names":"Mandarinente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mandarinréce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra mandarina","convention_language":false,"id":null},{"lang":"Polish","names":"Mandarynka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-mandarim","convention_language":false,"id":null},{"lang":"Russian","names":"Mandarinka","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato Mandarín","convention_language":true,"id":null},{"lang":"Swedish","names":"påfågelkalkon, Mandarinand","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,introduced (?)","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas galericulata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11895,"full_name":"Alectrurus tricolor","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"Cock-tailed Tyrant","convention_language":true,"id":null},{"lang":"French","names":"Moucherolle petit-coq","convention_language":true,"id":null},{"lang":"Spanish","names":"Yetapá chico","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Parker, T. A. III, Castillo U., A., Gell-mann, M. and Rocha, O. O. 1991. Records of new and unusual birds from northern Bolivia. Bulletin of the British Ornithologists' Club: 111: 120-138.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Alectrurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11896,"full_name":"Limosa fedoa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Marbled Godwit","convention_language":true,"id":null},{"lang":"French","names":"Barge marbrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Aguja canela","convention_language":true,"id":null}],"distributions":[{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax fedoa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11897,"full_name":"Fulica cristata","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Kamblishøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Knobbelmeerkoet","convention_language":false,"id":null},{"lang":"English","names":"Crested Coot, Red-knobbed Coot","convention_language":true,"id":null},{"lang":"Finnish","names":"Syylänokikana","convention_language":false,"id":null},{"lang":"French","names":"Foulque caronculée, Foulque à crête","convention_language":true,"id":null},{"lang":"German","names":"Kammbläßhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös szárcsa","convention_language":false,"id":null},{"lang":"Italian","names":"Folaga cornuta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galeirão-de-crista","convention_language":false,"id":null},{"lang":"Spanish","names":"Focha moruna, Focha cornuda","convention_language":true,"id":null},{"lang":"Swedish","names":"Kamsothöna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gustad, J. R. and Schjolberg, K. 2002. The first Red-knobbed Coots \u003Ci\u003EFulica cristata\u003C/i\u003E in Oman and the Middle East. Sandgrouse: 24: 65-67.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Fulica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11898,"full_name":"Platalea leucorodia","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kolpík bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Skestork","convention_language":false,"id":null},{"lang":"Dutch","names":"Lepelaar","convention_language":false,"id":null},{"lang":"English","names":"Spoonbill, Eurasian Spoonbill, White Spoonbill","convention_language":true,"id":null},{"lang":"Finnish","names":"Kapustahaikara","convention_language":false,"id":null},{"lang":"French","names":"Spatule blanche","convention_language":true,"id":null},{"lang":"German","names":"Löffler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kanalasgém","convention_language":false,"id":null},{"lang":"Italian","names":"Spatola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Colhereiro","convention_language":false,"id":null},{"lang":"Spanish","names":"Espátula, Espátula blanca, Espátula común","convention_language":true,"id":null},{"lang":"Swedish","names":"vanlig skedstork, Skedstork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (3). Bulletin of the British Ornithologists' Club: 198: 112-120.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marion, L. and Marion, P. 1982. [The Spoonbill \u003Ci\u003EPlatalea leucorodia\u003C/i\u003E nests at the Lac de Grand-Lieu, France.]. Alauda: 50: 241-249.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jairaj, A. P. and Sanjeev Kumar, V. K. 1990. Occurrence of the Spoonbill \u003Ci\u003EPlatalea leucorodia\u003C/i\u003E in Kerala. Journal of the Bombay Natural History Society: 87: 289-290.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S. 1993. Status of storks, ibises and spoonbills in Nepal. Specialist Group on Storks, Ibises and Spoonbills Newsletter: 6: 6-8.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1996. Bird list of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project WWF/EC. Bach Ma (Viet Nam). 59; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11899,"full_name":"Melanitta perspicillata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Brilleand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilzeeëend","convention_language":false,"id":null},{"lang":"English","names":"Surf Scoter","convention_language":true,"id":null},{"lang":"French","names":"Macreuse à lunettes, Macreuse à front blanc","convention_language":true,"id":null},{"lang":"Polish","names":"Uhla pstrodzioba","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón careto","convention_language":true,"id":null},{"lang":"Swedish","names":"vitnackad svärta","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas perspicillata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11901,"full_name":"Thalassarche impavida","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Campbell Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea melanophris","author_year":"Temminck, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea melanophris\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11902,"full_name":"Phaethon rubricauda","author_year":"Boddaert, 1783","common_names":[{"lang":"English","names":"Red-tailed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à brins rouges","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabijunco colirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Couto, G. S., Interaminense, L. J. L. and Morette, M. E. 2001. First record of Red-tailed Tropicbird (\u003Ci\u003EPhaethon rubricauda\u003C/i\u003E) in Brazil. Nattereria: 2: 24-25.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hogsas, T. E. 1999. An observation of Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E in Tacna, Peru. Cotinga: 12: 75.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S. 1990. Notes on Philippine birds, 16. First records of the Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E and Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E from the Philippines. Bulletin of the British Ornithologists' Club: 110: 107-109.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11903,"full_name":"Anser caerulescens","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Snegås","convention_language":false,"id":null},{"lang":"Dutch","names":"Sneeuwgans","convention_language":false,"id":null},{"lang":"English","names":"Snow Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie des neiges","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar nival","convention_language":true,"id":null},{"lang":"Swedish","names":"snögås, Spetsbergsgås","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas caerulescens","author_year":"Linnaeus, 1758"},{"full_name":"Chen caerulescens","author_year":"(Linnaeus, 1758)"},{"full_name":"Chen hyperboreus","author_year":"(Pallas, 1769)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11904,"full_name":"Tringa guttifer","author_year":"(Nordmann, 1835)","common_names":[{"lang":"Danish","names":"Nordmanns klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Gevlekte groenpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Spotted Greenshank, Nordmann's Greenshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Täpläviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier tacheté, Chevalier à gouttelette","convention_language":true,"id":null},{"lang":"German","names":"Sachalin-Grnschenkel, Tüpfel-Grünschenkel","convention_language":false,"id":null},{"lang":"Italian","names":"Piro macchiato","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe manchado, Archibebe moteado","convention_language":true,"id":null},{"lang":"Swedish","names":"ochotsk snäppa, fläckgluttsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Kennerley, P. R. and Bakewell, D. N. 1987. Nordmann's Greenshank in Hong Kong: a review of the identification and status. Hong Kong Bird Report: 1986: 83-100.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11906,"full_name":"Coturnix coturnix","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Kwartel","convention_language":false,"id":null},{"lang":"English","names":"Common Quail, Quail, Scaled Quail (Blue)","convention_language":true,"id":null},{"lang":"Finnish","names":"Viiriäinen","convention_language":false,"id":null},{"lang":"French","names":"Caille des blés","convention_language":true,"id":null},{"lang":"German","names":"Wachtel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fürj","convention_language":false,"id":null},{"lang":"Italian","names":"Quaglia","convention_language":false,"id":null},{"lang":"Polish","names":"Przepiórka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Codorniz","convention_language":false,"id":null},{"lang":"Russian","names":"Perepel","convention_language":false,"id":null},{"lang":"Spanish","names":"Codorniz, Codorniz Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Vaktel","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Clark, R. J. and Mikkola, H. 1989. A preliminary revision of threatened and near-threatened nocturnal birds of prey of the world. In: Meyburg, B.-U. and Chancellor, R. D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct,introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Galliformes","class_name":"Aves","family_name":"Phasianidae","genus_name":"Coturnix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11907,"full_name":"Uncia uncia","author_year":"(Schreber, 1775)","common_names":[{"lang":"Danish","names":"sneleopard","convention_language":false,"id":null},{"lang":"Dutch","names":"Sneeuwpanter","convention_language":false,"id":null},{"lang":"English","names":"Snow Leopard, Ounce","convention_language":true,"id":null},{"lang":"Finnish","names":"Lumileopardi","convention_language":false,"id":null},{"lang":"French","names":"Léopard des neiges, Once, Irbis, Panthère des neiges","convention_language":true,"id":null},{"lang":"German","names":"Schneeleopard","convention_language":false,"id":null},{"lang":"Italian","names":"Leopardo delle Irbis","convention_language":false,"id":null},{"lang":"Spanish","names":"Pantera de la nieves, Leopardo de las nieves, Leopardo nival","convention_language":true,"id":null},{"lang":"Swedish","names":"snöleopard","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Naumann, C. and Niethammer, J. 1973. Zur Saügetierfauna des afghanischen Pamir und des Wakhan. Bonner Zoologische Beitrage: 24: 237-248.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Gee, E. P. 1967. Occurrence of the Snow Leopard, \u003Ci\u003EPanthera uncia\u003C/i\u003E (Schreber), in Bhutan. Journal of the Bombay Natural History Society: 64: 552-553.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Lu, Hou-ji. 1990. Cat problems in China. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 10.; Schaller, G. 1988. Snow Leopard in China. Cat News: 9: 11.; Schaller, G. B., Li Hong Talipu, Lu Hua, Ren Junrang, Qiu Mingjiang and Wang Haibin. 1987. Status of large mammals in the Taxkorgan Reserve, Xinjiang, China. Biological Conservation: 42: 53-71.; Seidensticker, J., Eisenberg, J. F. and Simons, R. 1984. The Tangjiahe, Wanglang, and Fengtongzhai Giant Panda reserves and biological conservation in the People's Republic of China. Biological Conservation: 28: 217-251.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Fox, J. L., Sinha, S. P., Chundawat, S. and Das, P. V. 1991. Status of the Snow Leopard \u003Ci\u003EPanthera uncia\u003C/i\u003E in North west India. Biological Conservation: 55: 283-298.; Green, M. J. B. 1982. Status, distribution and conservation of the Snow Leopard in north India. International Pedigree Book of Snow Leopards: 3: 6-10.; Osborne, B. C., Mallon, D. P. and Fraser, S. J. R. 1983. Ladakh, threatened stronghold of rare Himalayan mammals. Oryx: 17: 182-189.; Sathyakumar, S., Bashir, T., Bhattacharya, T. and Poudyal, K. 2011. Assessing mammal distribution and abundance in intricate eastern Himalayan habitats of Khangchendzonga, Sikkim, India. Mammalia: 75: 257-268.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Mallon, D. P. 1985. The mammals of the Mongolian People's Republic. Mammal Review: 15: 71-102.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rabinowitz, A. and Saw Tun Khaing. 1998. Status of selected mammal species in north Myanmar. Oryx: 32: 201-208.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Jackson, P. and Ahlborn, G. 1988. A radio-telemetry study of the Snow Leopard (\u003Ci\u003EPanthera uncia\u003C/i\u003E) in West Nepal. Tigerpaper: 15: 1-14.; Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Hussain, S. 2003. The status of the snow leopard in Pakistan and its conflict with local farmers. Oryx: 37: 26-33.; Mallon, D. 1988. Snow Leopards in northern Hunza. Cat News: 9: 12.; Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Uncia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPanthera uncia\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11908,"full_name":"Thalassarche steadi","author_year":"Falla, 1933","common_names":[{"lang":"English","names":"White-capped Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11909,"full_name":"Thalassornis leuconotus","author_year":"Eyton, 1838","common_names":[{"lang":"English","names":"White-backed Duck","convention_language":true,"id":null},{"lang":"French","names":"Dendrocygne à dos blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato dorsiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Thalassornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11910,"full_name":"Ziphius cavirostris","author_year":"G. Cuvier, 1823","common_names":[{"lang":"English","names":"Goose-beaked Whale, Cuvier's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Ziphius","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de Cuvier, Ziphio de Cuvier","convention_language":true,"id":null},{"lang":"Swedish","names":"Cuviers val, småhuvudval","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Caldwell, D. K. 1971. Cuvier's Beaked Whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E from Barbados. Bulletin Southern California Academy of Science: 70: 52-53.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Robineau, D. 1975. Échouage d'un \u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier, 1823 (Cetacea, Hyperoodontidae) dans l'archipel des Comores (Océan Indien). Mammalia: 39: 513-515.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Lastavel, A. 1980. Une baleine à bec (\u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier 1823) s'échoue à Dunkerque (1er échouage de l'espèce sur les côtes françaises de la Manche. Héron: 1980: 126-129.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Dammerman, K. W. 1926. \u003Ci\u003EZiphius cavirostris\u003C/i\u003E in the Indo-Australian Archipelago. Treubia: 8: 336-339.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Goosebeaked whale, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, and rough-toothed dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E G. Cuvier, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 203-204.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; van Bree, P. J. H. and Kristensen, I. 1974. On the intriguing stranding of four Cuvier's beaked whales, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, 1823, on the Lesser Antillean island of Bonaire. Bijdragen Dierk.: 44: 235-238.; van Bree, P. J. H., Creutzberg, F. and Kristensen, I. 1973. On strandings of Cuvier's whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, 1823, on the Lesser Antillean Islands of Sint Maarten and Curaçao. Lutra: 15: 6-8.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Fordyce, R. E., Mattlia, R. H. and Wilson, G. J. 1979. Stranding of a Cuvier's Beaked Whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier, 1823, at New Brighton, New Zealand. Mauri Ora: 7: 73-82.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Wang, J. Y., Chou, L. S., Yao, C. J., Neimanis, A. S. and Chou, W. H. 1995. Records of Cuvier's beaked whales (\u003Ci\u003EZiphius cavirostris\u003C/i\u003E) from Taiwan, Republic of China. Asian Marine Biology: 12: 111-118.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Casinos, A. 1981. \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier 1823 (Cetacea, Hyperoodontidae) en Isla Margarita (Venezuela). Publicaciones Dep. Zool. Univ. Barcelona: 6: 61-63.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Ziphius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"Mediterranean population only","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11912,"full_name":"Numenius madagascariensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Far Eastern Curlew, Eastern Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis de Sibérie","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito Siberiano","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Scolopax madagascariensis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11913,"full_name":"Regulus satrapa","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Golden-crowned Kinglet","convention_language":true,"id":null},{"lang":"French","names":"Roitelet à couronne dorée","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11914,"full_name":"Phylloscopus maculipennis","author_year":"(Blyth, 1867)","common_names":[{"lang":"English","names":"Ash-throated Warbler, Ashy-throated Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à face grise","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11917,"full_name":"Hodgsonius phaenicuroides","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"White-bellied Redstart","convention_language":true,"id":null},{"lang":"French","names":"Bradybate à queue rouge","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Hodgsonius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11918,"full_name":"Phalacrocorax carbo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kormorán velký","convention_language":false,"id":null},{"lang":"Danish","names":"Skarv","convention_language":false,"id":null},{"lang":"Dutch","names":"Aalscholver","convention_language":false,"id":null},{"lang":"English","names":"Great Cormorant","convention_language":true,"id":null},{"lang":"Finnish","names":"Merimetso","convention_language":false,"id":null},{"lang":"French","names":"Grand Cormoran","convention_language":true,"id":null},{"lang":"German","names":"Kormoran","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kárókatona","convention_language":false,"id":null},{"lang":"Italian","names":"Marangone","convention_language":false,"id":null},{"lang":"Polish","names":"Kormoran","convention_language":false,"id":null},{"lang":"Portuguese","names":"Corvo-marinho-de-faces-brancas, Corvo-marinho-de-faces brancas","convention_language":false,"id":null},{"lang":"Russian","names":"Bolshoy Baklan","convention_language":false,"id":null},{"lang":"Spanish","names":"Cormorán Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Storskarv","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1966. Colonies reproductrices de Spatules africaines, Ibis sacré et Laridés dans l'archipel des Bijagos (Guinée portugaise). Alauda: 34: 257-278.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Gibbs, D. 1996. Notes on Solomon Island birds. Bulletin of the British Ornithologists' Club: 116: 18-25.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus carbo","author_year":"Linnaeus, 1758"},{"full_name":"Phalacrocorax lucidus","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11919,"full_name":"Larus canus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stormmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Stormmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Mew Gull, Common Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Kalalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland cendré","convention_language":true,"id":null},{"lang":"German","names":"Sturmmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viharsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gavina","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa pospolita","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-pardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Cana","convention_language":true,"id":null},{"lang":"Swedish","names":"Fiskmås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Carey, G. J. and Kennerley, P. R. 1996. 'Mew' Gull: the first record for Hong Kong and the identification and systematics of Common Gull forms in East Asia. Hong Kong Bird Report 1996: 134-149.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Yésou, P. and Triplet, P. 1995. The Common Gull \u003Ci\u003ELarus canus\u003C/i\u003E in Senegal. Malimbus: 17: 26-27.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11920,"full_name":"Burhinus senegalensis","author_year":"(Swainson, 1837)","common_names":[{"lang":"Danish","names":"Senegal Triel","convention_language":false,"id":null},{"lang":"English","names":"Senegal Thick-knee","convention_language":true,"id":null},{"lang":"French","names":"OEdicnème du Sénégal","convention_language":true,"id":null},{"lang":"Spanish","names":"Alcaraván Senegalés","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Burhinidae","genus_name":"Burhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Burhinus senegalensis inornatus","author_year":"(Swainson, 1837)"},{"full_name":"Burhinus senegalensis senegalensis","author_year":"(Swainson, 1837)"},{"full_name":"Oedicnemus senegalensis","author_year":"Swainson, 1837"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11922,"full_name":"Monticola solitarius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Skalník modrý","convention_language":false,"id":null},{"lang":"Danish","names":"Blådrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwe Rotslijster","convention_language":false,"id":null},{"lang":"English","names":"Blue Rock Thrush, Blue Rock-Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinirastas","convention_language":false,"id":null},{"lang":"French","names":"Monticole bleu, Monticole merle-bleu","convention_language":true,"id":null},{"lang":"German","names":"Blaumerle","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kék kövirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Passero solitario","convention_language":false,"id":null},{"lang":"Polish","names":"Modrak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-azul","convention_language":false,"id":null},{"lang":"Russian","names":"Siny Kamenny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Roquero Solitario","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåtrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Carter, M. and Shaw, R. 1999. Blue Rock-Thrush \u003Ci\u003EMonticola solitarius\u003C/i\u003E: first record for Australia. Aust. Bird Watcher: 18: 101-105.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Hipkin, P. R. 2003. Breeding of Blue Rock-Thrush \u003Ci\u003EMonticola solitarius\u003C/i\u003E at Lake Toba, Sumatra. Kukila: 12: 66.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Harvancík, S. and Snírer, L. 1997. [First documented occurrence of Blue Rock Thrush (Monticola solitarius) in Slovakia.]. Tichodroma: 10: 164-167.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11923,"full_name":"Myotis hajastanicus","author_year":"Argyropulo, 1939","common_names":[{"lang":"English","names":"Armenian Myotis, Hajastan Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11924,"full_name":"Locustella pleskei","author_year":"Taczanowski, 1889","common_names":[{"lang":"English","names":"Pleske's Grasshopper-Warbler, Pleske's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Pleske","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11925,"full_name":"Gavia adamsii","author_year":"(Gray, 1859)","common_names":[{"lang":"Danish","names":"Hvidnæbbet Lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Geelsnavelduiker","convention_language":false,"id":null},{"lang":"English","names":"Yellow-billed Loon, White-billed Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Jääkuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon à bec blanc","convention_language":true,"id":null},{"lang":"German","names":"Gelbschnabel-Eistaucher","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga beccogiallo","convention_language":false,"id":null},{"lang":"Polish","names":"Nur bialodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-de-bico-branco","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo de Adams","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitnäbbad islom, Svartnäbbad islom","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus adamsii","author_year":"G. R. Gray, 1859"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11927,"full_name":"Pterodroma atrata","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Henderson Petrel","convention_language":true,"id":null},{"lang":"Spanish","names":"Fardela de Henderson","convention_language":true,"id":null}],"distributions":[{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11929,"full_name":"Xema sabini","author_year":"(J. Sabine, 1819)","common_names":[{"lang":"Dutch","names":"Vorkstaartmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Sabine's Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Sabine","convention_language":true,"id":null},{"lang":"Russian","names":"Vilokhvostaya Chayka","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota de Sabine","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Dobson, A. 1998. Fall bird news. Bermuda Audubon Society Newsletter: 9: 5.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fry, C. H. 1965. Sabine's Gull \u003Ci\u003EXema sabini\u003C/i\u003E (Sabine) off West Africa. Bull. Nigerian Orn. Soc.: 6: 47-48.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Quinn, J. L. and Kokorev, Y. 1999. A westward extension to the known breeding range of Sabine's Gull \u003Ci\u003ELarus sabini\u003C/i\u003E in Siberia. Bulletin if the British Ornithologists's Club: 119: 206-208.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Xema","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus sabini","author_year":"J. Sabine, 1819"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11930,"full_name":"Gallinula chloropus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Slípka zelenonohá","convention_language":false,"id":null},{"lang":"Danish","names":"Grønbenet Rørhøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Moorhen, Common Moorhen","convention_language":true,"id":null},{"lang":"Finnish","names":"Liejukana","convention_language":false,"id":null},{"lang":"French","names":"Poule d'eau, Gallinule poule-d'eau","convention_language":true,"id":null},{"lang":"German","names":"Teichhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vízityúk","convention_language":false,"id":null},{"lang":"Italian","names":"Gallinella d'acqua","convention_language":false,"id":null},{"lang":"Polish","names":"Kokoszka (kurka wodna, kokoszka wodna), Kokoszka wodna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galinha-d'água","convention_language":false,"id":null},{"lang":"Russian","names":"Kamyshnitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Gallineta Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rörhöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Janni, O. 2004. More distributional data on Ecuadorian birds. Cotinga: 21: 25-26.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"introduced","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Gallinula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Fulica chloropus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11931,"full_name":"Myotis nipalensis","author_year":"(Dobson, 1871)","common_names":[{"lang":"English","names":"Nepalese Myotis, Asian Whiskered Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Dong Ho Yoo and Myung Hee Yoon. 1992. A karyotypic study on six Korean vespertilionid bats. Korean Journal of Zoology: 33: 489-496.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11932,"full_name":"Phylloscopus borealis","author_year":"(Blasius, 1858)","common_names":[{"lang":"Danish","names":"Nordsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Arctic Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapinuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot boréal","convention_language":true,"id":null},{"lang":"German","names":"Wanderlaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Északi füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí boreale, Luí boreale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-boreal","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Boreal","convention_language":true,"id":null},{"lang":"Swedish","names":"Nordsångare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11933,"full_name":"Ixobrychus minutus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Dværghejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Woudaapje","convention_language":false,"id":null},{"lang":"English","names":"Common Little Bittern, Little Bittern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuhaikara","convention_language":false,"id":null},{"lang":"French","names":"Blongios nain","convention_language":true,"id":null},{"lang":"German","names":"Zwergdommel, Zwergreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpegém","convention_language":false,"id":null},{"lang":"Italian","names":"Tarabusino","convention_language":false,"id":null},{"lang":"Polish","names":"baczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Avetorillo Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgrördrom","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"extinct,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ixobrychus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea minuta","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11934,"full_name":"Turdus albocinctus","author_year":"Royle, 1840","common_names":[{"lang":"English","names":"White-collared Blackbird","convention_language":true,"id":null},{"lang":"French","names":"Merle à collier blanc","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11935,"full_name":"Branta ruficollis","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Rødhalset gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodhalsgans","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakaulahanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache à cou roux","convention_language":true,"id":null},{"lang":"German","names":"Rothalsgans","convention_language":false,"id":null},{"lang":"Italian","names":"Oca collorosso, Oca del collo rosso","convention_language":false,"id":null},{"lang":"Polish","names":"Bernikla rdzawoszyja","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-pescoço-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla cuellirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhalsad gås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Skokova, N. N. and Vinogradov, V. G. 1986. [Waterfowl habitat conservation.]. Agropromizdat. Moscow.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Sterbetz, I. 1982. Migration of \u003Ci\u003EAnser erythropus\u003C/i\u003E and \u003Ci\u003EBranta ruficollis\u003C/i\u003E in Hungary 1971-1980. Aquila: 89: 107-114.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. (ed.) 1975. Turkey bird report 1970-1973.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kasparek, M. and van der Ven, J. 1983. Birds of Turkey. 1: Ercek Golu. Published by the authors. Heidelburg.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11936,"full_name":"Psephurus gladius","author_year":"(Martens, 1862)","common_names":[{"lang":"English","names":"Chinese Paddlefish, Paddlefish, Chinese Swordfish","convention_language":true,"id":null},{"lang":"Finnish","names":"Miekkasampi","convention_language":false,"id":null},{"lang":"Polish","names":"Wioslonos chinski","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk svärdstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Polyodontidae","genus_name":"Psephurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11937,"full_name":"Oreopholus ruficollis","author_year":"(Wagler, 1829)","common_names":[{"lang":"English","names":"Tawny-throated Dotterel","convention_language":true,"id":null},{"lang":"French","names":"Pluvier oréophile","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito cabezón","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"extinct","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Oreopholus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius ruficollis","author_year":"Wagler, 1829"},{"full_name":"Eudromias ruficollis","author_year":"(Wagler, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11939,"full_name":"Aix sponsa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Carolinaeend, Carolina-eend","convention_language":false,"id":null},{"lang":"English","names":"Wood Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Morsiosorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard branchu, Canard carolin","convention_language":true,"id":null},{"lang":"German","names":"Brautente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Karolinai réce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra sposa","convention_language":false,"id":null},{"lang":"Polish","names":"Karolinka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-carolino","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato joyuyo","convention_language":true,"id":null},{"lang":"Swedish","names":"Brudand","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"introduced","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Perezgasga, F. V. 1999. Wood Duck \u003Ci\u003EAix sponsa\u003C/i\u003E breeding in the Nazas River, Durango, Mexico. Cotinga: 11: 13-14.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas sponsa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11940,"full_name":"Ciconia boyciana","author_year":"Swinhoe, 1873","common_names":[{"lang":"Dutch","names":"Zwartsnavelooievaar","convention_language":false,"id":null},{"lang":"English","names":"Japanese White Stork, Oriental White Stork, Oriental Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Idänkattohaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne blanche orientale, Cigogne blanche du Japon, Cigogne orientale, Cigogne blanche de Corée, Cigogne à bec noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzschnabelstorch","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna dal becco nero","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña del Japón, Cigüeña oriental, Cigüeña blanca coreana","convention_language":true,"id":null},{"lang":"Swedish","names":"svartnäbbad stork, koreansk vit stork","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fei Dian-jin. 1989. [An observation and investigation on the breeding situation of the Oriental Stork in Qiqihar Suburban District.]. Zoological Research: 10: 263-270.; Williams, M. D. 1986. Preliminary report on the China Cranewatch 1986. Unpublished. ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Sonobe, K. and Izawa, N. 1987. Endangered bird species in the Korean Peninsula. Museum of Korean Nature (Korea University in Tokyo) and Wild Bird Society of Japan. Tokyo.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Mackinnon, J. R. and Phillips, K. 2000. \u003Ci\u003EA field guide to the birds of China\u003C/i\u003E. Oxford University Press, Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Brazil, M. 2009. \u003Ci\u003EBirds of East Asia\u003C/i\u003E. Helm Field Guides. A\u0026C Black, London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11941,"full_name":"Ardea alba","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Great Egret, Great White Heron, Great White Egret","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Casmerodius albus","author_year":"Linnaeus, 1758"},{"full_name":"Egretta alba","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.\r\nFormerly listed as \u003Ci\u003ECasmerodius albus albus\u003C/i\u003E (Western Palearctic populations)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11942,"full_name":"Gypaetus barbatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Orlosup bradatý","convention_language":false,"id":null},{"lang":"Danish","names":"Lammegrib","convention_language":false,"id":null},{"lang":"Dutch","names":"Lammergier","convention_language":false,"id":null},{"lang":"English","names":"Bearded Vulture, Lammergeier","convention_language":true,"id":null},{"lang":"Finnish","names":"Partakorppikotka","convention_language":false,"id":null},{"lang":"French","names":"Gypaète barbu","convention_language":true,"id":null},{"lang":"German","names":"Bartgeier","convention_language":false,"id":null},{"lang":"Hungarian","names":"Saskeselyû","convention_language":false,"id":null},{"lang":"Italian","names":"Gipeto, Avvoltoio degli agnelli, Aquila di mare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-rabalva, Quebra-osso","convention_language":false,"id":null},{"lang":"Russian","names":"Borodach","convention_language":false,"id":null},{"lang":"Serbian","names":"Kostoberina, Orao bradan","convention_language":false,"id":null},{"lang":"Spanish","names":"Quebrantahuesos","convention_language":true,"id":null},{"lang":"Swedish","names":"Lammgam, Gamörn, skäggam","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Johnson, E. D. H. 1972. Observations on the birds of the Upper Blue Nile Basin. Bulletin of the British Ornithologists' Club: 92: 42-49.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"extinct","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Margalida, A., García, D., Heredia, R. and Bertran, J. 2010. Video-monitoring helps to optimize the rescue of second-hatched chicks in the endangered Bearded Vulture \u003Ci\u003EGypaetus barbatus\u003C/i\u003E. Bird Conservation International: 20: 55-61.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gypaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":11943,"full_name":"Pluvianus aegyptius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Krokodilvogter","convention_language":false,"id":null},{"lang":"English","names":"Egyptian Plover, Crocodile-bird","convention_language":true,"id":null},{"lang":"French","names":"Pluvian fluviatile","convention_language":true,"id":null},{"lang":"Spanish","names":"Pluvial","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Pluvianus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Charadrius aegyptius","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11945,"full_name":"Cygnus buccinator","author_year":"Richardson, 1832","common_names":[{"lang":"English","names":"Trumpeter Swan","convention_language":true,"id":null},{"lang":"French","names":"Cygne trompette","convention_language":true,"id":null},{"lang":"Spanish","names":"Cisne trompetero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11946,"full_name":"Balaenoptera bonaerensis","author_year":"Burmeister, 1867","common_names":[{"lang":"Dutch","names":"Dwergvinvis","convention_language":false,"id":null},{"lang":"English","names":"Southern Minke Whale, Antarctic Minke Whale","convention_language":true,"id":null},{"lang":"French","names":"Petit rorqual de l'Antarctique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rorcual enano del antarctica","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11948,"full_name":"Phylloscopus schwarzi","author_year":"(Radde, 1863)","common_names":[{"lang":"Danish","names":"Schwarz Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Radde's Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Radde's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Schwarz","convention_language":true,"id":null},{"lang":"Russian","names":"Tolstoklyuvaya Penochka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Gee, B. 1998. Radde's Warbler \u003Ci\u003EPhylloscopus schwarzi\u003C/i\u003E: a new species for the Philippines. Forktail: 14: 81.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11949,"full_name":"Phoebastria nigripes","author_year":"(Audubon, 1849)","common_names":[{"lang":"English","names":"Black-footed Albatross","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea nigripes","author_year":"Audubon, 1839"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea nigripes\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11950,"full_name":"Larus hemprichii","author_year":"Bruch, 1853","common_names":[{"lang":"Danish","names":"Hemprichs Måge","convention_language":false,"id":null},{"lang":"English","names":"Sooty Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland de Hemprich","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cejiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Hobro, F. E. and Catry, T. 2006. First record of Sooty Gull \u003Ci\u003ELarus hemprichii\u003C/i\u003E for Seychelles. Bulletin of the African Bird Club: 13: 213-214.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11951,"full_name":"Procapra gutturosa","author_year":"(Pallas, 1777)","common_names":[{"lang":"English","names":"Mongolian Gazelle","convention_language":true,"id":null},{"lang":"German","names":"Mongolische Gazelle","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"extinct","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Miura, N., Ito, T. Y., Lhagvasuren, B., Enkhbileg, D. Tsunekawa, A., Takatsuki, S., Jiang, Z. and Mochizuki, K. 2004. Analysis of the seasonal migrations of Mongolian Gazelle, using Modis Data. XXth ISPRS Congress, Istanbul 12-23 July 2004 . 418-422; Olson, K.A., Mueller, T., Bolortsetseg, S., Leimgruber, P., Fagan, W.F. and Fuller, T.K. 2009. A mega-herd of more than 200,000 Mongolian gazelles \u003Ci\u003EProcapra gutturosa\u003C/i\u003E: a consequence of habitat quality. Oryx: 43: 146-148.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Procapra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Gazella gutturosa","author_year":"Pallas, 1777"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11953,"full_name":"Fulica atra","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Blishøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Meerkoet","convention_language":false,"id":null},{"lang":"English","names":"Common Coot, Coot, Eurasian Coot","convention_language":true,"id":null},{"lang":"Finnish","names":"Nokikana","convention_language":false,"id":null},{"lang":"French","names":"Foulque macroule","convention_language":true,"id":null},{"lang":"German","names":"Bläßhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szárcsa","convention_language":false,"id":null},{"lang":"Italian","names":"Folaga","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galeirão-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Focha Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sothöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Gore, M. E. J. and Won, P-O. 1971. The birds of Korea. Royal Asiatic Society, Korea Branch, in conjunction with Taiwan Publishing Co. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schricke, V., Triplet, P. and Leroy, G. 2001. La Foulque macroule \u003Ci\u003EFulica atra\u003C/i\u003E, une nouvelle espèce nicheuse au Sénégal. Alauda: 69: 328.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Fulica","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Mediterranean and Black Sea populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11954,"full_name":"Thalasseus bengalensis","author_year":"(Lesson, 1831)","common_names":[{"lang":"Czech","names":"Rybák bengálský","convention_language":false,"id":null},{"lang":"Dutch","names":"Bengaalse Stern","convention_language":false,"id":null},{"lang":"English","names":"Lesser Crested-Tern, Lesser Crested Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutöyhtötiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne voyageuse","convention_language":true,"id":null},{"lang":"German","names":"Rüppelseeschwalbe, Rüppellseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bengáli csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna di Rüppell","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa bengalska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garajau-bengalense","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán Bengalí","convention_language":true,"id":null},{"lang":"Swedish","names":"Iltärna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna bengalensis","author_year":"Lesson, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"African and Southwest Asian populations. Formerly listed as \u003Ci\u003ESterna bengalensis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11955,"full_name":"Hippolais languida","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Upchers Gulbug","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Vale Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Upcher's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaakultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs d'Upcher","convention_language":true,"id":null},{"lang":"German","names":"Dornspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Keleti geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino di Upcher","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz pustynny","convention_language":false,"id":null},{"lang":"Spanish","names":"Zercero de Upcher","convention_language":true,"id":null},{"lang":"Swedish","names":"Orientsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Corso, A. 2003. New to Cyprus - Upcher's Warbler. BirdLife Cyprus Annual Report: 1: 113-116.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11956,"full_name":"Charadrius placidus","author_year":"Gray \u0026 Gray, 1863","common_names":[{"lang":"English","names":"Long-billed Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo piquilargo","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Carey, G. J. 1995. Long-billed plover: the first record for Hong Kong. Hong Kong Bird Report 1995: 110-112.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11957,"full_name":"Anser rossii","author_year":"(Cassin, 1861)","common_names":[{"lang":"Dutch","names":"Ross' Gans","convention_language":false,"id":null},{"lang":"English","names":"Ross's Goose, Ross' Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie de Ross","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar de Ross","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Chen rossii","author_year":"Cassin, 1861"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11958,"full_name":"Aythya baeri","author_year":"(Radde, 1863)","common_names":[{"lang":"English","names":"Baer's Pochard","convention_language":true,"id":null},{"lang":"French","names":"Fuligule de Baer","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón de Baer","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas baeri","author_year":"Radde, 1863"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11959,"full_name":"Ficedula superciliaris","author_year":"(Jerdon, 1840)","common_names":[{"lang":"English","names":"Ultramarine Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche ultramarin","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11960,"full_name":"Sylvia communis","author_year":"Latham, 1787","common_names":[{"lang":"Danish","names":"Tornsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grasmus","convention_language":false,"id":null},{"lang":"English","names":"Whitethroat, Common Whitethroat, Greater Whitethroat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensaskerttu","convention_language":false,"id":null},{"lang":"German","names":"Dorngrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mezei poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola","convention_language":false,"id":null},{"lang":"Polish","names":"Cierniówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-amoras-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Zarcera","convention_language":true,"id":null},{"lang":"Swedish","names":"Törnsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11961,"full_name":"Spheniscus demersus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Brillepingvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartvoetpinguin","convention_language":false,"id":null},{"lang":"English","names":"African Penguin, Jackass Penguin, Black-footed Penguin","convention_language":true,"id":null},{"lang":"Finnish","names":"Afrikanpingviini","convention_language":false,"id":null},{"lang":"French","names":"Manchot du Cap","convention_language":true,"id":null},{"lang":"German","names":"Brillenpinguin","convention_language":false,"id":null},{"lang":"Italian","names":"Sfenisco del Capo","convention_language":false,"id":null},{"lang":"Spanish","names":"Pingüino del Cabo","convention_language":true,"id":null},{"lang":"Swedish","names":"Glasögonpingvin, sydafrikansk pingvin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Crawford, R. J. M., Williams, A. J., Randall, R. M., Randall, B. M., Berruti, A. and Ross, G. J. B. 1990. Recent population trends of Jackass Penguins \u003Ci\u003ESpheniscus demersus\u003C/i\u003E off Southern Africa. Biological Conservation: 52: 229-243.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sphenisciformes","class_name":"Aves","family_name":"Spheniscidae","genus_name":"Spheniscus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11962,"full_name":"Huso dauricus","author_year":"(Georgi, 1775)","common_names":[{"lang":"English","names":"Great Siberian Sturgeon, Huso Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Amurinkitasampi","convention_language":false,"id":null},{"lang":"German","names":"Kaluga-Hausen","convention_language":false,"id":null},{"lang":"Japanese","names":"Dauria-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Kaluga","convention_language":false,"id":null},{"lang":"Russian","names":"Kaluga","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Huso","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11963,"full_name":"Tringa flavipes","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Lille Gulbenet Klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Geelpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Lesser Yellowlegs","convention_language":true,"id":null},{"lang":"French","names":"Petit Chevalier","convention_language":true,"id":null},{"lang":"Spanish","names":"Archibebe patigualdo chico","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax flavipes","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11964,"full_name":"Muscicapa striata","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Lejsek šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Spotted Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaasieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche gris","convention_language":true,"id":null},{"lang":"German","names":"Grauschnäpper, Garuschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Pigliamosche","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-cinzento","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Mukholovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Grå flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11965,"full_name":"Lagenorhynchus albirostris","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"White-beaked Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque à bec blanc de l'Atlantique","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de pico blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"vitnosdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Collet, A. and Duguy, R. 1981. \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E (Cetacea, Odontoceti): espèce nouvelle pour la faune de France. Mammalia: 45: 387-388.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Andrésson, G. 1978. Chasing the elusive dolphin. Atlantica Iceland Rev.: 16: 28-31.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11966,"full_name":"Porphyrio alleni","author_year":"Thomson, 1842","common_names":[{"lang":"Dutch","names":"Afrikaanse Purperhoen","convention_language":false,"id":null},{"lang":"English","names":"Allen's Gallinule","convention_language":true,"id":null},{"lang":"French","names":"Talève d'Allen","convention_language":true,"id":null},{"lang":"Spanish","names":"Calomoncillo africano","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Porphyrio","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Porphyrula alleni","author_year":"(Thomson, 1842)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11967,"full_name":"Saiga tatarica","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Saigaantilope","convention_language":false,"id":null},{"lang":"Dutch","names":"Saiga-antiloop","convention_language":false,"id":null},{"lang":"English","names":"Saiga Antelope, Saiga","convention_language":true,"id":null},{"lang":"Finnish","names":"Saigaantilooppi","convention_language":false,"id":null},{"lang":"French","names":"Saïga","convention_language":true,"id":null},{"lang":"German","names":"Saiga","convention_language":false,"id":null},{"lang":"Italian","names":"Antilope delle steppe","convention_language":false,"id":null},{"lang":"Spanish","names":"Antílope saiga, Saiga","convention_language":true,"id":null},{"lang":"Swedish","names":"saigaantilop, saiga","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zhang, Y. (ed.) 1997. Distribution of mammalian species in China. CITES Management Authority of China. China Forestry Publishing House. Beijing.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.; Milner-Gulland, E.J., Kholodova, M.V., Bekenov, A., Bukreeva, O.M., Grachev, I.A., Amgalan, L., and Lushchekina, A.A. 2001. Dramatic declines in Saiga antelope populations. Oryx: 35: 340-345.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Abaturov, B.D. 2007. The population of Saiga antelopes in Russia and the problems of its preservation. Herald of the Russian Academy of Sciences: 77: 462-469.; Milner-Gulland, E.J., Kholodova, M.V., Bekenov, A., Bukreeva, O.M., Grachev, I.A., Amgalan, L., and Lushchekina, A.A. 2001. Dramatic declines in Saiga antelope populations. Oryx: 35: 340-345.; Sokolov, V. E. and Zhirnov, L. V (eds.) 1998. The saiga antelope, phylogeny, systematics, ecology, conservation and use. Russian Academy of Sciences. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Saiga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESaiga tatarica\u003C/i\u003E, sensu Wilson \u0026 Reeder (1993).","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Saiga Antelope"}]},{"id":11968,"full_name":"Nyctalus leisleri","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Czech","names":"Netopýr stromový","convention_language":false,"id":null},{"lang":"Danish","names":"Leislers flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Leisler's Bat, Lesser Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Väikevidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Metsäisolepakko","convention_language":false,"id":null},{"lang":"French","names":"Noctule de Leisler","convention_language":true,"id":null},{"lang":"German","names":"Kleinabendsegler","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola di Leisler","convention_language":false,"id":null},{"lang":"Norwegian","names":"Leislerflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiaczek, Borowiec Leislera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-pequeno","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-mic-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier stromový","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo pequeño","convention_language":true,"id":null},{"lang":"Swedish","names":"Leislers fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1984. Bats of northern Algeria and their winter activity. Myotis: 21: 89-95.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Pinder, N. J. and Bolton, S. M. 1990. Some recent bat records. Peregrine: 6: 66-67.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hanák, V. and Gaisler, J. 1983. \u003Ci\u003ENyctalus leisleri\u003C/i\u003E (Kuhl, 1818), une espèce nouvelle pour le continent africain. Mammalia: 47: 585-587.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Peiffer, R. and Pir, J. B. 1994. Erster gesicherter Nachweis des Kleinen Abendseglers (\u003Ci\u003ENyctalus leisleri\u003C/i\u003E, Kuhl 1818) für Luxemburg (Mammalia, Chiroptera). Bulletin de la Societe des Naturalistes Luxembourgeois: 95: 209-213.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Arrizabalaga, A. and Montagud, E. 1984. Notes sobre la fauna de quiropteros del Valle Oriental (Barcelona, Catalunya). Una nova especie per a la fauna espanyola. Miscellanea zool.: 8: 307-310.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Nyctalus verrucosus","author_year":"Bowditch, 1825"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11969,"full_name":"Plecotus macrobullaris","author_year":"Kuzyakin, 1965","common_names":[{"lang":"English","names":"Alpine Long-eared Bat","convention_language":true,"id":null},{"lang":"French","names":"L'oreillard montagnard ou l'oreillard alpin","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago orejudo alpino","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"EUROBATS"}]},{"id":11970,"full_name":"Somateria spectabilis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kajka královská","convention_language":false,"id":null},{"lang":"Danish","names":"Kongederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Koningseider, Koningseidereend","convention_language":false,"id":null},{"lang":"English","names":"King Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Kyhmyhaahka","convention_language":false,"id":null},{"lang":"French","names":"Eider à tête grise","convention_language":true,"id":null},{"lang":"German","names":"Prachteiderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Cifra pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Re degli Edredoni","convention_language":false,"id":null},{"lang":"Polish","names":"Turkan","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider-real","convention_language":false,"id":null},{"lang":"Russian","names":"Gaga-grebyonushka","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider real","convention_language":true,"id":null},{"lang":"Swedish","names":"Praktejder","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas spectabilis","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11971,"full_name":"Gazella gazella","author_year":"(Pallas, 1766)","common_names":[{"lang":"English","names":"Mountain Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Edmi, Gazelle d'Arabie","convention_language":true,"id":null},{"lang":"Swedish","names":"Arabisk gasell","convention_language":false,"id":null}],"distributions":[{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"introduced","country_references":"Karami, M., Hemami, M. R. and Groves, C. P. 2002. Taxonomic, distributional and ecological data on gazelles in Iran. Zoology in the Middle East: 26: 29-36.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Asian populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11972,"full_name":"Turdus naumanni","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Brundrossel","convention_language":false,"id":null},{"lang":"English","names":"Dusky Thrush, Naumann's Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Naumann","convention_language":true,"id":null},{"lang":"Polish","names":"Drozd rdzawy","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11973,"full_name":"Puffinus creatopus","author_year":"Coues, 1864","common_names":[{"lang":"English","names":"Pink-footed Shearwater","convention_language":true,"id":null},{"lang":"French","names":"Puffin à pieds roses","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de ventre blanco, Pardela blanca, Pardela patirrosa","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Navas, J. R. 1998. Primer registro de la Pardela Patas Rosas \u003Ci\u003EPuffinus creatopus\u003C/i\u003E en las costas Argentinas. El Hornero: 15: 43.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Puffinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":11974,"full_name":"Podocnemis expansa","author_year":"(Schweigger, 1812)","common_names":[{"lang":"English","names":"Arrau turtle, Giant South American turtle, South American river turtle, Tartaruga","convention_language":true,"id":null}],"distributions":[{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Killeen, T. J. and Schulenberg, T. S (eds.) 1998. A biological assessment of Parque Nacional Noel Kempff Mercado, Bolivia. RAP Working Papers 10 Conservation International. Washington, D.C.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Ferreira Júnior, P.D. and Castro, P.T.A. 2006. Geological characteristics of the nesting areas of the giant Amazon river turtle, (\u003Ci\u003EPodocnemis expansa\u003C/i\u003E) in the Crixás-Açu river in Goiás State, Brazil. Acta Amazonica: 36: 249-258.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Hildebrand, P. von. 1985. Biology and conservation of \u003Ci\u003EPodocnemis expansa\u003C/i\u003E in the Rio Caqueta of eastern Colombia. Final Report, Fundacion Estacion de Biologia Puerto Rastrojo . ; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Miyata, K. 1982. A check list of the amphibians and reptiles of Ecuador (with a bibliography of Ecuadorian herpetology). Smithsonian Herpetological Information Service.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Donnelly, M., Chen, M., Watson, C. and Watkins, G. G. 1999. Amphibians and reptiles of the Iwokrama Forest. The Academy of Natural Sciences of Philadelphia. Philadelphia. ; Fritz, C. and Havaš, P. 2007. Checklist of chelonians of the world. Vertebrate Zoology: 57: 149-368.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Dixon, J. R., and Soini, P. 1986. The reptiles of the Upper Amazon Baisin, Iquitos Basin, Peru. Part 1: lizards and amphibisbaenians. Part 2: crocodilians, turtles and snakes. Milwaukee Public Museum.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Noriega Murrieta, J. and Godfrey Ruiz, C. 2006. Conservation of aquatic biodiversity in Pacaya-Samiria National Reserve, Peru. ProNaturaleza. Lima, Peru. 8; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.; Soini, P. 1996. Reproduccion, abundancia y situacion de quelonios acuaticos en la Reserva Nacional Pacaya-Samiria, Peru. Folia Amazonica: 8: 145-156.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Fritz, C. and Havaš, P. 2007. Checklist of chelonians of the world. Vertebrate Zoology: 57: 149-368.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Podocnemididae","genus_name":"Podocnemis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"Only Upper Amazon populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11975,"full_name":"Anas poecilorhyncha","author_year":"Forster, 1781","common_names":[{"lang":"English","names":"Spot-billed Duck, Indian Spot-billed Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec tacheté","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade picopinto","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11976,"full_name":"Bucephala albeola","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Bøffeland","convention_language":false,"id":null},{"lang":"Dutch","names":"Buffelkopeend","convention_language":false,"id":null},{"lang":"English","names":"Bufflehead","convention_language":true,"id":null},{"lang":"French","names":"Petit Garrot, Garrot albéole","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón albeola","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas albeola","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11977,"full_name":"Thalassarche chrysostoma","author_year":"(Forster, 1785)","common_names":[{"lang":"Danish","names":"Gråhovedet Albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijskopalbatros","convention_language":false,"id":null},{"lang":"English","names":"Grey-headed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea chrysostoma","author_year":"Forster, 1785 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea chrysostoma\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11978,"full_name":"Pandion haliaetus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fiskeørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Visarend","convention_language":false,"id":null},{"lang":"English","names":"Osprey","convention_language":true,"id":null},{"lang":"Finnish","names":"Sääksi, Kalasääski","convention_language":false,"id":null},{"lang":"French","names":"Balbugard fluviatile, Balbuzard pêcheur, Aigle pêcheur","convention_language":true,"id":null},{"lang":"German","names":"Fischadler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Halászsas","convention_language":false,"id":null},{"lang":"Italian","names":"Falco pescatore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fiskeørn","convention_language":false,"id":null},{"lang":"Polish","names":"rybolów","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-pesqueira","convention_language":false,"id":null},{"lang":"Russian","names":"Skopa","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila pescadora, Gavilán pescador, Águila sangual, Guincho","convention_language":true,"id":null},{"lang":"Swedish","names":"Fiskgjuse","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Saggese, M. D., Krapovickas, S. F., Haene, E. H. and De Lucca, E. R. 1996. Presencia del Aguila Pescadora (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) en Argentina y Uruguay. El Hornero: 14: 44-49.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Monaco","country":"Monaco","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Diamond, J.M. 1975. Distribution ecology and habitats of some Bougainville birds (Solomn Islands). The Condor: 77: 14-23.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Clancey, P. A., Brooke, R. K., Crowe, T. M. and Mendelsohn, J. M. 1987. S.A.O.S. checklist of southern African birds. First updating report. Southern African Ornithological Society. Johannesburg.; Dean, W. R. J. and Tarboton, W. R. 1983. Osprey breeding records in South Africa. Ostrich: 54: 241-242.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Galarza, A. and Dennis, R.H. 2009. A spring stopover of a migratory osprey (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) in northern Spain as revealed by satellite tracking: implications for conservation. Animal Biodiversity and Conservation: 32: 117-122.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; Ehrlich, P. R, Dobkins, D. S. and Wheye, D. 1992. Birds in jeopardy. The imperiled and extinct birds of the United States \u0026 Canada. Stanford University Press. Stanford, CA.; Snyder, N. F. R. and Snyder, H. A. 1991. Birds of prey. Natural history and conservation of North American raptors. Voyageur Press. Stillwater, Minnesota, USA.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; Saggese, M. D., Krapovickas, S. F., Haene, E. H. and De Lucca, E. R. 1996. Presencia del Aguila Pescadora (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) en Argentina y Uruguay. El Hornero: 14: 44-49.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Pandionidae","genus_name":"Pandion","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11979,"full_name":"Bos grunniens","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Yak","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Bos","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Bos mutus","author_year":"Przewalski, 1883"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11980,"full_name":"Crocodylus porosus","author_year":"Schneider, 1801","common_names":[{"lang":"Danish","names":"Saltvandskrokodille","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeekrokodil","convention_language":false,"id":null},{"lang":"English","names":"Estuarine Crocodile, Salt-water Crocodile","convention_language":true,"id":null},{"lang":"Finnish","names":"Suistokrokotiili","convention_language":false,"id":null},{"lang":"French","names":"Crocodile marin, Crocodile d'estuaire","convention_language":true,"id":null},{"lang":"German","names":"Leistenkrokodil","convention_language":false,"id":null},{"lang":"Italian","names":"Coccodrillo marino","convention_language":false,"id":null},{"lang":"Malay","names":"Buaya tembaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Cocodrilo poroso","convention_language":true,"id":null},{"lang":"Swedish","names":"saltvattenskrokodil, listkrokodil, deltakrokodil","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Das, I. 2007. Amphibians and Reptiles of Brunei. Natural History Publications (Borneo).; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Das, I. and Hee, K.B. 2008. Herpetofauna of the Pulau Bangi group of islands off northeastern Borneo. Herpetological Review: 39: 296-298.; Grismer, L.L. and Aun, P.K. 2008. Diversity, endemism, and conservation of the amphibians and reptiles of southern Peninsular Malaysia and its offshore islands. Herpetological Review: 39: 270-281.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Thorbjamarson, J., Platt, S. G. and U. Saw Tun Khaing. 2000. A population survey of the estuarine crocodile in the Ayeyarwady Delta, Myanmar. Oryx: 34: 317-324.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Messel, H. and King, F. W. 1991. Area reports: Palau. IUCN/SSC Crocodile Specialist Group Newsletter: 10: 22.; Messel, H. and King, F. W. 1991. Survey of the crocodile populations of the Republic of Palau, Caroline Islands, Pacific Ocean. 8-24 June. Unpublished report. 49 pp . ; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Cox, J.H., Gowep, B., Mava, A., Wana, J., Genolagani, J.-M., Kula, V., Solmu, G., Sine, R., Wilken, D. and Langelet, E. 2006. The Saltwater Crocodile \u003Ci\u003ECrocodylus porosus\u003C/i\u003E egg harvest program in Papua New Guinea: Linking conservation, commerce and community development. Crocodiles: Proceedings of the 18th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. 134-155; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.; Sine, R. and Kula, V. 2006. Status of \u003Ci\u003ECrocodylus porosus\u003C/i\u003E and \u003Ci\u003EC. novaeguineae\u003C/i\u003E in Papua New Guinea after twenty-five years (1981-2006) of aerial nesting surveys. Crocodiles: Proceedings of the 18th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. ; Solmu, G.C. 2004. Status of \u003Ci\u003ECrocodylus porosus\u003C/i\u003E and \u003Ci\u003ECrocodylus novaeguineae\u003C/i\u003E conservation and management in Papua New Guinea (1981-2004). Crocodiles: Proceedings of the 17th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. 195-203","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Messel, H. and King, F. W. 1989. Report on the CITES and Solomon Islands Government national survey of the crocodile populations of the Solomon Islands. 20 July - 8 September 1989. Unpublished report. 43 pp . ; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Deraniyagala, P.E.P. 1939. The tetrapod reptiles of Ceylon. Vol.1. Testudines and crocodilians. Colombo Museum and Dulau and Co. Ceylon \u0026 London.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Chambers, M. R. and Esrom, D. 1991. A survey of the estuarine crocodiles (\u003Ci\u003ECrocodylus porosus\u003C/i\u003E) of Vanua Lava. Naika: 35: 20-27.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Crocodylia","class_name":"Reptilia","family_name":"Crocodylidae","genus_name":"Crocodylus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11981,"full_name":"Oenanthe picata","author_year":"(Blyth, 1847)","common_names":[{"lang":"English","names":"Variable Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet variable","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11982,"full_name":"Irania gutturalis","author_year":"(Guérin-Méneville, 1843)","common_names":[{"lang":"Danish","names":"Hvidhals","convention_language":false,"id":null},{"lang":"Dutch","names":"Perzische Roodborst","convention_language":false,"id":null},{"lang":"English","names":"White-throated Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivikkosatakieli","convention_language":false,"id":null},{"lang":"French","names":"Iranie à gorge blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkehlsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehértorkú fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Irania golabianca","convention_language":false,"id":null},{"lang":"Polish","names":"Iranka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-de-garganta-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Solovey-belosheyka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Pintado","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitstrupig näktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1972. White-throated Robin \u003Ci\u003EIrania gutturalis\u003C/i\u003E breeding in northern Iraq. Bull. Iraq Nat. Hist. Mus.: 5: 1-8.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Irania","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11984,"full_name":"Acinonyx jubatus","author_year":"(Schreber, 1775)","common_names":[{"lang":"Afrikaans","names":"Jagluiperd","convention_language":false,"id":null},{"lang":"Danish","names":"gepard, cheetah eller jagtleopard","convention_language":false,"id":null},{"lang":"Dutch","names":"Jachtluipaard","convention_language":false,"id":null},{"lang":"English","names":"Cheetah, Hunting Leopard","convention_language":true,"id":null},{"lang":"Finnish","names":"Gepardi","convention_language":false,"id":null},{"lang":"French","names":"Guépard","convention_language":true,"id":null},{"lang":"German","names":"Gepard","convention_language":false,"id":null},{"lang":"Hindi","names":"Chita","convention_language":false,"id":null},{"lang":"Italian","names":"Ghepardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Guepardo, Chita","convention_language":true,"id":null},{"lang":"Swedish","names":"gepard","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Habibi, K. 1977. The mammals of Afghanistan, their distribution and status. Ministry of Agriculture. Kabul.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Busby, G.B.J., Gottelli, D., Wacher, T., Marker, L., Belbachir, F., De Smet, K., Belbachir-Bazi, A. and Fellous, A. 2009. Genetic analysis of scat reveals leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in southern Algeria. Oryx: 43: 412-415.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; Nowell, K. and Jackson, P. 1994. Wild cats status report and conservation action plan. Cat News: 21: 20-21.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct (?)","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Booth, A. H. 1960. Small mammals of West Africa. Longmans. London.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Yalden, D. W., Largen, M. J. and Kock, D. 1980. Catalogue of the mammals of Ethiopia, 4. Carnivora. Monitore Zoologico Italiano (Suppl.): 13: 169-272.","id":null},{"name":"India","country":"India","tags_list":"extinct","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Anon. 1990. Cheetah surviving in Iran. Cat News: 13: 13.; Farhadinia, M. S., Akbari, H., Mousavi, S.-J., Eslami, M., Azizi, M., Shokouhi, J., Gholikhani, N., Hosseini-Zavarei, F. (2013). Exceptionally long movements of the Asiatic cheetah \u003Ci\u003EAcinonyx jubatus venaticus\u003C/i\u003E across multiple arid reserves in central Iran. Oryx, 47(3), 427–430.; Farhadinia, M. S., Hosseini-Zavarei, F., Nezami, B., Harati, H., Absalan, H., Fabiano, E., \u0026 Marker, L. (2012). Feeding ecology of the Asiatic cheetah \u003Ci\u003EAcinonyx jubatus venaticus\u003C/i\u003E in low prey habitats in northeastern Iran: Implications for effective conservation. Journal of Arid Environments, 87, 206–211.; Karami, M. 1992. Cheetah distribution in Khorasan Province, Iran. Cat News: 16: 4.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Gakuya, F., Ombui, J., Maingi, N., Muchemi, G., Ogara, W., Soriguer, R. C., \u0026 Alasaad, S. (2012). Sarcoptic mange and cheetah conservation in Masai Mara (Kenya): epidemiological study in a wildlife/livestock system. Parasitology, 139(12), 1587–1595.\r\n; Hamilton, P. H. 1981. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and the Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kenya: ecology, status, conservation, management. Report prepared for the Office of Endangered Species. U.S. Fish and Wildlife Service. Washington, D.C. ; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"extinct","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Marker-Koaus, L. and Koaus, D. 1990. Status of the Cheetah in Zimbabwe and Namibia. Cat News: 12: 15-16.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Grettenberger, J. 1984. W National Park in Niger - a case for urgent assistance. Oryx: 18: 230-236.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Poche, R. M. 1973. Niger's threatened park. Oryx: 12: 216-222.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"Dupuy, A. R. 1971. Les oiseaux et les mammifères de la cuvette du Djoudj (Delta du fleuve Sénégal). Bulletin de l'I.F.A.N.: 33: 237-248.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mills, M. G. L. 1990. Lion \u003Ci\u003EPanthera leo\u003C/i\u003E and Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kruger National Park, South Africa. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 6.; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"extinct","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Anon. 1999. African Mammals Databank. www.gisbau.uniroma1.it/amd/ Instituto di Ecologia Applicata. Rome. ; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"extinct","country_references":"Harrison, D. L. 1972. The mammals of Arabia, Vol. III, Lagomorpha, Rodentia. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Marker-Koaus, L. and Koaus, D. 1990. Status of the Cheetah in Zimbabwe and Namibia. Cat News: 12: 15-16.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Wilson, V. 1988. Cheetah in Zimbabwe. Cat News: 8: 9-10.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Acinonyx","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Except the populations of Botswana, Namibia and Zimbabwe ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11985,"full_name":"Acrocephalus stentoreus","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Langnæbbet Drosselrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Stentorkarekiet","convention_language":false,"id":null},{"lang":"English","names":"Clamorous Reed Warbler, Clamorous Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle stentor","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Diamond, J.M. 1975. Distribution ecology and habitats of some Bougainville birds (Solomn Islands). The Condor: 77: 14-23.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11986,"full_name":"Pterodroma cahow","author_year":"(Nichols \u0026 Mowbray, 1916)","common_names":[{"lang":"English","names":"Cahow, Bermuda Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel des Bermudes","convention_language":true,"id":null},{"lang":"Spanish","names":"Petrel cahow","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Aestrelata cahow","author_year":"Nichols \u0026 Mowbray, 1916"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11987,"full_name":"Eubalaena australis","author_year":"(Desmoulins, 1822)","common_names":[{"lang":"English","names":"Southern Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine australe","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena franca","convention_language":true,"id":null},{"lang":"Swedish","names":"sydkapare, sydval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Carroll, E., Patenaude, N., Alexander, A., Steel, D., Harcourt, R., Childerhouse, S., Smith, S., Bannister, J., Constantine, R. and Baker, C. 2011. Population structure and individual movement of southern right whales around New Zealand and Australia. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 432: 257–268.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Carroll, E., Patenaude, N., Alexander, A., Steel, D., Harcourt, R., Childerhouse, S., Smith, S., Bannister, J., Constantine, R. and Baker, C. 2011. Population structure and individual movement of southern right whales around New Zealand and Australia. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 432: 257–268.; Richards, R. 2009. Past and present distributions of southern right whales (\u003Ci\u003EEubalaena australis\u003C/i\u003E). \u003Ci\u003ENew Zealand Journal of Zoology\u003C/i\u003E: 36: 447–459.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Bests, P.B., Payne, R., Rowntree, V., Palazzo, J. and Do Carma Both, M. 1993. Long-range movements of south Atlantic right whales Eubalaena australis. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 9(3): 227–234; Hoyt, E. 2005. \u003Ci\u003EMarine protected areas for whales, dolphins and porpoises. A world handbook for Cetacean habitat conservation\u003C/i\u003E. London: Earthscan.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P. B. and Roscoe, M. J. 1974. Survey of right whales off South Africa, 1972, with observations from Tristan da Cunha, 1971-72. Report int. Commn Whal.: 24: 136-141.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Greig, J. C. 1983. The South African Southern Right Whale census, 1983. African Wildlife: 37: 184.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Bonner, W. N. 1987. Right whale sightings around South Georgia. British Antarctic Survey Bulletin: 76: 99-103.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Initially included within \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also listed as \u003Ci\u003EBalaena glacialis australis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11988,"full_name":"Polystictus pectoralis","author_year":"(Vieillot, 1817)","common_names":[{"lang":"English","names":"Bearded Tachuri","convention_language":true,"id":null},{"lang":"French","names":"Tyranneau barbu","convention_language":true,"id":null},{"lang":"Spanish","names":"Tachurí canela","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Polystictus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11989,"full_name":"Coracias garrulus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Mandelík hajní","convention_language":false,"id":null},{"lang":"Danish","names":"Ellekrage","convention_language":false,"id":null},{"lang":"Dutch","names":"Scharrelaar","convention_language":false,"id":null},{"lang":"English","names":"European Roller, Roller","convention_language":true,"id":null},{"lang":"Finnish","names":"Sininärhi","convention_language":false,"id":null},{"lang":"French","names":"Rollier d'Europe","convention_language":true,"id":null},{"lang":"German","names":"Blauracke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szalakóta","convention_language":false,"id":null},{"lang":"Italian","names":"Ghiandaia marina","convention_language":false,"id":null},{"lang":"Polish","names":"Kraska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rolieiro, Rolieiro-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Sizovoronka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carraca, Carraca Europea, Carraca común","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåkråka, Blåråka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Prigogine, A. 1971. Les oiseaux de l`Itombwe et de son hinterland. Annales du Musée Royal de l`Afrique Centrale Serie In-8 Sciences Zoologiques: 185: 28-66","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferreira, J. A. 1973. Bichos da Guiné: caça, fauna, natureza.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Coraciiformes","class_name":"Aves","family_name":"Coraciidae","genus_name":"Coracias","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11993,"full_name":"Vanellus gregarius","author_year":"(Pallas, 1771)","common_names":[{"lang":"Dutch","names":"Steppekievit","convention_language":false,"id":null},{"lang":"English","names":"Sociable Lapwing, Sociable Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau sociable","convention_language":true,"id":null},{"lang":"Polish","names":"Czajka towarzyska","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría sociable","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eichhorn, G. and Khrokov, V. V. 2002. Decline in breeding Sociable Plover \u003Ci\u003EChettusia gregaria\u003C/i\u003E in the steppes of Naurzum and Korgalzhyn, Kazakhstan. Sandgrouse: 24: 22-27.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Charadrius gregarius","author_year":"Pallas, 1771"},{"full_name":"Chettusia gregaria","author_year":"(Pallas, 1771)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EChettusia gregaria\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11994,"full_name":"Phoebetria fusca","author_year":"(Hilsenberg, 1822)","common_names":[{"lang":"English","names":"Sooty Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros brun","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros ahumado","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.; Willis, E. O. and Oniki, Y. 1993. On a \u003Ci\u003EPhoebetria\u003C/i\u003E specimen from southern Brazil. Bulletin of the British Ornithologists' Club: 113: 60-61.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebetria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea fusca","author_year":"Hilsenberg, 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11995,"full_name":"Hippolais polyglotta","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Spottesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Orpheusspotvogel","convention_language":false,"id":null},{"lang":"English","names":"Melodious Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Taiturikultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs polyglotte","convention_language":true,"id":null},{"lang":"German","names":"Orpheusspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Déli geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz szczebiotliwy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-poliglota","convention_language":false,"id":null},{"lang":"Swedish","names":"Polyglottsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11997,"full_name":"Larus cirrocephalus","author_year":"Vieillot, 1818","common_names":[{"lang":"Dutch","names":"Grijskopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Grey-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Elmberg, J. and Müller, L. 2003. The first records of Grey-headed Gull \u003Ci\u003ELarus cirrocephalus\u003C/i\u003E in Egypt. Sandgrouse: 25: 67-68.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Chroicocephalus cirrocephalus","author_year":"(Vieillot, 1818)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11999,"full_name":"Delphinus delphis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Dolphin, Saddle-backed Dolphin, Short-beaked Saddleback Dolphin, Atlantic Dolphin, Pacific Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin commun","convention_language":true,"id":null},{"lang":"Italian","names":"Delfino comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Golfinho","convention_language":false,"id":null},{"lang":"Spanish","names":"Delfín común","convention_language":true,"id":null},{"lang":"Swedish","names":"sadeldelfin, äkta delfin, springare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Filby, N.E., Bossley, M., Sanderson, K.J., Martinez, E. and Stockin, K.A. 2010. Distribution and population demographics of Common Dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) in the Gulf St. Vincent, South Australia. Aquatic Mammals: 36: 33-45.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Common Dolphin \u003Ci\u003EDelphinus delphis\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 55-63.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Bearzi, G., Agazzi, S., Gonzalvo, J., Costa, M., Bonizzoni, S., Politi, E., Piroddi, C. and Reeves, R.R. 2008. Overfishing and the disappearance of short-beaked common dolphins from western Greece. Endangered Species Research: 5: 1-12.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Distribution, frequency and biology of the common dolphin, \u003Ci\u003EDelphinus delphis\u003C/i\u003E Linnaeus, in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 199-200.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Neumann, D.R. 2001. Seasonal movements of short-beaked common dolphins (Delphinus delphis) in the north-western Bay of Plenty, New Zealand: influence of sea surface temperature and El Niño/La Niña. : 35: 371-374.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Syvertsen, P. O., van der Kooij, J. and Isaksen, K. 1999. Forekomsten av stripedelfin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E og delfin \u003Ci\u003EDelphinus delphis\u003C/i\u003E langs norskekysten. Fauna (Oslo): 52: 104-117.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Cañadas, A. and Hammond, P.S. 2008. Abundance and habitat preferences of the short-beaked common dolphin \u003Ci\u003EDelphinus delphis\u003C/i\u003E in the southwestern Mediterranean: implications for conservation. Endangered Species Research: 4: 309-331.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Perrin, W.F., Würsig, B. and Thewissen, J.G.M (eds.) 2009. \u003Ci\u003EEncyclopedia of Marine Mammals\u003C/i\u003E. Second edition. Academic Press. Amsterdam.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Selzer, L. A. and Payne, P. M. 1988. The distribution of white-sided (\u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E) and common dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) vs. environmental features of the continental shelf of the northeastern United States. Marine Mammal Science: 4: 141-153.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Delphinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Only Mediterranean population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"North and Baltic Sea, Mediterranean, Black Sea and eastern tropical Pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12000,"full_name":"Amazonetta brasiliensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Brazilian Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard amazonette","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato Brasileño","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Amazonetta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas brasiliensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12001,"full_name":"Chloephaga rubidiceps","author_year":"P.L. Sclater, 1861","common_names":[{"lang":"English","names":"Ruddy-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette à tête rousse","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén colorado","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Madsen, J., Matus, R., Blank, O., Benegas, L., Mateazzi, G. and Blanco, D. E. 2003. Population status of the Ruddy-headed Goose (\u003Ci\u003EChloephaga rubidiceps\u003C/i\u003E) in Tierra del Fuego and Mainland Patagonia (Chile and Argentina). Ornithologia Neotropical: 14: 15-28.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.; Madsen, J., Matus, R., Blank, O., Benegas, L., Mateazzi, G. and Blanco, D. E. 2003. Population status of the Ruddy-headed Goose (\u003Ci\u003EChloephaga rubidiceps\u003C/i\u003E) in Tierra del Fuego and Mainland Patagonia (Chile and Argentina). Ornithologia Neotropical: 14: 15-28.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Ruddy-headed Goose"}]},{"id":12002,"full_name":"Turdus rubrocanus","author_year":"Hodgson, 1846","common_names":[{"lang":"English","names":"Chestnut Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à tête grise","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12004,"full_name":"Vanellus leucurus","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"Dutch","names":"Witstaartkievit","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Lapwing, White-tailed Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à queue blanche","convention_language":true,"id":null},{"lang":"Polish","names":"Czajka stepowa","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría coliblanca","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dijksen, L. J. 1996. White-tailed Plover \u003Ci\u003EVanellus leucurus\u003C/i\u003E, new for Ethiopia. Bull. Afr. Bird Club: 3: 130.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius leucurus","author_year":"Lichtenstein, 1823"},{"full_name":"Chettusia leucura","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12005,"full_name":"Phylloscopus pulcher","author_year":"Blyth, 1845","common_names":[{"lang":"English","names":"Buff-barred Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot élégant","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12006,"full_name":"Hippocamelus bisulcus","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"South Andean Deer, Patagonian Huemul, Chilean Huemul, South Andean Huemul","convention_language":true,"id":null},{"lang":"French","names":"Cerf des Andes méridionales, Huémul des Andes méridionales","convention_language":true,"id":null},{"lang":"Spanish","names":"Huemul, Ciervo andino meridional","convention_language":true,"id":null},{"lang":"Swedish","names":"chilensk huemul, chilensk gaffelhjort","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Flueck W. T. and Smith-Flueck J. M. 2006. Predicaments of endangered huemul deer, Hippocamelus bisulcus, in Argentina: a review. European Journal of Wildlife Research : 52: 69-80.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Smith-Flueck, J. A. 2000. The current situation of the Patagonian huemul. Monografia L.O.L.A.: 3: 67-145.; Smith-Flueck, J. A. M. and Flueck, W. T. 2001. Natural mortality patterns in a population of southern Argentina huemul (\u003Ci\u003EHippocamelus bisulcus\u003C/i\u003E): an endangered Andean cervid. Zeitschrift für Jagdwissenschaft: 47: 178-188.; Whitehead, G. K. 1972. Deer of the world. Constable. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Povilitis, A. 1983. The Huemul in Chile: national symbol in jeopardy? Oryx: 17: 34-40.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Smith-Flueck, J. A. 2000. The current situation of the Patagonian huemul. Monografia L.O.L.A.: 3: 67-145.; Whitehead, G. K. 1972. Deer of the world. Constable. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Cervidae","genus_name":"Hippocamelus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"04/12/2010","name":"South Andean Huemul"}]},{"id":12007,"full_name":"Phalaropus fulicarius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Rosse Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Grey Phalarope, Red Phalarope","convention_language":true,"id":null},{"lang":"Finnish","names":"Isovesipääsky","convention_language":false,"id":null},{"lang":"French","names":"Phalarope à bec large","convention_language":true,"id":null},{"lang":"German","names":"Thorshühnchen","convention_language":false,"id":null},{"lang":"Italian","names":"Falaropo beccolargo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falaropo-de -bico-grosso","convention_language":false,"id":null},{"lang":"Spanish","names":"Falaropo Picogrueso","convention_language":true,"id":null},{"lang":"Swedish","names":"Brednäbbad simsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wells, D. R. 1965. Migration off the west coast of Africa in March 1965. Bull. Nigerian Ornithol. Soc.: 2: 88-90.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Aston, P. 1994. Grey Phalarope: the first records for Hong Kong. Hong Kong Bird Report 1994: 117-120.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Cramp, S. and Simmons, K. E. L. 1983. The Birds of the Western Palearctic. Vol. III. Waders to Gulls. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woo, Y.-T. and Lee, J.-N. 1996. Newly recorded birds of 6 species and subspecies in Korea. Korean Journal of Ornithology: 3: 59-61.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Phalaropus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa fulicaria","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12008,"full_name":"Larus dominicanus","author_year":"M. H. K. Lichtenstein, 1823","common_names":[{"lang":"English","names":"Kelp Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland dominicain","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cocinera","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Hayes, F. E., White, G. L., Frost, M. D. Sanasie, B., Kilpatrick, H. and Massiah, E. B. 2002. First records of Kelp Gull \u003Ci\u003ELarus dominicanus\u003C/i\u003E for Trinidad and Barbados. Cotinga: 18: 85-88.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Haase, B. 1996. Kelp Gull \u003Ci\u003ELarus domincanus\u003C/i\u003E: a new breeding species for Ecuador. Cotinga: 5: 73-74.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Pineau, R., Kayser, Y., Sall, M., Gueye, A. and Hafner, H. 2001. The Kelp Gull at Banc d'Arguin - a new Western Palearctic bird. Birding World: 14: 110-111.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; Hayes, F. E., White, G. L., Frost, M. D. Sanasie, B., Kilpatrick, H. and Massiah, E. B. 2002. First records of Kelp Gull \u003Ci\u003ELarus dominicanus\u003C/i\u003E for Trinidad and Barbados. Cotinga: 18: 85-88.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12009,"full_name":"Calidris melanotos","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Czech","names":"Jespák skvrnitý","convention_language":false,"id":null},{"lang":"Danish","names":"Stribet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Gestreepte Strandloper, Gestreepte Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Pectoral Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Palsasirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau à poitrine cendrée","convention_language":true,"id":null},{"lang":"German","names":"Graubruststrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándropartfutó, Vándorpartfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro-piro pettorale","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus arktyczny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-peitoral","convention_language":false,"id":null},{"lang":"Russian","names":"Dutysh","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Pectoral","convention_language":true,"id":null},{"lang":"Swedish","names":"Tuvsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1988. Notes on some birds of northeastern Brazil (3). Bulletin of the British Ornithologists' Club: 108: 75-79.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia melanotos","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa melanotos","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12010,"full_name":"Marmaronetta angustirostris","author_year":"(Ménétriés, 1832)","common_names":[{"lang":"Danish","names":"Marmorand","convention_language":false,"id":null},{"lang":"Dutch","names":"Marmereend","convention_language":false,"id":null},{"lang":"English","names":"Marbled Duck, Marbled Teal","convention_language":true,"id":null},{"lang":"Finnish","names":"Marmorisorsa","convention_language":false,"id":null},{"lang":"French","names":"Sarcelle marbrée, Marmaronette marbrée","convention_language":true,"id":null},{"lang":"German","names":"Marmelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Márványos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra marmorizzata, Carganella marmorizzata, Anata marmorizzata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pardilheira","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta Pardilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Marmorand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"extinct","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Bos, J. F. F. P., Essetti, I. and Gilissen, N. L. M. 2000. Record counts of Marbled Teal in Tunisia, October 1999: consequences for population estimates and distribution. Threatened Waterfowl Research Group News: 12: 49-53.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Marmaronetta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12012,"full_name":"Vanellus albiceps","author_year":"Gould, 1834","common_names":[{"lang":"English","names":"White-headed Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à tête blanche","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría coroniblanca","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Xiphidiopterus albiceps","author_year":"(Gould, 1834)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12013,"full_name":"Gorsachius goisagi","author_year":"(Temminck, 1835)","common_names":[{"lang":"English","names":"Japanese Night-Heron","convention_language":true,"id":null},{"lang":"French","names":"Bihoreau goisagi","convention_language":true,"id":null},{"lang":"Spanish","names":"Martinete Japonés","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Gorsachius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Nycticorax goisagi","author_year":"Temminck, 1835"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12014,"full_name":"Rissa tridactyla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ride","convention_language":false,"id":null},{"lang":"Dutch","names":"Drieteenmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Black-legged Kittiwake, Kittiwake","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukajava","convention_language":false,"id":null},{"lang":"French","names":"Mouette tridactyle","convention_language":true,"id":null},{"lang":"German","names":"Dreizehenmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csüllõ","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano tridattilo","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa trójpalczasta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-tridáctila","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Tridáctila","convention_language":true,"id":null},{"lang":"Swedish","names":"Tretåig mås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S. 1997. Two new species of birds from Hispaniola: Wood Thrush and Black-legged Kittiwake. El Pitirre: 10: 59.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Rissa","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus tridactylus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12015,"full_name":"Arenaria melanocephala","author_year":"(Vigors, 1829)","common_names":[{"lang":"English","names":"Black Turnstone","convention_language":true,"id":null},{"lang":"French","names":"Tournepierre noir","convention_language":true,"id":null},{"lang":"Spanish","names":"Vuelvepiedras oscuro","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Arenaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Strepsilas melanocephalus","author_year":"Vigors, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12016,"full_name":"Vanellus vanellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Vibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Kievit","convention_language":false,"id":null},{"lang":"English","names":"Lapwing, Northern Lapwing","convention_language":true,"id":null},{"lang":"Finnish","names":"Töyhtöhyyppä","convention_language":false,"id":null},{"lang":"French","names":"Vanneau huppé","convention_language":true,"id":null},{"lang":"German","names":"Kiebitz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bíbic","convention_language":false,"id":null},{"lang":"Italian","names":"Pavoncella","convention_language":false,"id":null},{"lang":"Polish","names":"Czajka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abibe-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría Europea","convention_language":true,"id":null},{"lang":"Swedish","names":"Tofsvipa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa vanellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12017,"full_name":"Pluvialis squatarola","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kulík bledý","convention_language":false,"id":null},{"lang":"Danish","names":"Strandhjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Zilverplevier","convention_language":false,"id":null},{"lang":"English","names":"Black-bellied Plover, Grey Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Tundrakurmitsa","convention_language":false,"id":null},{"lang":"French","names":"Pluvier argenté","convention_language":true,"id":null},{"lang":"German","names":"Kiebitzregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ezüstlile","convention_language":false,"id":null},{"lang":"Italian","names":"Pivieressa","convention_language":false,"id":null},{"lang":"Polish","names":"Siewnica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-cinzenta","convention_language":false,"id":null},{"lang":"Russian","names":"Tuless","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Kustpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Sharpe, C. J., Ascanio-Echeverria, D. and Rodríguez, G. A. 2001. Further range extensions and noteworthy records for Venezuelan birds. Bulletin of the British Ornithologists' Club: 121: 50-62.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Squatarola squatarola","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa squatarola","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12018,"full_name":"Tadorna ferruginea","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Husice rezavá","convention_language":false,"id":null},{"lang":"Danish","names":"Rustand","convention_language":false,"id":null},{"lang":"Dutch","names":"Casarca","convention_language":false,"id":null},{"lang":"English","names":"Ruddy Shelduck","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruostesorsa","convention_language":false,"id":null},{"lang":"French","names":"Tadorne casarca","convention_language":true,"id":null},{"lang":"German","names":"Rostgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörös ásólúd","convention_language":false,"id":null},{"lang":"Italian","names":"Casarca","convention_language":false,"id":null},{"lang":"Polish","names":"Kazarka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-ferrugíneo","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarro canelo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rostand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas ferruginea","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12019,"full_name":"Synthliboramphus wumizusume","author_year":"(Temminck, 1836)","common_names":[{"lang":"English","names":"Crested Murrelet, Japanese Murrelet","convention_language":true,"id":null},{"lang":"French","names":"Guillemot du Japon","convention_language":true,"id":null},{"lang":"Spanish","names":"Mérgulo Japonés","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Synthliboramphus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Uria wumizusume","author_year":"Temminck, 1835"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1989","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12020,"full_name":"Gallinago solitaria","author_year":"Hodgson, 1831","common_names":[{"lang":"English","names":"Solitary Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine solitaire","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza solitaria","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella solitaria","author_year":"(Hodgson, 1831)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12021,"full_name":"Lepidochelys kempii","author_year":"(Garman, 1880)","common_names":[{"lang":"English","names":"Atlantic Ridley, Gulf Ridley, Kemp's Ridley, Mexican Ridley","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Devaux, B. and Bonin, F. 2010. Oh, happy days! / Floride, Texas. La Tortue: 84: 32-53.; Landry Jr., A. M., Costa, D. T., Kenyon II, L. F. and Coyne, M. S. 2005. Population characteristics of Kemp's Ridley Sea Turtles in nearshore waters of the upper Texas and Louisiana coasts. Chelonian Conservation and Biology: 4(4): 801-807","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Lepidochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":12022,"full_name":"Turdus migratorius","author_year":"Linnaeus, 1766","common_names":[{"lang":"Dutch","names":"Roodborstlijster","convention_language":false,"id":null},{"lang":"English","names":"American Robin","convention_language":true,"id":null},{"lang":"French","names":"Merle d'Amérique","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12023,"full_name":"Saxicola caprata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Sort Bynkefugl","convention_language":false,"id":null},{"lang":"English","names":"Pied Bushchat","convention_language":true,"id":null},{"lang":"French","names":"Tarier pie","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12024,"full_name":"Plecotus auritus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshgjate","convention_language":false,"id":null},{"lang":"Croatian","names":"Sjeverni dugouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr ušatý","convention_language":false,"id":null},{"lang":"Danish","names":"Langøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grootoorvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Brown Long-eared Bat, Brown Big-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurkõrv, Pruun-suurkõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Korvayökkö","convention_language":false,"id":null},{"lang":"French","names":"Oreillard roux","convention_language":true,"id":null},{"lang":"German","names":"Braunes Langohr","convention_language":false,"id":null},{"lang":"Icelandic","names":"Langeyrnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Orecchione comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Rudasis ausylis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Langøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Gacek brunatny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-orelhudo-castanho","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-urecheat-brun","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier svetlý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejudo dorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Långörad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spitzenberger, F. Strelkov, P. and Haring, E. 2003. Morphology and mitochondrial DNA sequences show that \u003Ci\u003EPlecotus alpinus\u003C/i\u003E Kiefer \u0026 veith, 2002 and \u003Ci\u003EPlecotus microdontus\u003C/i\u003E Spitzenberger, 2002 are synonyms of \u003Ci\u003EPlecotus macrobullaris\u003C/i\u003E Kuzjakin, 1965. Natura Croatica: 12(2): 39-53","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Benda, P. and Ivanova, T. 2003. Long-eared bats, genus \u003Ci\u003EPlecotus\u003C/i\u003E (Mammalia: Chiroptera), in Bulgaria: a revision of systematic and distributional status. Journal of the National Museum, Natural History Series: 172: 157-172.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Palmeirim, J. M. 1990. Bats of Portugal: zoogeography and systematics. University of Kansas Museum of Natural History, Miscellaneous Publications: 82: 53 pp.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Volozheninov, N. N. 1981. [On the ecology of Chiroptera of the Mal'guzarsk Range.]. Uzbekskii biol. Zh.: 1981: 51-53.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Plecotus homochrous","author_year":"Hodgson, 1847"},{"full_name":"Plecotus ognevi","author_year":"Kishida, 1927"},{"full_name":"Plecotus sacrimontis","author_year":"G. M. Allen, 1908"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12025,"full_name":"Luscinia luscinia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Slavík tmavý","convention_language":false,"id":null},{"lang":"Danish","names":"Nattergal","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Nachtegaal","convention_language":false,"id":null},{"lang":"English","names":"Thrush Nightingale","convention_language":true,"id":null},{"lang":"Finnish","names":"Satakieli","convention_language":false,"id":null},{"lang":"French","names":"Rossignol progné","convention_language":true,"id":null},{"lang":"German","names":"Sprosser","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo maggiore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-russo","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovenny Solovey","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Ruso","convention_language":true,"id":null},{"lang":"Swedish","names":"Näktergal","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"O'Sullivan, O. and Smiddy, P. 1990. Thirty-seventh Irish Bird Report, 1989. Irish Birds: 4: 231-257.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Luscinia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus luscinia","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12026,"full_name":"Cyornis rubeculoides","author_year":"(Vigors, 1831)","common_names":[{"lang":"English","names":"Blue-throated Blue-flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à menton bleu","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. 2000. Twenty six further new species for Cambodia. Cambodia Bird News: 6: 37-43.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Hale, M. and Hackett, J. 1994. Blue-throated Flycatcher in Ho Chung Woods: the first record for Hong Kong. Hong Kong Bird Report 1994 : 132-133.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12027,"full_name":"Urosphena squameiceps","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Asian Stubtail","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle de Swinhoe","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Curio, E., Hornbuckle, J., de Soye, Y., Aston, P. and Lastimoza, L. L. 2001. New bird records for the island of Panay, Philippines, including the first record of the Asian Stubtail \u003Ci\u003EUrosphena squameiceps\u003C/i\u003E for the Philippines. Bulletin of the British Ornithologists' Club: 121: 183-197.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Urosphena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Cettia squameiceps","author_year":"(Swinhoe, 1863)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12028,"full_name":"Phylloscopus affinis","author_year":"(Tickell, 1833)","common_names":[{"lang":"English","names":"Tickell's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Tickell","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12029,"full_name":"Platalea alba","author_year":"Scopoli, 1786","common_names":[{"lang":"English","names":"African Spoonbill","convention_language":true,"id":null},{"lang":"French","names":"Spatule d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Espátula Africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Saghier, O. and Porter, R. F. 1997. The first African Spoonbill Platalea alba in Yemen. Sandgrouse: 19: 141.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Excluding Malagasy population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12031,"full_name":"Phylloscopus fuligiventer","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Smoky Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot enfumé","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12032,"full_name":"Catharus fuscescens","author_year":"(Stephens, 1817)","common_names":[{"lang":"Dutch","names":"Veery","convention_language":false,"id":null},{"lang":"English","names":"Veery","convention_language":true,"id":null},{"lang":"French","names":"Grive fauve","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Anon. 2002. Four new bird records for Nicaragua and the rediscovery of the Golden-cheeked Warbler (\u003Ci\u003EDendroica chrysoparia\u003C/i\u003E). La Tangara: 40: 2.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Múnera-Roldán, C., Cody, M. L., Schiele-Zavala, R. H., Sigel, B. J., Woltmann, S. and Kjeldsen, J. P. 2007. New and noteworthy records of birds from south-eastern Nicaragua. Bulletin of the British Ornithologists' Club: 127: 152-161.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Robbins, M. B., Faucett, R. C. and Rice, N. H. 1999. Avifauna of a Paraguayan cerrado locality: Parque Nacional Serrania San Luis, depto. Concepción. Wilson Bulletin: 111: 216-228.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hylocichla fuscescens","author_year":"(Stephens, 1817)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12033,"full_name":"Phylloscopus reguloides","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Blyth's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Blyth","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12034,"full_name":"Anser erythropus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Husa malá","convention_language":false,"id":null},{"lang":"Danish","names":"Dværggås","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwerggans","convention_language":false,"id":null},{"lang":"English","names":"Lesser White-fronted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiljuhanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie naine","convention_language":true,"id":null},{"lang":"German","names":"Zwerggans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis lilik","convention_language":false,"id":null},{"lang":"Italian","names":"Oca lombardella minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dverggås","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-pequeno-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Piskulka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar chico, Ánsar careto chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Fjällgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Bejenaru, I., Andrrev, A. and Sirodoev, G. 2003. Information Sheet on Ramsar Wetlands (RIS) - Republic of Moldova, Lower Dniester, 2003. http://www.ramsar.org/ris\u003Ci\u003Emoldova\u003C/i\u003Elower_dniester.htm .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas erythropus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12035,"full_name":"Phocoena phocoena","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Marsvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruinvis","convention_language":false,"id":null},{"lang":"English","names":"Harbour Porpoise, Common Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin, Marsouin commun","convention_language":true,"id":null},{"lang":"German","names":"Schweinswal","convention_language":false,"id":null},{"lang":"Italian","names":"Marsuino, Focena","convention_language":false,"id":null},{"lang":"Norwegian","names":"Nise","convention_language":false,"id":null},{"lang":"Polish","names":"morswin","convention_language":false,"id":null},{"lang":"Spanish","names":"Marsopa común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 36-54.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"extinct","country_references":"HELCOM Red List Marine Mammal Expert Group. 2013. \u003Ci\u003EPhocoena phocoena\u003C/i\u003E. Distribution and status in the Baltic Sea region. www.helcom.fi","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J. and Nowak, E. 1978. Rote liste der säugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefährdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Scheidat, M., Gilles, A., Kock, K.H. and Siebert, U. 2008. Harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E abundance in the southwestern Baltic Sea. Endangered Species Research: 5: 215-223.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Law, R.J. and Whinnet, J.A. 1992. Polycyclic aromatic hydrocarbons in muscle tissue of harbour porpoises (\u003Ci\u003EPhocoena phocoena\u003C/i\u003E) from UK waters. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 24: 550–553.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Gaskin, D. E., Yamamoto, S. and Kawamura, A. 1993. Harbor Porpoise, \u003Ci\u003EPhocoena phocoena\u003C/i\u003E in the coastal waters of North Japan. Fishery Bulletin: 93: 440-454.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Skeiveris, R. 1992. Observations of Baltic seals and dolphins on Lithuanian seacoast. Tartu Ulikooli Toimetised: 955: 148-150.","id":null},{"name":"Malta","country":"Malta","tags_list":"extinct (?)","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Hammond, P.S., Berggren, P., Benke, H., Borchers, D.L., Collet, A., Heide-Jorgensen, M.P., Heimlich, S., Hiby, A.R., Leopold, M.F. and Oien, N. 2002. Abundance of harbour porpoise and other cetaceans in the North Sea and adjacent waters. \u003Ci\u003EJournal of Applied Ecology\u003C/i\u003E: 39: 361–376.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Skora, K. E. 1991. Notes on Cetacea observed in the Polish Baltic Sea: 1979-1990. Aquatic Mammals: 17: 67-70.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Radu, G. and Anton, E. 2014. Impact of turbot fishery on cetaceans in the Romanian Black Sea area. \u003Ci\u003EScientia Marina\u003C/i\u003E: 78S1: 103–109.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hammond, P.S., Berggren, P., Benke, H., Borchers, D.L., Collet, A., Heide-Jorgensen, M.P., Heimlich, S., Hiby, A.R., Leopold, M.F. and Oien, N. 2002. Abundance of harbour porpoise and other cetaceans in the North Sea and adjacent waters. \u003Ci\u003EJournal of Applied Ecology\u003C/i\u003E: 39: 361–376.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.; Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"North West African population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Western North Atlantic, and Black Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":12036,"full_name":"Bucephala clangula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Hohol severní","convention_language":false,"id":null},{"lang":"Danish","names":"Hvinand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilduiker","convention_language":false,"id":null},{"lang":"English","names":"Goldeneye, Common Goldeneye","convention_language":true,"id":null},{"lang":"Finnish","names":"Telkkä","convention_language":false,"id":null},{"lang":"French","names":"Garrot sonneur, Garrot à oeil d'or, Garrot à œil d'or","convention_language":true,"id":null},{"lang":"German","names":"Schellente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerceréce","convention_language":false,"id":null},{"lang":"Italian","names":"Quattrocchi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-olho-d'ouro","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Osculado","convention_language":true,"id":null},{"lang":"Swedish","names":"Knipa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ribara, I. 2006. Information sheet on Ramsar Wetlands (RIS): Labudovo Okno. http://www.wetlands.org/reports/ris/3RS005_RIS2006.pdf.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Combrisson, D. 1999. [First breeding of Goldeneye in France.]. Ornithos: 6: 138-140.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas clangula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12037,"full_name":"Sotalia fluviatilis","author_year":"(Gervais \u0026 Deville, 1853)","common_names":[{"lang":"Dutch","names":"Tucuxi","convention_language":false,"id":null},{"lang":"English","names":"Grey Dolphin, Estuarine Dolphin, Tucuxi","convention_language":true,"id":null},{"lang":"French","names":"Sotalie","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo negro","convention_language":true,"id":null},{"lang":"Swedish","names":"deltadelfin","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"da Silva, V. M. F. and Best, R. C. 1994. Tucuxi \u003Ci\u003ESotalia fluviatilis\u003C/i\u003E (Gervais, 1853). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Carr, T. and Bonde, R. K. 2000. Tucuxi (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) occurs in Nicaragua, 800 km north of its previously known range. Marine Mammal Science: 16: 447-452.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sotalia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12038,"full_name":"Oenanthe hispanica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Middelhavsstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Blonde Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Black-eared Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Rusotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet oreillard","convention_language":true,"id":null},{"lang":"German","names":"Mittelmeer-Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Déli hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-ruivo","convention_language":false,"id":null},{"lang":"Russian","names":"Pleshanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Rubia","convention_language":true,"id":null},{"lang":"Swedish","names":"Medelhavsstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; van den Elzen, R. 1975. Zur Kenntnis der Avifauna Kameruns. Bonner Zoologische Beiträge: 26: 49-75.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12039,"full_name":"Anous stolidus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Noddy","convention_language":false,"id":null},{"lang":"English","names":"Brown Noddy, Common Noddy","convention_language":true,"id":null},{"lang":"French","names":"Noddi brun","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiñosa boba","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna stolida","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12040,"full_name":"Limosa limosa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stor Kobbersneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Grutto","convention_language":false,"id":null},{"lang":"English","names":"Black-tailed Godwit","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapyrstökuiri","convention_language":false,"id":null},{"lang":"French","names":"Barge à queue noire, Barge à queue noire","convention_language":true,"id":null},{"lang":"German","names":"Uferschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy goda","convention_language":false,"id":null},{"lang":"Italian","names":"Pittima reale","convention_language":false,"id":null},{"lang":"Norwegian","names":"Svarthalespove","convention_language":false,"id":null},{"lang":"Polish","names":"Rycyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-de-bico-direito","convention_language":false,"id":null},{"lang":"Spanish","names":"Aguja Colinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Beintema, A. J. and Drost, N. 1986. Migration of the Black-tailed Godwit. Gerfaut: 76: 37-62.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; Hayes, F. E. and Kenefick, M. 2002. First record of Black-tailed Godwit \u003Ci\u003ELimosa limosa\u003C/i\u003E for South America. Cotinga: 17: 20-22.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax limosa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12041,"full_name":"Scolopax minor","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"American Woodcock","convention_language":true,"id":null},{"lang":"French","names":"Bécasse d'Amérique","convention_language":true,"id":null},{"lang":"Spanish","names":"Chocha Americana","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Scolopax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Philohela minor","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12042,"full_name":"Myotis daubentonii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"English","names":"Daubenton's Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"vattenfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Borissenko, A. V., Kruskop, S. V. and Kashtalian, A. P. 1999. [New mammal species (Chiroptera, Insectivora) in the Berezinsky Biosphere Reserve.]. Vestnik Zoologii: 33: 107-113, 126.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Feng Zuo-jian, Zheng Chang-lin and Cai Gui-quan. 1980. [On mammals from south-eastern Xizang (Tibet).]. Acta Zoologica Sinica: 26: 91-97.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. and Weid, R. 1990. Der Verbreitung einiger Fledermausarten in Griechenland. Bonner Zoologische Beiträge: 41: 9-22.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Pinder, N. J. and Bolton, S. M. 1990. Some recent bat records. Peregrine: 6: 66-67.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Maeda, K. 1985. New records of the eastern Daubenton's bats \u003Ci\u003EMyotis daubentoni ussuriensis\u003C/i\u003E Ognev, 1927, in Hokkaido and variations in external and skull dimensions. J. Mammal. Soc. Japan: 10: 159-164.; Sato, M., Maeda, K. and Akazawa, Y. 2001. [Distribution of bats in Toyatomi and Horonobe, northern Hokkaido.]. Rishiri Studies: 20: 23-28.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Kokurewicz, T. 1995. Increased population of Daubenton's bat (\u003Ci\u003EMyotis daubentoni\u003C/i\u003E (Kuhl, 1819)) (Chiroptera: Vespertilionidae) in Poland. Myotis: 32: 155-161.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Dong Ho Yoo and Myung Hee Yoon. 1992. A karyotypic study on six Korean vespertilionid bats. Korean Journal of Zoology: 33: 489-496.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1988. The presence of \u003Ci\u003EMyotis daubentoni\u003C/i\u003E (Kuhl, 1819) in Turkey. Mammalia: 52: 415-418.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Bates, P. J. J., Hendrichsen, D. K., Walston, J. L. and Hayes, B. 1999. A review of the mouse-eared bats (Chiroptera: Vespertilionidae: \u003Ci\u003EMyotis\u003C/i\u003E) from Vietnam with significant new records. Acta Chiropterologica: 1: 47-74.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis nathalinae","author_year":"Tupinier, 1977"},{"full_name":"Myotis petax","author_year":"Hollister, 1912"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12043,"full_name":"Acrocephalus agricola","author_year":"(Jerdon, 1845)","common_names":[{"lang":"Czech","names":"Rákosník plavý","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Rørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Veldrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Paddyfield Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kenttäkerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle isabelle`, Rousserolle isabelle","convention_language":true,"id":null},{"lang":"German","names":"Feldrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rozsdás nádiposzáta, Rozsdás ná diposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola di Jerdon","convention_language":false,"id":null},{"lang":"Polish","names":"Trcinniczek kaspijski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-agrícola","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Agrícola","convention_language":true,"id":null},{"lang":"Swedish","names":"Fältsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Merne, O. J. and Walsh, A. 1988. Paddyfield Warbler in County Wexford - a species new to Ireland. Irish Birds: 3: 592-595.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12044,"full_name":"Gazella erlangeri","author_year":"Neumann, 1906","common_names":[{"lang":"English","names":"Neumann's Gazelle","convention_language":true,"id":null}],"distributions":[{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGazella gazella\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12046,"full_name":"Phylloscopus plumbeitarsus","author_year":"Swinhoe, 1861","common_names":[{"lang":"English","names":"Two-barred Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12047,"full_name":"Locustella lanceolata","author_year":"(Temminck, 1840)","common_names":[{"lang":"Dutch","names":"Kleine Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Lanceolated Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viirusirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle lancéolée","convention_language":true,"id":null},{"lang":"German","names":"Strichelschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Foltos tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Locustella lanceolata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-lanceolada","convention_language":false,"id":null},{"lang":"Russian","names":"Pyatnisty Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Lanceolada","convention_language":true,"id":null},{"lang":"Swedish","names":"Träsksångare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12048,"full_name":"Oenanthe oenanthe","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"(Almindelig) Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Northern Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivitasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet motteux","convention_language":true,"id":null},{"lang":"German","names":"Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Culbianco","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-cinzento","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Stenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12049,"full_name":"Larus hyperboreus","author_year":"Gunnerus, 1767","common_names":[{"lang":"Czech","names":"Racek šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Gråmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Burgemeester","convention_language":false,"id":null},{"lang":"English","names":"Glaucous Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Isolokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland bourgmestre","convention_language":true,"id":null},{"lang":"German","names":"Eismöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jeges sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano glauco","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa blada","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-hiperbórea","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Hiperbóreo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vittrut","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12050,"full_name":"Tringa solitaria","author_year":"Wilson, 1813","common_names":[{"lang":"Danish","names":"Amerikansk Svaleklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Bosruiter","convention_language":false,"id":null},{"lang":"English","names":"Solitary Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier solitaire","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos solitario","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12051,"full_name":"Tachybaptus ruficollis","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Potápka malá","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Dodaars","convention_language":false,"id":null},{"lang":"English","names":"Little Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikku-uikku","convention_language":false,"id":null},{"lang":"French","names":"Grébe castagneux, Grèbe castagneux","convention_language":true,"id":null},{"lang":"German","names":"Zwergtaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Tuffetto","convention_language":false,"id":null},{"lang":"Polish","names":"Perkozek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-pequeno","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Smådopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lamarche, B. 1988. Liste commentée des oiseaux de Mauritanie. Etude Sahariennes et Ouest-Africaines: 1(4):1-162 .; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Tachybaptus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus ruficollis","author_year":"Pallas, 1764"},{"full_name":"Podiceps ruficollis","author_year":"(Pallas, 1764)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12052,"full_name":"Turdus ruficollis","author_year":"Pallas, 1776","common_names":[{"lang":"Czech","names":"Drozd tmavohrdlý","convention_language":false,"id":null},{"lang":"Danish","names":"Sortstrubet Drossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwart-/Roodkeellijster, Roodkeellijster, Zwart-Roodkeellijster","convention_language":false,"id":null},{"lang":"English","names":"Dark-throated Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakaularastas","convention_language":false,"id":null},{"lang":"French","names":"Grive à gorge rousse","convention_language":true,"id":null},{"lang":"German","names":"Bechsteindrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tajgarigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo golanera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-de-papo-preto, Tordo-de-papo-ruivo, Tordo-de-papo/-ruivo/-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal papirrojo y papinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Taigatrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12053,"full_name":"Mesoplodon europaeus","author_year":"(Gervais, 1855)","common_names":[{"lang":"English","names":"Gulf Stream Beaked Whale, Gervais's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Gervais","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Gervais","convention_language":true,"id":null},{"lang":"Swedish","names":"Gervais näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Gillespie, D., Dunn, C., Gordon, J., Claridge, D., Embling, C. and Boyd, I. 2009. Field recordings of Gervais’ beaked whales \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E from the Bahamas. \u003Ci\u003EThe Journal of the Acoustical Society of America\u003C/i\u003E: 125(5): 3428–3433.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"MacLeod, C.D. 2000. Review of the distribution of Mesoplodon species (order Cetacea, family Ziphiidae) in the North Atlantic. \u003Ci\u003EMammal Review\u003C/i\u003E: 30(1): 1–8.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Reiner, F. 1980. First record of a Antillean beaked whale, \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E Gervais 1855, from Republic Popular da Guine-Bissau. Memorias Mus. Mar. (Zool.): 1: 1-8.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Bruton, T., Cotton, D. and Enright, M. 1989. Gulf Stream beaked whale \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E (Gervais). Irish Naturalists' Journal: 23: 156.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Robineau, D. 1993. Stranding of a specimen of Gervais' beaked whale (\u003Ci\u003EMesoplodon europaeus\u003C/i\u003E) on the coast of West Africa (Mauritania). Marine Mammal Science: 9: 438-440.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. 1992. Notes on a Gervais beaked whale, \u003Ci\u003EMesoplodon europaeus, and a dwarf sperm whale, \u003C/i\u003EKogia simus_, stranded in Curacao, Netherlands Antilles. Marine Mammal Science: 8: 172-178.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Reiner, F., Goncalves, J.M. and Santos, R. 1993. Two new records of Ziphiidae (Cetacea) for the Azores with an updated checklist of cetacean species. \u003Ci\u003EArquipélago. Life and Marine Sciences\u003C/i\u003E: 11A: 113–118.; Santos-Reis, M. and Da Luz Mathias, M. 1996. The historical and recent distribution and status of mammals in Portugal. \u003Ci\u003EHystrix\u003C/i\u003E: 8(1-2): 75–89.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":12054,"full_name":"Charadrius vociferus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Kildire","convention_language":false,"id":null},{"lang":"Dutch","names":"Killdeerplevier","convention_language":false,"id":null},{"lang":"English","names":"Killdeer","convention_language":true,"id":null},{"lang":"French","names":"Pluvier kildir","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo culirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12055,"full_name":"Procellaria parkinsoni","author_year":"Gray, 1862","common_names":[{"lang":"English","names":"Parkinson's Petrel, Black Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin de Parkinson","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de Parkinson","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12056,"full_name":"Cephalorhynchus eutropia","author_year":"Gray, 1846","common_names":[{"lang":"Dutch","names":"Zwarte Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Chilean Dolphin, White-bellied Dolphin, Black Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin noir du Chili","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín negro, Tunina de vientre blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"chiledelfin, vitbuksdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12057,"full_name":"Saiga borealis","author_year":"(Tschersky, 1876)","common_names":[{"lang":"English","names":"Mongolian Saiga","convention_language":true,"id":null}],"distributions":[{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Chan, S., Maksimuk, A. V. and Zhirnov, L. V (eds.) 1995. From steppe to store: the trade in saiga antelope horn. TRAFFIC International. Cambridge. ; Lushchekina, A. A., Dulamtseren, S., Amgalan, L. and Neronov, M. 1999. The status and prospects for conservation of the Mongolian saiga \u003Ci\u003ESaiga tatarica mongolica\u003C/i\u003E. Oryx: 33: 21-30.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Young, J.K., Murray, K.M., Strindberg, S., Buuveibaatar, B. and Berger, J. 2010. Population estimates of Endangered Mongolian saiga \u003Ci\u003ESaiga tatarica mongolica\u003C/i\u003E: implications for effective monitoring and population recovery. Oryx: 44: 285-292.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Saiga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Saiga tatarica mongolica","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESaiga tatarica\u003C/i\u003E, sensu Wilson \u0026 Reeder (1993)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Saiga Antelope"}]},{"id":12058,"full_name":"Pluvialis apricaria","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kulík zlatý","convention_language":false,"id":null},{"lang":"Danish","names":"Hjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"Golden Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Kapustarinta","convention_language":false,"id":null},{"lang":"French","names":"Pluvier doré","convention_language":true,"id":null},{"lang":"German","names":"Goldregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Arany lile, Aranylile","convention_language":false,"id":null},{"lang":"Italian","names":"Piviere dorato","convention_language":false,"id":null},{"lang":"Polish","names":"siewka zlota","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-dourada","convention_language":false,"id":null},{"lang":"Russian","names":"Zolotistaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado común, Chorlito dorado Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Ljungpipare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ellis, P. M., Al Omari, K. and El Halah, A. 2001. The first European Golden Plover \u003Ci\u003EPluvialis apricaria\u003C/i\u003E in Jordan. Sandgrouse: 23(2): 146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius apricarius","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12060,"full_name":"Procellaria aequinoctialis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"White-chinned Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin à menton blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela gorgiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12061,"full_name":"Nyctalus noctula","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Lakuriqnate noktule","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr rezavý","convention_language":false,"id":null},{"lang":"Danish","names":"Brunflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Noctule, Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurvidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Isolepakko","convention_language":false,"id":null},{"lang":"French","names":"Noctule commune","convention_language":true,"id":null},{"lang":"German","names":"Abendsegler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges koraidenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Húmblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Rudasis nakviša","convention_language":false,"id":null},{"lang":"Maltese","names":"Noktula","convention_language":false,"id":null},{"lang":"Norwegian","names":"Storflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiec wielki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-grande","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier hrdzavý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo común","convention_language":true,"id":null},{"lang":"Swedish","names":"Stor fladdermus, storfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Harrison, D. L. and Makin, D. 1989. Significant new records of vespertilionid bats (Chiroptera: Vespertilionidae) from Israel. Mammalia: 52: 593-596.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Ruedi, M., Tupinier, Y. and De Paz, O. 1998. First breeding record for the noctule bat (\u003Ci\u003ENyctalus noctula\u003C/i\u003E) in the Iberian Peninsula. Mammalia: 62: 301-304.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Vlashchenko, A. 1999. [Record of hibernated \u003Ci\u003ENyctalus noctula\u003C/i\u003E in Kharkov.]. Vestnik Zoologii: 33: 76.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Jones, G. S. 1983. Ecological and distributional notes on mammals from Vietnam, including the first record of \u003Ci\u003ENyctalus\u003C/i\u003E. Mammalia: 47: 339-344.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12062,"full_name":"Monticola rufiventris","author_year":"(Jardine \u0026 Selby, 1833)","common_names":[{"lang":"English","names":"Chestnut-bellied Rock-Thrush","convention_language":true,"id":null},{"lang":"French","names":"Monticole à ventre marron","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12063,"full_name":"Cetorhinus maximus","author_year":"(Gunnerus, 1765)","common_names":[{"lang":"Afrikaans","names":"Koesterhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen shtegtar","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb","convention_language":false,"id":null},{"lang":"Danish","names":"Brugde","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenhaai","convention_language":false,"id":null},{"lang":"English","names":"Hoe-mother, Bone Shark, Sun-fish, Basking Shark, Elephant Shark, Sailfish","convention_language":true,"id":null},{"lang":"Faroese","names":"Brugda","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläishai","convention_language":false,"id":null},{"lang":"French","names":"Pèlerin, Poisson à voiles, Squale géant, Requin Pèlerin, Squale-pèlerin","convention_language":true,"id":null},{"lang":"German","names":"Mandelhai, Riesenhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Karish anak","convention_language":false,"id":null},{"lang":"Icelandic","names":"Beinhákarl","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo elefante","convention_language":false,"id":null},{"lang":"Japanese","names":"Ubazame","convention_language":false,"id":null},{"lang":"Maltese","names":"Gobdoll, Pixxitonnu","convention_language":false,"id":null},{"lang":"Maori","names":"Reremai","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Saparnasm Skylopsaro","convention_language":false,"id":null},{"lang":"Norwegian","names":"Brugde","convention_language":false,"id":null},{"lang":"Polish","names":"Dlugoszpar a. rekin gigantyczny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Albafar, Peixe-carago, Relengueiro, Peixe frade, Frade, Tubarão frade","convention_language":false,"id":null},{"lang":"Spanish","names":"Tiburón canasta, Peje vaca, Peregrino, Pez elefante, Marrajo ballenato, Colayo, Marrajo gigante, Tiburón peregrino","convention_language":true,"id":null},{"lang":"Swedish","names":"Brugd, jättehaj, brygden","convention_language":false,"id":null},{"lang":"Turkish","names":"Büyük camgöz","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Møller, P R., Nielsen, J. G., Knudsen, S. W., Poulsen, J. Y., Sünksen, J. and Jørgensen, O. A. 2010. A checklist of the fish fauna of Greenland waters. Zootaxa: 2378: 1-84.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Southall, E.J., Sims, D.W., Metcalfe, J.D., Doyle, J.I., Fanshawe, S., Lacey, C., Shrimpton, J., Solandt, J.-L. and Speedie, C.D. 2005. Spatial distribution patterns of basking sharks on the European shelf: preliminary comparison of satellite-tag geolocation, survey and public sightings data. Journal of the Marine Biological Association of the United Kingdom: 85: 1083-1088.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Sandoval-Castillo, J., Ramirez-Gonzalez, J. and Villavicencio-Garayzar, C. 2008. First record of basking shark (\u003Ci\u003ECetorhinus maximus\u003C/i\u003E) in Mexico? Marine Biodiversity Records: 1: e19","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Soldo, A. and Jardas, I. 2002. Occurrence of great white shark, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E (Linnaeus, 1758) and basking shark, \u003Ci\u003ECetorhinus maximus\u003C/i\u003E (Gunnerus, 1758) in the Eastern Adriatic and their protection. Periodicum Biologorum: 104: 195-201.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Southall, E.J., Sims, D.W., Metcalfe, J.D., Doyle, J.I., Fanshawe, S., Lacey, C., Shrimpton, J., Solandt, J.-L. and Speedie, C.D. 2005. Spatial distribution patterns of basking sharks on the European shelf: preliminary comparison of satellite-tag geolocation, survey and public sightings data. Journal of the Marine Biological Association of the United Kingdom: 85: 1083-1088.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Cetorhinidae","genus_name":"Cetorhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":12064,"full_name":"Morus bassanus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Terej bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Sule","convention_language":false,"id":null},{"lang":"Dutch","names":"Jan van Gent","convention_language":false,"id":null},{"lang":"English","names":"Northern Gannet","convention_language":true,"id":null},{"lang":"Finnish","names":"Suula","convention_language":false,"id":null},{"lang":"French","names":"Fou de Bassan","convention_language":true,"id":null},{"lang":"German","names":"Baßtölpel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szula","convention_language":false,"id":null},{"lang":"Italian","names":"Sula","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-patola-comum, Ganso-patola-comun","convention_language":false,"id":null},{"lang":"Spanish","names":"Alcatraz Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Havssula","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Morus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus bassanus","author_year":"Linnaeus, 1758"},{"full_name":"Sula bassana","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12065,"full_name":"Gallinago nigripennis","author_year":"Bonaparte, 1839","common_names":[{"lang":"English","names":"African Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine africaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella nigripennis","author_year":"(Bonaparte, 1839)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12066,"full_name":"Muscicapa ferruginea","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Ferruginous Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche ferrugineux","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12067,"full_name":"Zapornia parva","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Lille rørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Klein Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Little Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuhuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette poussin","convention_language":true,"id":null},{"lang":"German","names":"Kleines Sumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Schiribilla","convention_language":false,"id":null},{"lang":"Polish","names":"Zielonka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-bastarda","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela bastarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre sumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, J. M. B. 2003. Baillon's Crake \u003Ci\u003EPorzana pusilla\u003C/i\u003E, new to The Gambia, with notes on seven other species. Malimbus: 25: 59-61.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Porzana parva","author_year":"(Scopoli, 1769)"},{"full_name":"Porzana parva parva","author_year":"(Scopoli, 1769)"},{"full_name":"Rallus parvus","author_year":"Scopoli, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Eurasia/Africa population. Formerly listed as \u003Ci\u003EPorzana parva parva\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12068,"full_name":"Acipenser naccarii","author_year":"Bonaparte, 1836","common_names":[{"lang":"Albanian","names":"Blini i bardhe","convention_language":false,"id":null},{"lang":"Danish","names":"Adriatisk stør","convention_language":false,"id":null},{"lang":"Dutch","names":"Adriatische steur, Naccari's steur","convention_language":false,"id":null},{"lang":"English","names":"Adriatic Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon de l'Adriatique","convention_language":true,"id":null},{"lang":"German","names":"Adriatischer stör","convention_language":false,"id":null},{"lang":"Italian","names":"Storione cobice","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr adriatycki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-adriátici, Esturgiao","convention_language":false,"id":null},{"lang":"Russian","names":"Adriaticheskyi osetr","convention_language":false,"id":null},{"lang":"Serbian","names":"Jadranska jesetra","convention_language":false,"id":null},{"lang":"Slovenian","names":"Jadranski jeseter","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión del Adriático","convention_language":true,"id":null},{"lang":"Swedish","names":"adriatisk stör","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct (?)","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Rossi, R., Grandi, G., Trisolini, R., Franzoi, P., Carrieri, A., Dezfuli, B. S. and Vecchietti, E. 1991. Osservazioni sulla biologia e la pesca dello storione cobice \u003Ci\u003EAcipenser naccarii\u003C/i\u003E Bonaparte nella parte terminale. del fiume Po. Atti Soc. Ital. Sci. Nat. Museo Civ. Storia Nat, Milano: 132: 121-142.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"extinct","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12071,"full_name":"Neophron percnopterus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ådselgrib","convention_language":false,"id":null},{"lang":"Dutch","names":"Aasgier","convention_language":false,"id":null},{"lang":"English","names":"Egyptian Vulture","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukorppikotka, Pikkukorppikotka","convention_language":false,"id":null},{"lang":"French","names":"Vautour percnoptère, Percnoptère d'Egypte","convention_language":true,"id":null},{"lang":"German","names":"Schmutzgeier","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dögkeselyû","convention_language":false,"id":null},{"lang":"Italian","names":"Capovaccaio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abutre do Egipto","convention_language":false,"id":null},{"lang":"Russian","names":"Stervyatnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Alimoche, Alimoche común","convention_language":true,"id":null},{"lang":"Swedish","names":"Smutsgam","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Simic, D. 2001. Accepted sightings of the Egyptian Vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in Botswana. Vulture News: 44: 31-32.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inigo, A. and Barov, B. 2002. Species action plan for the Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in the European Union. Birdlife International. 69","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ledger, J. 1985. Egyptian extinction. Quagga: 12: 10-12.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Mateo-Tomás, P. and Olea, P.P. 2010. Diagnosing the causes of territory abandonment by the Endangered Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E: the importance of traditional pastoralism and regional conservation. Oryx: 44: 424-433.; Mateo-Tomás, P., Olea, P.P. and Fombellida, I. 2010. Status of the Endangered Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in the Cantabrian Mountains, Spain, and assessment of threats. Oryx: 44: 434-440.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Neophron","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":12072,"full_name":"Ficedula sapphira","author_year":"(Blyth, 1843)","common_names":[{"lang":"English","names":"Sapphire Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche saphir","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12073,"full_name":"Ficedula semitorquata","author_year":"(Homeyer, 1885)","common_names":[{"lang":"Danish","names":"Halvkravet fluesnapper, Halvkrave fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Balkanvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Semi-collared Flycatcher, Semicollared Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Balkaninsieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche à semicollier, Gobemouche à semi-collier, Gobemouche à demi-collier, Gobe-mouche à semicollier","convention_language":true,"id":null},{"lang":"German","names":"Halbringschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ál-örvös légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia caucasica, Balia semitorquata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-de-meio-colar","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas semicollarino","convention_language":true,"id":null},{"lang":"Swedish","names":"Balkanflugsnäppare, Balkanflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Busuttil, S. and Flumm, D. 1998. The first Semi-collared Flycatcher records Ficedula semitorquata in Lebanon. Sandgrouse: 20: 147-148.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12074,"full_name":"Larus armenicus","author_year":"Buturlin, 1934","common_names":[{"lang":"Czech","names":"Racek arménský","convention_language":false,"id":null},{"lang":"Dutch","names":"Armeense Meeuw","convention_language":false,"id":null},{"lang":"English","names":"Armenian Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Armenianlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland d'Arménie","convention_language":true,"id":null},{"lang":"German","names":"Armeniermöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"örmélny sirály, Örmény sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano di Armenia","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa arménska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota da Arménia","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Armenia","convention_language":true,"id":null},{"lang":"Swedish","names":"Armenisk trut","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12075,"full_name":"Aythya fuligula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Troldand","convention_language":false,"id":null},{"lang":"Dutch","names":"Kuifeend","convention_language":false,"id":null},{"lang":"English","names":"Tufted Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Tukkasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule morillon","convention_language":true,"id":null},{"lang":"German","names":"Reiherente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kontyos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta","convention_language":false,"id":null},{"lang":"Polish","names":"Czernica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-negrinha","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Moñudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vigg","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Serge, B. K., Ndeh, D. A., Djabo, K. Y. and Nayuoh, L. 2000. First records of Tufted Duck \u003Ci\u003EAythya fuligula\u003C/i\u003E in Cameroon. Malimbus: 22: 91-92.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas fuligula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12076,"full_name":"Charadrius tricollaris","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Three-banded Plover, African Three-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à triple collier","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo tricollar","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Cable, T. T. 1994. First record of Three-banded Plover \u003Ci\u003ECharadrius tricollaris\u003C/i\u003E in Ivory Coast. Malimbus: 16: 57-58.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hoath, R. 2000. The first Three-banded Plover \u003Ci\u003ECharadrius tricollaris\u003C/i\u003E in Egypt and the Western Palearctic. Sandgrouse: 22: 67-68.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12077,"full_name":"Locustella luscinioides","author_year":"(Savi, 1824)","common_names":[{"lang":"Danish","names":"Savisanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Snor","convention_language":false,"id":null},{"lang":"English","names":"Savi's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokosirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle luscinioïde","convention_language":true,"id":null},{"lang":"German","names":"Rohrschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nádi tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Salciaiola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-unicolor","convention_language":false,"id":null},{"lang":"Russian","names":"Soloviny Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Unicolor","convention_language":true,"id":null},{"lang":"Swedish","names":"Vassångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V. and Busuttil, S. 2002. The first breeding records of Citrine Wagtail \u003Ci\u003EMotacilla citreola\u003C/i\u003E and Savi's Warbler \u003Ci\u003ELocustella luscinioides\u003C/i\u003E in Armenia. Sandgouse: 24: 52-53.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Fry, C. H. 1970. Birds in Waza National Park, Cameroun. Bulletin of the Nigerian Ornithological Society: 7: 1-5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Kainady, P. V. G. and Al-Joborae, P. F. M. 1975. Two additions to the Iraqi avifauna. Bull. Basrah Nat. Hist. Mus.: 2: 51-54.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12078,"full_name":"Pseudoscaphirhynchus kaufmanni","author_year":"(Kessler, 1874)","common_names":[{"lang":"English","names":"Amu Darya Shovelnose Sturgeon, Big Amu-Darya Shovelnose, Large Amu-Dar Shovelnose Sturgeon, Shovelfish, Amu Darya Sturgeon, False Shovelnose Sturgeon","convention_language":true,"id":null},{"lang":"German","names":"Großer Pseudoschaufelstör","convention_language":false,"id":null},{"lang":"Polish","names":"Wielki lopatonos","convention_language":false,"id":null},{"lang":"Swedish","names":"Amu Darya-stör, falsk skovelnosstör","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12079,"full_name":"Loxodonta cyclotis","author_year":"(Matschie, 1900)","common_names":[{"lang":"English","names":"Forest Elephant","convention_language":true,"id":null},{"lang":"French","names":"Éléphant de forêt","convention_language":true,"id":null},{"lang":"Spanish","names":"Elefante de bosque","convention_language":true,"id":null}],"distributions":[{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Loxodonta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ELoxodonta africana\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12080,"full_name":"Thalassarche cauta","author_year":"(Gould, 1841)","common_names":[{"lang":"Dutch","names":"Witkapalbatros","convention_language":false,"id":null},{"lang":"English","names":"Shy Albatross, White-capped Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à cape blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkappenalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatros dal capuccio bianco","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros frentiblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråkindad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Petry, M. V., Bencke, G. A. and Klein, G. N. 1991. First record of the Shy Albatross \u003Ci\u003EDiomedea cauta\u003C/i\u003E for the Brazilian coast. Bulletin of the British Ornithologist's Club: 111: 189-190.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Cunningham-van Someren, G. R. 1988. On the first Kenya record of the Shy Albatross Diomedea cauta. Bulletin of the British Ornithologists' Club: 108: 18-19.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea cauta","author_year":"Gould, 1841"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12081,"full_name":"Calidris alpina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Almindelig Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonte Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Dunlin","convention_language":true,"id":null},{"lang":"Finnish","names":"Suosirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau variable","convention_language":true,"id":null},{"lang":"German","names":"Alpenstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Havasi partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello pancianera","convention_language":false,"id":null},{"lang":"Norwegian","names":"Myrsnipe","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus zmienny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Chernozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlomos común, Correlimos Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Kärrsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Muyen, B. van. 2006. First record of Dunlin \u003Ci\u003ECalidris alpina\u003C/i\u003E for Benin. Bulletin of the African Bird Club: 13: 210-211.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Robertson, I. 1993. Unusual records from Cameroon. Malimbus: 14: 62-63.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.; Salaman, P. 1994. Surveys and conservation of biodiversity in the Chocó, south west Colombia. BirdLife International. Cambridge, U.K. ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guyra Paraguay. 2004. Lista comentada de las Aves de Paraguay / Annotated checklist of the Birds of Paraguay. Asociación Guyra Paraguay. Asunción, Paraguay.; Lesterhuis, A.J. and Clay, R.P. 2003. The first record of Dunlin (\u003Ci\u003ECalidris alpina\u003C/i\u003E) in Paraguay and a summary of South American records of the species. El Hornero: 18: 65-67.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Erritzoe, J. 1994. First record of the Dunlin from the Philippines. Bulletin of the British Ornithologists' Club: 114: 128-129.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia alpina","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa alpina","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12082,"full_name":"Calidris ferruginea","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Danish","names":"Krumnæbbet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Krombekstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Curlew Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau cocorli","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus krzywodzioby","convention_language":false,"id":null},{"lang":"Russian","names":"Krasnozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos zarapitín","convention_language":true,"id":null},{"lang":"Swedish","names":"spovsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wilson, R. G., Keenan, J., Lavercombe, B. and della Seta, M. 1997. Curlew Sandpiper \u003Ci\u003ECalidris ferruginea\u003C/i\u003E in Yucatan, Mexico. Cotinga: 8: 51.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Saveljic, D. 2008. Buljarica Wetland: Eco-guide to the lagoon ecosystems of Montenegro (Eko vodiè za lagunske ekosisteme Crne Gore). Universita del Salento. 7.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erolia testacea","author_year":"(Pallas, 1764)"},{"full_name":"Scolopax testacea","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12083,"full_name":"Gavia arctica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Potáplice severní","convention_language":false,"id":null},{"lang":"Danish","names":"Sortstrubet lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Parelduiker","convention_language":false,"id":null},{"lang":"English","names":"Black-throated Loon, Arctic Loon, Black-throated Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Kuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon arctique","convention_language":true,"id":null},{"lang":"German","names":"Prachttaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga mezzana","convention_language":false,"id":null},{"lang":"Norwegian","names":"Storlom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur czarnoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-árctica","convention_language":false,"id":null},{"lang":"Russian","names":"Chernozobaya Gagara","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo ártico, Colimbo Arctico, Colímbo ártico","convention_language":true,"id":null},{"lang":"Swedish","names":"Storlom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"extinct","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus arcticus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EGavia arctica suschkini\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12084,"full_name":"Equus hemionus","author_year":"Pallas, 1775","common_names":[{"lang":"Danish","names":"asiatisk vildæsel eller kulan","convention_language":false,"id":null},{"lang":"Dutch","names":"Koelan","convention_language":false,"id":null},{"lang":"English","names":"Asiatic Wild Ass, Kulan, Asian Wild Ass","convention_language":true,"id":null},{"lang":"Finnish","names":"Aasianvilliaasi","convention_language":false,"id":null},{"lang":"French","names":"Ane sauvage d'Asie, Hémione","convention_language":true,"id":null},{"lang":"German","names":"Asiatischer Halbesel, Asiatischer Wildesel","convention_language":false,"id":null},{"lang":"Italian","names":"Asino selvatico asiatico","convention_language":false,"id":null},{"lang":"Spanish","names":"Hemiono","convention_language":true,"id":null},{"lang":"Swedish","names":"halvåsna, asiatisk vildåsna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Seidensticker, J., Eisenberg, J. F. and Simons, R. 1984. The Tangjiahe, Wanglang, and Fengtongzhai Giant Panda reserves and biological conservation in the People's Republic of China. Biological Conservation: 28: 217-251.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct,reintroduced","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"introduced","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Includes \u003Ci\u003EEquus onager\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12085,"full_name":"Pipistrellus kuhlii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Pipistreli i Kuhlit","convention_language":false,"id":null},{"lang":"Croatian","names":"Bjelorubi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr jizní","convention_language":false,"id":null},{"lang":"Danish","names":"Kuhls flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Kuhls dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Kuhl's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Vahemere nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kuhlinpikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle de Kuhl","convention_language":true,"id":null},{"lang":"German","names":"Weißrandfledermaus","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello albolimbato","convention_language":false,"id":null},{"lang":"Maltese","names":"Pipistrell ta' Kuhl","convention_language":false,"id":null},{"lang":"Norwegian","names":"Kuhlflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik Kuhla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Kuhl","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de borde claro","convention_language":true,"id":null},{"lang":"Swedish","names":"Kuhls fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Rakhmatulina, I. K. 1983. [Ecology of \u003Ci\u003EVespertilio kuhlii\u003C/i\u003E Kuhl, 1819 in Azerbaijan.]. Byulletin' Mosk. Obshch. Ispyt. Prir. (Otd. Biol.): 88: 33-42.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Ivanova, T. J. and Popov, V. V. 1995. First record of \u003Ci\u003EPipistrellus kuhli\u003C/i\u003E (Kuhl, 1819) (Vespertilionidae, Chiroptera, Mammalia) from Bulgaria. Acta Zoologica Bulgarica: 47: 79-81.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Paunovic, M. and Marinkovic, S. 1998. Kuhl's pipistrelle \u003Ci\u003EPipistrellus kyhlii\u003C/i\u003E Kuhl, 1817 (Chiroptera, Vespertilionidae) - a new species in the mammal fauna of Serbia, with data on its Balkan distribution range, status and ecology. Zbornik Radova o Fauni Srbije: 5: 167-180.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kondratenko, O. V. 1999. [First finding of \u003Ci\u003EPipistrellus kuhli\u003C/i\u003E in the Lugansk OBlast (Eastern Ukraine).]. Vestnik Zoologii: 33: 96.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12086,"full_name":"Phoenicurus hodgsoni","author_year":"(Moore, 1854)","common_names":[{"lang":"English","names":"Hodgson's Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue de Hodgson","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12087,"full_name":"Acrocephalus scirpaceus","author_year":"(Hermann, 1804)","common_names":[{"lang":"Czech","names":"Rákosník obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Rørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Karekiet","convention_language":false,"id":null},{"lang":"English","names":"Common Reed-warbler, Reed Warbler, Eurasian Reed-warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rytikerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle effarvatte","convention_language":true,"id":null},{"lang":"German","names":"Teichrohrsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola","convention_language":false,"id":null},{"lang":"Polish","names":"Trzcinniczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-pequeno-dos-caniços","convention_language":false,"id":null},{"lang":"Russian","names":"Trostnikovaya Kamyshovka","convention_language":false,"id":null},{"lang":"Swedish","names":"Rörsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12088,"full_name":"Bos sauveli","author_year":"Urbain, 1937","common_names":[{"lang":"Danish","names":"kouprey","convention_language":false,"id":null},{"lang":"Dutch","names":"Kouprey","convention_language":false,"id":null},{"lang":"English","names":"Kouprey","convention_language":true,"id":null},{"lang":"Finnish","names":"Sauvelinhärkä","convention_language":false,"id":null},{"lang":"French","names":"Kouprey","convention_language":true,"id":null},{"lang":"German","names":"Kouprey","convention_language":false,"id":null},{"lang":"Italian","names":"Couprey","convention_language":false,"id":null},{"lang":"Spanish","names":"Toro cuprey, Kouprey","convention_language":true,"id":null},{"lang":"Swedish","names":"kouprey","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"extinct (?)","country_references":"Mackinnon, J. 1986. Bid to save the Kouprey. WWF Monthly Report April: 1986: 91-97.; Thouless, C. 1987. Kampuchean Wildlife - survival against the odds. Oryx: 21: 223-228.; Walston, J. 2001. Mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"extinct (?)","country_references":"Delacour, J. 1940. Liste provisoire de mammifères de l'Indochine française. Mammalia: 4: 20-29.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Gressitt, J. L. 1970. Biogeography of Laos. Pacific Insects Monograph: 24: 573-626.; Mackinnon, J. 1986. Bid to save the Kouprey. WWF Monthly Report April: 1986: 91-97.; Perez, M. C. 1983. Revisión de la sistemática de \u003Ci\u003EGazella (Nanger) dama\u003C/i\u003E. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 553-561; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Anon. 1983. Kouprey sighted. Oryx: 17: 45.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"extinct (?)","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Bos","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12089,"full_name":"Amaurornis marginalis","author_year":"(Hartlaub, 1857)","common_names":[{"lang":"Danish","names":"Stribet Rørvagtel","convention_language":false,"id":null},{"lang":"English","names":"Striped Crake","convention_language":true,"id":null},{"lang":"French","names":"Marouette rayée","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela culirroja","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Amaurornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aenigmatolimnas marginalis","author_year":"(Hartlaub, 1857)"},{"full_name":"Porzana marginalis","author_year":"Hartlaub, 1857"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EAenigmatolimnas marginalis\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12090,"full_name":"Culicicapa ceylonensis","author_year":"(Swainson, 1820)","common_names":[{"lang":"English","names":"Grey-headed Canary-Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à tête grise","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Culicicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12091,"full_name":"Mergellus albellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Smew","convention_language":true,"id":null},{"lang":"French","names":"Harle piette","convention_language":true,"id":null},{"lang":"Polish","names":"Bielaczek","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta chica","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ribara, I. 2006. Information sheet on Ramsar Wetlands (RIS): Labudovo Okno. http://www.wetlands.org/reports/ris/3RS005_RIS2006.pdf.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Carey, G. J. 1994. Smew at Mai Po: the first record for Hong Kong. Hong Kong Bird Report 1994: 115-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Murdoch, D., Andrews, I. and Hofland, R. 2004. The Syrian Wetland Expedition 2004: a summary. Sandgrouse: 26: 94-104.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Mergus albellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12093,"full_name":"Tringa nebularia","author_year":"(Gunnerus, 1767)","common_names":[{"lang":"Czech","names":"Vodouš šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Hvidklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Groenpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Common Greenshank, Greenshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier aboyeur","convention_language":true,"id":null},{"lang":"German","names":"Grünschenkel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Pantana","convention_language":false,"id":null},{"lang":"Polish","names":"Kwokacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-verde-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Claro","convention_language":true,"id":null},{"lang":"Swedish","names":"Gluttsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax nebularia","author_year":"Gunnerus, 1767"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12094,"full_name":"Macronectes giganteus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Dutch","names":"Reuzenstormvogel","convention_language":false,"id":null},{"lang":"English","names":"Southern Giant-Petrel, Southern Giant Petrel, Antarctic Giant-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel géant","convention_language":true,"id":null},{"lang":"Spanish","names":"Abanto-marino antártico","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Macronectes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria gigantea","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12095,"full_name":"Charadrius modestus","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Rufous-chested Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier d'Urville","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito Chileno","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Zonibyx modestus","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12096,"full_name":"Zoothera monticola","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Long-billed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive montagnarde","convention_language":true,"id":null},{"lang":"German","names":"Bergdrossel","convention_language":false,"id":null},{"lang":"Swedish","names":"långnäbbad trast","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12097,"full_name":"Sarothrura boehmi","author_year":"Reichenow, 1900","common_names":[{"lang":"English","names":"Streaky-breasted Flufftail","convention_language":true,"id":null},{"lang":"French","names":"Râle de Böhm","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela de Boehm","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Keith, S., Benson, C. W. and Irwin, M. P. S. 1970. The genus \u003Ci\u003ESarothrura\u003C/i\u003E (Aves, Rallidae). Bull. Amer. Mus. Nat. Hist.: 143: 1-84.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12098,"full_name":"Halichoerus grypus","author_year":"(Fabricius, 1791)","common_names":[{"lang":"Danish","names":"Gråsæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Grizje zeehond, Grijze zeehond","convention_language":false,"id":null},{"lang":"English","names":"Grey Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Hallhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Halli, Halli (harmaahylje)","convention_language":false,"id":null},{"lang":"French","names":"Phoque gris","convention_language":true,"id":null},{"lang":"German","names":"Kegelrobbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kúpos fóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Útselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca grigia","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Ilgasnukis ruonis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havert","convention_language":false,"id":null},{"lang":"Polish","names":"Foka szara","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca cinzenta, Foca-cinzenta","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråsäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Grifok","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Bowen, W.D., McMillan, J.I. and Wade Blanchard. 2007. Reduced population growth of Gray seals at Sable Island: evidence from pup production and age of primiparity. Marine Mammal Science: 23: 48-64.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Borkenhagen, P. 1994. Nachweise nichtheimische Robbenarten (\u003Ci\u003EOdobenus rosmarus\u003C/i\u003E, \u003Ci\u003EPhoca hispida\u003C/i\u003E, \u003Ci\u003EPhoca groenlandica\u003C/i\u003E, \u003Ci\u003ECystophora cristata\u003C/i\u003E) an den Kusten Schleswig-Holsteins. Säugetierkundliche Mitteilungen: 3: 661-671.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Halichoerus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12099,"full_name":"Catharus minimus","author_year":"(Lafresnaye, 1848)","common_names":[{"lang":"Danish","names":"Gråkindet Skovdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijswangdwerglijster","convention_language":false,"id":null},{"lang":"English","names":"Grey-cheeked Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à joues grises","convention_language":true,"id":null},{"lang":"Russian","names":"Maly Drozd","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"McNair, D. B., Massiah, E. B. and Frost, M. D. 1999. New and rare species of Nearctic landbird migrants during autumn for Barbados and the Lesser Antilles. Caribbean Journal of Science: 35: 46-53.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12100,"full_name":"Ammotragus lervia","author_year":"(Pallas, 1777)","common_names":[{"lang":"Danish","names":"mankefår","convention_language":false,"id":null},{"lang":"Dutch","names":"Manenschaap","convention_language":false,"id":null},{"lang":"English","names":"Uaddan, Aoudad, Barbary Sheep","convention_language":true,"id":null},{"lang":"Estonian","names":"Lakklammas","convention_language":false,"id":null},{"lang":"Finnish","names":"Algerianvuorikauris, Harjalammas","convention_language":false,"id":null},{"lang":"French","names":"Mouflon à manchettes, Aoudad","convention_language":true,"id":null},{"lang":"German","names":"Mähnenspringer, Mähnenschaf","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sörényes juh","convention_language":false,"id":null},{"lang":"Icelandic","names":"Hærusauður","convention_language":false,"id":null},{"lang":"Italian","names":"Pecora crinita, Ammotrago","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Berberinis avinas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mankesau","convention_language":false,"id":null},{"lang":"Polish","names":"Arui","convention_language":false,"id":null},{"lang":"Slovak","names":"Ovca hrivnatá","convention_language":false,"id":null},{"lang":"Spanish","names":"Arruí, Muflón del Atlas","convention_language":true,"id":null},{"lang":"Swedish","names":"Manfår","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Depierre, D. and Gillet, H. 1974. Le mouflon en Ennedi (Tchad). Bois et Forêts des Tropiques: 158: 3-11.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"introduced","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Shackleton, D. M. and the IUCN/SSC Caprinae Specialist Group (ed.) 1997. Wild sheep and goats and their relatives. Status survey and conservation action plan for Caprinae. IUCN. Gland, Switzerland and Cambridge, U.K.; Wilson, R. T. 1980. Wildlife in northern Darfur, Sudan: a review of its distribution and status in the recent past and at present. Biological Conservation: 17: 85-101.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced","country_references":"Baker, R. J., Bradley, L. C., Bradley, R. D., Dragoo, J. W., Engstrom, M. D., Hoffmann, R. S., Jones, C. A., Reid, F., Rice, D. W. and Jones, C. 2003. Revised checklist of North American mammals north of Mexico, 2003. Occasional Papers, Museum of Texas Tech University: 229: 23.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ammotragus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12103,"full_name":"Acipenser schrenckii","author_year":"Brandt, 1869","common_names":[{"lang":"English","names":"Amur Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon écussonné, Esturgeon de l'Amour","convention_language":true,"id":null},{"lang":"German","names":"Amurstör","convention_language":false,"id":null},{"lang":"Japanese","names":"Amûru-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr amurski","convention_language":false,"id":null},{"lang":"Russian","names":"Amurskii osetr","convention_language":false,"id":null},{"lang":"Swedish","names":"Amurstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Groombridge, B. 1993. 1994 IUCN Red List of Threatened Animals. IUCN. Gland, Switzerland and Cambridge, UK.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhuang, P. Kynard, B., Zhang, L., Zhang, T. Zhang, Z. and Li, D. 2002. Overview of the biology and aquaculture of Amur sturgeon (Acipenser schrenckii) in China. Journal of Applied Ichthyology: 18: 659-664.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Omoto, N., Maebayashi, M., Hara, A., Adachi, S. and Yamauchi, K. 2004. Gonadal maturity in wild sturgeons, Huso dauricus, Acipenser mikadoi, and A. schrenckii caught near Hokkaido, Japan. Environmental Biology of Fishes: 70: 381-391.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Groombridge, B. 1993. 1994 IUCN Red List of Threatened Animals. IUCN. Gland, Switzerland and Cambridge, UK.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12104,"full_name":"Procellaria cinerea","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Grey Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin gris","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela gris","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Adamastor cinereus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12105,"full_name":"Tadarida teniotis","author_year":"(Rafinesque, 1814)","common_names":[{"lang":"Albanian","names":"Lakuriqnate bishtlire","convention_language":false,"id":null},{"lang":"Croatian","names":"Sredozemni golorepaš","convention_language":false,"id":null},{"lang":"Czech","names":"Tadarida evropská","convention_language":false,"id":null},{"lang":"Danish","names":"Buldogflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Bulvleermuis","convention_language":false,"id":null},{"lang":"English","names":"European Free-tailed Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Laikõrv-kurdmokk","convention_language":false,"id":null},{"lang":"Finnish","names":"Buldoggilepakko","convention_language":false,"id":null},{"lang":"French","names":"Molosse de Cestoni","convention_language":true,"id":null},{"lang":"German","names":"Europäische Bulldoggfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy szelindekdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Fýlugrön","convention_language":false,"id":null},{"lang":"Italian","names":"Molosso del Cestoni","convention_language":false,"id":null},{"lang":"Maltese","names":"Tadarida","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bulldoggflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Molos europejski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rabudo","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago rabudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Veckläppad fladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Kuyruklu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Yavroyan, E. G. and Safarian, L. A. 1975. [Find of broad-eared wrinklelips (\u003Ci\u003ETadarida teniotis\u003C/i\u003E Rafinesque) in Armenia.]. Biologicheskii Zh. Armenii: 28: 90-93.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Ciechanowski, M., Sachanowicz, K., Rachwald, A. and Benda, P. 2005. First records of \u003Ci\u003ETadarida teniotis\u003C/i\u003E (Rafinesque, 1814) from Serbia and Montenegro and from Bosnia and Herzegovina. Mammalia: 69(2): 257-260","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Helgen, K. M. and Wilson, D. E. 2002. The bats of Flores, Indonesia, with remarks on Asian \u003Ci\u003ETadarida\u003C/i\u003E. Breviora: 511: 12.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Royal Society for the Conservation of Nature. 2008. Rapid assessment survey at jabal masuda protected area. ","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Borg, J. J., Violani, C. and Zava, B. 1997. The bat fauna of the Maltese Islands. Myotis: 35: 49-65.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Kock, D. 1987. \u003Ci\u003ETadarida teniotis\u003C/i\u003E (Rafinesque, 1814), zweiter Nachweis für Marokko, w-paläärktische Arealgrenzen und taxonomische Anmerkung (Chiroptera: Molossidae). Zeitschrift für Säugetierkunde: 52: 194-196.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Marques. J. T., Rainho, A., Carapuço, M. Oliverira, P. and Palmeirim, J. M. 2004. Foraging behaviour and habitat use by the European free-tailed bat \u003Ci\u003ETadarida teniotis\u003C/i\u003E. Acta Chiroptologica: 6: 99-110; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Beaucornu, J.-C., Bach-Hamba, D., Launay, H., Hellal, H. and Chastel, C. 1983. Deux chiroptères peu connus de Tunisie. Mammalia: 47: 127-128.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":12106,"full_name":"Camelus bactrianus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Kamel","convention_language":false,"id":null},{"lang":"English","names":"Wild Bactrian Camel","convention_language":true,"id":null},{"lang":"French","names":"Chameau de Bactriane, Chameau domestique","convention_language":true,"id":null},{"lang":"German","names":"Wildkamel","convention_language":false,"id":null},{"lang":"Polish","names":"Baktrian","convention_language":false,"id":null},{"lang":"Spanish","names":"Camello Bactriano","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Camelidae","genus_name":"Camelus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Camelus ferus","author_year":"Przewalski, 1878"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12107,"full_name":"Equus kiang","author_year":"Moorcroft, 1841","common_names":[{"lang":"Danish","names":"kiang","convention_language":false,"id":null},{"lang":"Dutch","names":"Kiang","convention_language":false,"id":null},{"lang":"English","names":"Kiang","convention_language":true,"id":null},{"lang":"French","names":"Kiang, Ane sauvage du Tibet","convention_language":true,"id":null},{"lang":"Spanish","names":"Kiang","convention_language":true,"id":null},{"lang":"Swedish","names":"kiang","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Osborne, B. C., Mallon, D. P. and Fraser, S. J. R. 1983. Ladakh, threatened stronghold of rare Himalayan mammals. Oryx: 17: 182-189.; St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Equus hemionus kiang","author_year":"Pallas, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EEquus hemionus\u003C/i\u003E (s.l.)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12108,"full_name":"Niltava macgrigoriae","author_year":"(Burton, 1836)","common_names":[{"lang":"English","names":"Small Niltava","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de McGrigor","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12109,"full_name":"Sarothrura elegans","author_year":"(A. Smith, 1839)","common_names":[{"lang":"English","names":"Buff-spotted Flufftail","convention_language":true,"id":null},{"lang":"French","names":"Râle ponctué","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela elegante","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Gallinula elegans","author_year":"A. Smith, 1839"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12110,"full_name":"Ficedula strophiata","author_year":"(Hodgson, 1837)","common_names":[{"lang":"English","names":"Rufous-gorgeted Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à bavette orange","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Wong, F. K. O. 1994. Rufous-gorgetted Flycatcher in Tai Po Kau: the first record for Hong Kong. Hong Kong Bird Report 1994 : 134-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12111,"full_name":"Spheniscus humboldti","author_year":"Meyen, 1834","common_names":[{"lang":"Danish","names":"Humboldt pingvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Humboldt-pinguin","convention_language":false,"id":null},{"lang":"English","names":"Humboldt Penguin, Peruvian Penguin","convention_language":true,"id":null},{"lang":"Finnish","names":"Perunpingviini","convention_language":false,"id":null},{"lang":"French","names":"Manchot de Humboldt","convention_language":true,"id":null},{"lang":"German","names":"Humboldtpinguin","convention_language":false,"id":null},{"lang":"Italian","names":"Sfenisco di Humboldt","convention_language":false,"id":null},{"lang":"Spanish","names":"Pingüino de Humboldt","convention_language":true,"id":null},{"lang":"Swedish","names":"Humboldtpingvin","convention_language":false,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Araya Modinger, B. 1983. A preliminary report on the status and distribution of the Humboldt Penguin in Chile. Pp. 125-140 In: Proceedings of the Jean Delacour/IFCB Symposium on breeding birds in captivity. North Hollywood, California: International Foundation for the Conservation of Birds .; Battistini, G. and Paredes, R. 1999. Nesting habits and nest characteristics of Humboldt penguins at Punta San Juan, Perú. Penguin Conservation: 12: 12-19.; Bingham, M. 1998. The penguins of South America and the Falkland Islands. Penguin Conservation: 11: 8-16.; Cheney, C. 1998. The current situation of the Humboldt penguin in Chile and Peru: a report from the population and habitat viability analysis meeting, part I. Penguin Conservation: 11: 4-9.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diebold, E.N., Grzybowksi, K., Michaels, M., Teare, J.A., Wallace, R. and Willis, M.J. 1994. Humbold Penguin (\u003Ci\u003ESphensicus humboldti\u003C/i\u003E) research in Chile. Penguin Conservation: 7: 2-3.; Glade, A. A. (ed.) 1988. Red list of Chilean terrestrial vertebrates. Impresimas Comerciales, for CONAF. Santiago.; Luna-Jorquera, G., Garthe, S., Sepulveda, F.G., Weichler, T. and Vasquez, J.A. 2000. Population size of Humboldt Penguins assessed by combined terrestrial and at-sea counts. Waterbirds: 23: 506-510.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Simeone, A. and Bernal, M. 2000. Effects of habitat modification on breeding seabirds: a case study in central Chile. Waterbirds: 23: 449-456.; Simeone, A. and Schlatter, R.P. 1998. Threats to a mixed-species colony of \u003Ci\u003ESpheniscus\u003C/i\u003E penguins in southern Chile. Colonial Waterbirds: 21: 418-421.; Simeone, A., Bernal, M. and Meza, J. 1999. Incidental mortality of Humboldt Penguins \u003Ci\u003ESpheniscus humboldti\u003C/i\u003E in gill nets, central Chile. Marine Ornithology: 27: 157-161.; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.; Wallace, R.S., Grzybowski, Diebold, E., Michaels, M.G., Teare, J.A. and Willis, M.J. 1999. Movements of Humboldt penguins from a breeding colony in Chile. Waterbirds: 22: 441-444.; Wilson, R.P., Wildies, M.P., Duffy, D.C., Araya, B. and Klages, N. 1989. Diving behaviour and prey of the Humboldt penguin. Journal of Ornithology: 130: 75-79.; Zavalaga, C.B. and Paredes, R. 1997. Humboldt penguins at Punta San Juan, Peru. Penguin Conservation: 10: 6-8.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ramyle, J. 1988. [Confirmation of the presence of \u003Ci\u003ESpheniscus humboldti\u003C/i\u003E Meyen (Aves: Spheniscidae) in Colombia.]. Trianea (Bogota): 1: 141-143.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Battistini, G. and Paredes, R. 1999. Nesting habits and nest characteristics of Humboldt penguins at Punta San Juan, Perú. Penguin Conservation: 12: 12-19.; Bingham, M. 1998. The penguins of South America and the Falkland Islands. Penguin Conservation: 11: 8-16.; Cheney, C. 1998. The current situation of the Humboldt penguin in Chile and Peru: a report from the population and habitat viability analysis meeting, part I. Penguin Conservation: 11: 4-9.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hays, C. 1984. The Humboldt Penguin in Peru. Oryx: 18: 92-95.; Hays, C. 1986. Effects of the 1982-83 El Niño on Humboldt Penguin colonies in Peru. Biological Conservation: 36: 169-180.; Koepke, M. 1970. The birds of the department of Lima. Livingston Publishing Company. Wynnewood, Pennsylvania.; Paredes, R. and Zavalaga, C.B. 1998. Overview of the effects of El Niño 1997-1998 on humboldt penguins and other seabirds at Punta San Juan, Peru. Penguin Conservation: 11: 5-16.; Paredes, R. and Zavalaga, C.B. 2001. Nesting sites and nest types as important factors for the conservation of Humboldt penguins (\u003Ci\u003ESpheniscus humboldti\u003C/i\u003E). Biological Conservation: 100: 199-205.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Zavalaga, C.B. and Paredes, R. 1997. Humboldt penguins at Punta San Juan, Peru. Penguin Conservation: 10: 6-8.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sphenisciformes","class_name":"Aves","family_name":"Spheniscidae","genus_name":"Spheniscus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12114,"full_name":"Ciconia ciconia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Hvid stork","convention_language":false,"id":null},{"lang":"Dutch","names":"Ooievaar","convention_language":false,"id":null},{"lang":"English","names":"White Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Kattohaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißstorch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehér gólya","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna bianca","convention_language":false,"id":null},{"lang":"Polish","names":"Bocian biały","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cegonha-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Белый аист","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña blanca, Ciguëña común, Cigüeña común","convention_language":true,"id":null},{"lang":"Swedish","names":"Vit stork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ikonga, J. M. and Bockandza, P. 2001. Première observation de la Cigogne blanche Ciconia ciconia au Congo-Brazzaville. Bulletin of the African Bird Club: 8: 61.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea ciconia","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12115,"full_name":"Aythya affinis","author_year":"(Eyton, 1838)","common_names":[{"lang":"Danish","names":"Lille Bjergand","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Topper","convention_language":false,"id":null},{"lang":"English","names":"Lesser Scaup","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à tête noire, Petit Fuligule","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón bola","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula affinis","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12116,"full_name":"Rhinolophus mehelyi","author_year":"Matschie, 1901","common_names":[{"lang":"Croatian","names":"Meheljev potkovnjak","convention_language":false,"id":null},{"lang":"Danish","names":"Mehelys hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Mehely's hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Mehely's Horseshoe Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Meheli sagarnina","convention_language":false,"id":null},{"lang":"Finnish","names":"Mehelynhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe de Mehely","convention_language":true,"id":null},{"lang":"German","names":"Mehely-Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Méhely-patkósdenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo di Mehely","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mehelyhesteskonese","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-mourisco","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-lui-Méhely","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago mediano de herradura, Murciélago mediano de herredura","convention_language":true,"id":null},{"lang":"Swedish","names":"Mehelys hästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Sharifi, M. 2004. Postnatal growth and age estimation in the Mehely`s Horseshoe Bat (\u003Ci\u003ERhinolophus mehelyi\u003C/i\u003E). Acta Chiropterologica: 6: 155-161","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12117,"full_name":"Stercorarius longicaudus","author_year":"Vieillot, 1819","common_names":[{"lang":"Czech","names":"Chaluha malá","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Kjove","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinste Jager","convention_language":false,"id":null},{"lang":"English","names":"Long-tailed Skua, Long-tailed Jaeger","convention_language":true,"id":null},{"lang":"Finnish","names":"Tunturikihu","convention_language":false,"id":null},{"lang":"French","names":"Labbe à longue queue, Labbe à longue queue","convention_language":true,"id":null},{"lang":"German","names":"Falkenraubmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nyílfarkú halfarkas","convention_language":false,"id":null},{"lang":"Italian","names":"Labbo codalunga","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fjelljo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Moleiro-de-cauda-comprida","convention_language":false,"id":null},{"lang":"Spanish","names":"Págalo Rabero","convention_language":true,"id":null},{"lang":"Swedish","names":"Fjällabb","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Ryan, P. G. 1989. Common Nighthawk \u003Ci\u003EChordeiles minor\u003C/i\u003E and new records of seabirds from Tristan da Cunha and Gough Islands. Bulletin of the British Ornithologists' Club: 109: 147-149.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Stercorariidae","genus_name":"Stercorarius","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12118,"full_name":"Megaptera novaeangliae","author_year":"(Borowski, 1781)","common_names":[{"lang":"English","names":"Hump Whale, Bunch, Hunchbacked Whale, Humpback Whale","convention_language":true,"id":null},{"lang":"French","names":"Rorqual à bosse, Jubarte, Rorqual du Cap, Mégaptère, Baleine à taquet, Baleine à bosse","convention_language":true,"id":null},{"lang":"Norwegian","names":"Knølhval","convention_language":false,"id":null},{"lang":"Portuguese","names":"Baleia-de-bossa","convention_language":false,"id":null},{"lang":"Spanish","names":"Rorcual jorobado, Jorobada, Gubarte, Ballena jorobada","convention_language":true,"id":null},{"lang":"Swedish","names":"puckelval, knölval","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Paterson, R., Paterson, P and Cato, D. H. 1994. The status of Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E in East Australia 30 years after whaling. Biological Conservation: 70: 135-142.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Stone, G. S., Katona, S. K. and Tucker, E. B. 1987. History, migration and present status of Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E at Bermuda. Biological Conservation: 42: 133-145.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinto de Sa Alves, L.C., Andriolo, A., Zerbini, A.N., Pizzorno, J.L.A. and Clapham, P.J. 2009. Record of feeding by humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) in tropical waters off Brazil. Marine Mammal Science: 25: 416-419.; Wedekin, L.L., Neves, M.C., Marcondes, M.C.C., Baracho, C., Rossi-Santos, M.R. and Engel, M.H. 2010. Site fidelity and movements of humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) on the Brazilian breeding ground, southwestern Atlantic. Marine Mammal Science: 26: 787-802.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Hauser, N., Zerbini, A.N., Geyer, Y., Heide-Jorgensen, M.-P. and Clapham, P. 2010. Movements of satellite-monitored humpback whales, \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E, from the Cook Islands. Marine Mammal Science: 26: 679-685.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Rasmussen, K., Palacios, D.M., Calambokidis, J., Saborío, M.T., Dalla Rosa, L., Secchi, E.R., Steiger, G.H., Allen, J.M. and Stone, G.S. 2007. Southern Hemisphere humpback whales wintering off Central America: insights from water temperature into the longest mammalian migration. \u003Ci\u003EBiology letters\u003C/i\u003E: 3(3): 302–5.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Rosenbaum, H.C., Ersts, P.J., Razafindrakoto, Y., Sounguet, G., Pomilla, C., Ngouessono, S., Rasoamampianina, V. and White, L. 2002. Population characteristics, distribution, and relative abundance of humpback whales off the coasts of Madagascar and Gabon: an update on recent and planned research. Paper SC/54/H20 presented to the IWC Scientific Committee, April 2002 (unpublished). 13; Walsh, P. D., Fay, J. M., Gulick, S. and Sounguet, G. P. 2000. Humpback whale activity near Cap Lopez, Gabon. Journal of Cetacean Research and Management: 2: 63-67.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.; Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Rosenbaum, H.C., Ersts, P.J., Razafindrakoto, Y., Sounguet, G., Pomilla, C., Ngouessono, S., Rasoamampianina, V. and White, L. 2002. Population characteristics, distribution, and relative abundance of humpback whales off the coasts of Madagascar and Gabon: an update on recent and planned research. Paper SC/54/H20 presented to the IWC Scientific Committee, April 2002 (unpublished). 13","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Payne, J., Francis, C. M. and Phillipps, K. 1985. A field guide to the mammals of Borneo. The Sabah Society/WWF Malaysia.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Avolio, M., Ersts, P., Pomilla, C., Vely, M., Bastid, J.J., Wendling, B., Seitre, R., Seitre, J., Darmmangeat, P., Collin-Omnes, V., et al. 2002. Humpback whale distribution and marine mammal diversity in the waters of Mayotte, (Comores Archipelago) in the Mozambique Channel. Paper SC/54/H18 presented to the IWC Scientific Committee, April 2002 (unpublished). 20","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Lagerquist, B.A., Mate, B.R., Ortega-Ortiz, J.G. and Winsor, M. 2008. Migratory movements and surfacing rates of humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) satellite tagged at Socorro. Marine Mammal Science: 24: 815-830.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Findlay, K. P., Best, P. B., Peddemors, V. M. and Gove, D. 1994. The distribution and abundance of humpback whales on their southern and central Mozambique winter grounds. Reports of the International Whaling Commission: 44: 311-320.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. and Barros, N. B. 1994. Additional cetacean records for the Leeward Dutch Antilles. Marine Mammal Science: 10: 359-368.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Gill, P. C. 1994. Observations on Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E in New Caledonian waters during 1991-1993. Biological Conservation: 70: 211-218.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, M. and Findlay, K. 2003. A note on re-sights of individually identified humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) off the coast of Oman. Paper SC/55/O10 presented to the International Whaling Commission Scientific Committee, May-June 2003, Berlin, Germany. ; Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ; Rosenblaum, H.C., Collins, T., Minton, G., Baldwin, R., Glaberman, S., Findlay, K.P. and Best, P. 2002. Preliminary analysis of mtDNA variation among humpback whales off the coast of Oman and their relationships to whales from wintering grounds in the southwestern Indian Ocean. Paper SC/54/H4 presented to the International Whaling Commission Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Skora, K. E. 1991. Notes on Cetacea observed in the Polish Baltic Sea: 1979-1990. Aquatic Mammals: 17: 67-70.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1980. A world review of the Cetacea. Nature Conservancy Council. Peterborough.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Johnston, D.W., Chapla, M.E., Williams, L.E. and Mattila, D.K. 2007. Identification of humpback whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E wintering habitat in the Northwestern Hawaiian Islands using spatial habitat modeling. Endangered Species Research: 3: 249-257.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1984. Registro de \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781) (Cetacea, Balaenopteridae) para aguas del Uruguay. Bol. Soc. Zool. Uruguay, Segunda Epoca: 2: 36-40.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).; Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Megaptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12119,"full_name":"Thalassarche carteri","author_year":"(Rothschild, 1903)","common_names":[{"lang":"English","names":"Indian Yellow-nosed Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea chlororhynchos","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea chlororhynchos\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12120,"full_name":"Phaethon lepturus","author_year":"Daudin, 1802","common_names":[{"lang":"English","names":"White-tailed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabijunco menor","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Dufourny, H. 1999. White-tailed Tropicbird in Cape Verde Islands in February 1999. Dutch Birding: 21: 254-255.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12121,"full_name":"Monarcha melanopsis","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Black-faced Monarch","convention_language":true,"id":null},{"lang":"French","names":"Monarque à face noire","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Monarcha","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12123,"full_name":"Acipenser mikadoi","author_year":"Hilgendorf, 1892","common_names":[{"lang":"English","names":"Sakhalin Sturgeon","convention_language":true,"id":null},{"lang":"Japanese","names":"Chôzame","convention_language":false,"id":null},{"lang":"Swedish","names":"sakhalinstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Honma, Y. 1988. Records and distributional notes on the sturgeons along the coast of Japanese Archipelago. Bulletin of the Biogeographical Society of Japan: 43: 51-55.; Omoto, N., Maebayashi, M., Hara, A., Adachi, S. and Yamauchi, K. 2004. Gonadal maturity in wild sturgeons, Huso dauricus, Acipenser mikadoi, and A. schrenckii caught near Hokkaido, Japan. Environmental Biology of Fishes: 70: 381-391.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Artyukhin, E. N. and Andronov, A. E. 1990. A morphological study of the Green Sturgeon \u003Ci\u003EAcipenser medirostris\u003C/i\u003E (Chondostei, Acipenseridae) from the Tunmin (Datta) River and some aspects of the ecology and zoogeography of Acipenseridae. Journal of Ichthyology: 30: 44501.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12124,"full_name":"Muscicapa muttui","author_year":"(Layard, 1854)","common_names":[{"lang":"English","names":"Brown-breasted Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche muttui","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12125,"full_name":"Larus glaucoides","author_year":"Meyer, 1822","common_names":[{"lang":"Czech","names":"Racek polární","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Burgemeester","convention_language":false,"id":null},{"lang":"English","names":"Iceland Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Grönlanninlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland à ailes blanches, Goéland arctique","convention_language":true,"id":null},{"lang":"German","names":"Polarmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano d'Islanda","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa polarna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-polar","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Groenlandesa","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitvingad trut","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus argentatus thayeri","author_year":"Pontoppidan, 1763"},{"full_name":"Larus leucopterus","author_year":"Faber"},{"full_name":"Larus thayeri","author_year":"W. S. Brooks, 1915"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12126,"full_name":"Anser albifrons","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Blisgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Kolgans","convention_language":false,"id":null},{"lang":"English","names":"Greater White-fronted Goose, White-fronted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Tundrahanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie rieuse","convention_language":true,"id":null},{"lang":"German","names":"Bläßgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy lilik","convention_language":false,"id":null},{"lang":"Italian","names":"Oca lombardella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-grande-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Beloloby Gus","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar careto","convention_language":true,"id":null},{"lang":"Swedish","names":"Bläsgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Saghier, O., Porter, R. F. and Stanton, D. B. 1997. The first White-fronted Goose Anser albifrons in Yemen. Sandgrouse: 19: 142.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Branta albifrons","author_year":"Scopoli, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12127,"full_name":"Calidris minuta","author_year":"(Leisler, 1812)","common_names":[{"lang":"Czech","names":"Jespák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Little Stint","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkusirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau minute","convention_language":true,"id":null},{"lang":"German","names":"Zwergstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apró partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus malutki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-pequeno","convention_language":false,"id":null},{"lang":"Russian","names":"Kulik Vorobey","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Menudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Småsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia minuta","author_year":"(Leisler, 1812)"},{"full_name":"Tringa minuta","author_year":"Leisler, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12128,"full_name":"Macronectes halli","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Hall's Giant-Petrel, Northern Giant Petrel, Northern Giant-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel de Hall","convention_language":true,"id":null},{"lang":"Spanish","names":"Abanto-marino subantártico, Petrel Gigante del Norte","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martuscelli, P., Olmos, F. and Silva e Silva, R. 1995. First record of the Northern Giant Petrel Macronectes halli for Brazilian waters. Bulletin of the British Ornithologists' Club: 115: 187-188.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Macronectes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Macronectes giganteus halli","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12129,"full_name":"Ficedula narcissina","author_year":"(Temminck, 1836)","common_names":[{"lang":"Dutch","names":"Narcisvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Narcissus Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche narcisse","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12130,"full_name":"Charadrius veredus","author_year":"Gould, 1848","common_names":[{"lang":"English","names":"Oriental Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier oriental","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito Asiático grande","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eupoda veredus","author_year":"(Gould, 1848)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12131,"full_name":"Globicephala macrorhynchus","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Pacific Pilot Whale, Short-finned Pilot Whale","convention_language":true,"id":null},{"lang":"French","names":"Globicéphale tropical","convention_language":true,"id":null},{"lang":"Spanish","names":"Caldrón negro","convention_language":true,"id":null},{"lang":"Swedish","names":"kortfenad grindval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"MacLeod, C.D., Hauser, N. and Peckham, H. 2004. Diversity, relative density and structure of the cetacean community in summer months east of Great Abaco, Bahamas. Journal of the Marine Biological Association of the United Kingdom: 84: 469-474.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Miragaia, J. M. and Paiva Filho, A. M. 1989. First record of the short-finned pilot whale \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E Gray, 1846, for the southwestern Atlantic. Marine Mammal Science: 5: 387-391.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Stacey, P. J. and Baird, R. W. 1993. Status of the Short-finned Pilot Whale, \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E in Canada. Canadian Field Naturalist: 107: 481-489.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Casinos, A. and Bou, J. 1980. On a massive stranding of short-finned pilot whale, \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E Gray, 1846, on Margarita Island (Venezuela). Scientific Rep. Whales Res. Inst., Tokyo: 32: 145-148.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Globicephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":12132,"full_name":"Terpsiphone atrocaudata","author_year":"(Eyton, 1839)","common_names":[{"lang":"English","names":"Japanese Paradise-Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Tchitrec du Japon","convention_language":true,"id":null},{"lang":"German","names":"Prinzenparadiesschnäpper","convention_language":false,"id":null},{"lang":"Swedish","names":"japansk paradisflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12133,"full_name":"Sousa chinensis","author_year":"(Osbeck, 1765)","common_names":[{"lang":"English","names":"Indo-pacific Humpbacked Dolphin, Chinese White Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin à bosse de l'Indo-Pacifique","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo asiático, Delfín blanco de China","convention_language":true,"id":null},{"lang":"Swedish","names":"deltadelfin, puckeldelfin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Parra, G. J., Corkeron, P. J. and Marsh, H. 2004. The Indo-Pacific Humpback Dolphin, \u003Ci\u003ESousa chinensis\u003C/i\u003E (Osbeck, 1765), in Australian waters: a summary of current knowledge. Aquatic Mammals: 30: 197-206.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Chen, T., Hung, S.K., Qiu, Y., Jia, X. and Jefferson, T.A. 2010. Distribution, abundance, and individual movements of Indo-Pacific humpback dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in the Pearl River Estuary, China. Mammalia: 74: 117-125.; Jefferson, T. A. and Hung, S. K. 2004. A review of the status of the Indo-Pacific Humpback Dolphin (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Chinese waters. Aquatic Mammals: 30: 149-158.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Jefferson, T. A. and Hung, S. K. 2004. A review of the status of the Indo-Pacific Humpback Dolphin (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Chinese waters. Aquatic Mammals: 30: 149-158.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Sutaria, D. and Jefferson, T. A. 2004. Records of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E, Osbeck, 1765) along the coasts of India and Sri Lanka: an overview. Aquatic Mammals: 30: 125-136.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Robinson, H. C. and Kloss, C. B. 1917. List of the mammals of Sumatra. Journal of the Federated Malay States Museums: 8: 73-80.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Razafindrakoto, Y., Andrianarivelo, N. and Rosenbaum, H. C. 2004. Sightings, catches, and other records of Indo-Pacific Humpback Dolphins in the coastal waters of Madagascar. Aquatic Mammals: 30: 103-110.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Guissamulo, A. and Cockcroft, V. G. 2004. Ecology and population estimates of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Maputo Bay, Mozambique. Aquatic Mammals: 30: 94-102.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; Gladstone, W. and Fisher, P. R. 1999. Status of cetaceans in the Farasan Islands Marine Protected Area (Red Sea). European Research on Cetaceans: 13: 232-235.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Karczmarski, L. 2000. Conservation and management of humpback dolphins: the South African perspective. Oryx: 34: 207-216.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Sutaria, D. and Jefferson, T. A. 2004. Records of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E, Osbeck, 1765) along the coasts of India and Sri Lanka: an overview. Aquatic Mammals: 30: 125-136.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Carwadine, M. 2000. Whales, dolphins and porpoises. Dorling Kindersley. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Wang, J. Y., Hung, S. K. and Yang, S.-C. 2004. Records of Indo-Pacific Humpback Dolphins, \u003Ci\u003ESousa chinensis\u003C/i\u003E (Osbeck, 1765), from the waters of western Taiwan. Aquatic Mammals: 30: 189-196.; Wang, J. Y., Yang, S. C., Hung, S. K. and Jefferson, T. A. 2007. Distribution, abundance and conservation status of the eastern Taiwan Strait population of Indo-Pacific humpback dolphins, \u003Ci\u003ESousa chinensis\u003C/i\u003E. Mammalia: 71: 157-165.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Howell, K. M. and Pearson, D. M. 1977. Two records of dolphins from Tanzania. East Afr. Wildl. J.: 15: 167-168.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sousa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12135,"full_name":"Phylloscopus tenellipes","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Pale-legged Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à pattes claires","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12136,"full_name":"Numenius minutus","author_year":"Gould, 1841","common_names":[{"lang":"Dutch","names":"Kleine Regenwulp","convention_language":false,"id":null},{"lang":"English","names":"Pigmy Curlew, Little Whimbrel, Little Curlew, Siberian Baby Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis nain","convention_language":true,"id":null},{"lang":"Russian","names":"Kronschnep-malyutka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito menor, Zarapito chico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1993. Little Curlew (\u003Ci\u003ENumenius minutus\u003C/i\u003E), a new species of bird for Thailand. Natural History Bulletin of the Siam Society: 41: 73-74.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12137,"full_name":"Tringa erythropus","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Vodouš tmavý","convention_language":false,"id":null},{"lang":"Danish","names":"Sortklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ruiter","convention_language":false,"id":null},{"lang":"English","names":"Spotted Redshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustaviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier arlequin","convention_language":true,"id":null},{"lang":"German","names":"Dunkelwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füstös cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Totano moro","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-vermelha-escuro","convention_language":false,"id":null},{"lang":"Russian","names":"Okthosky Ulit","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Oscuro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fisher, D. 1998. The first record of Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E for South America. Cotinga: 9: 21.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax erythropus","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12138,"full_name":"Phylloscopus ibericus","author_year":"Ticehurst, 1937","common_names":[{"lang":"English","names":"Iberian Chiffchaff","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12139,"full_name":"Tadorna tadorna","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Gravand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brandgans, Bergeend","convention_language":false,"id":null},{"lang":"English","names":"Shelduck, Common Shelduck","convention_language":true,"id":null},{"lang":"Finnish","names":"Ristisorsa","convention_language":false,"id":null},{"lang":"French","names":"Tadorne de Belon","convention_language":true,"id":null},{"lang":"German","names":"Brandgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös ásólúd","convention_language":false,"id":null},{"lang":"Italian","names":"Volpoca","convention_language":false,"id":null},{"lang":"Polish","names":"Ohar","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-branco","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarro blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Gravand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas tadorna","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12140,"full_name":"Calidris fuscicollis","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Hvidrygget Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonapartes Strandloper","convention_language":false,"id":null},{"lang":"English","names":"White-rumped Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à croupion blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos culiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P., Franchimont, J., Thévenot, M. and the Moroccan Rare Birds Committee. 2002. Rare birds in Morocco: report of the Moroccan Rare Birds Committee (1998-2000). Bulletin of the African Bird Club: 9: 122-133.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Sikora, A. 1998. [First record of White-rumped Sandpiper \u003Ci\u003ECalidris fuscicollis\u003C/i\u003E in Poland.]. Notatki Ornitologiczne: 39: 263-265.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fraser, M. W. 1984. New and rarely recorded species from the Tristan da Cunha group. Bulletin of the British Ornithologists' Club: 104: 154-155.; Ryan, P. G. 1989. Common Nighthawk \u003Ci\u003EChordeiles minor\u003C/i\u003E and new records of seabirds from Tristan da Cunha and Gough Islands. Bulletin of the British Ornithologists' Club: 109: 147-149.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Browne, S. 1997. The first White-rumped Sandpiper Calidris fuscicollis in Turkey and the Middle East. Sandgrouse: 19: 146-147.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia fuscicollis","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa fuscicollis","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12141,"full_name":"Balaenoptera acutorostrata","author_year":"Lacepede, 1804","common_names":[{"lang":"Dutch","names":"Dwergvinvis","convention_language":false,"id":null},{"lang":"English","names":"Little Piked Whale, Lesser Rorqual, Minke Whale, Northern Minke Whale","convention_language":true,"id":null},{"lang":"French","names":"Petit rorqual, Baleinoptère à museau pointu","convention_language":true,"id":null},{"lang":"German","names":"Minkewal, Zwergwal","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena minke, Rorcual menor","convention_language":true,"id":null},{"lang":"Swedish","names":"vikval","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Peilie, W. 1985. Studies on the breeding habits of the Minke Whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E) in the Yellow Sea. \u003Ci\u003EChinese Journal of Oceanography and Limnology\u003C/i\u003E: 3: 37–44.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Verriopoulou, A., Tounta, E. and Dendrinos, P. 2001. First report of a minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacèpède, 1804) in Hellenic waters. Aquatic Mammals: 27: 137-139.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Walker, D. 1987. Miscellaneous. Annual Report, Calf of Man Bird Observatory: 1986: 55.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. The minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacépède) in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 205-206.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A.N. and Madon, B. 2007. Bryde’s whales (\u003Ci\u003EBalaenoptera\u003C/i\u003E cf. \u003Ci\u003Ebrydei\u003C/i\u003E Olsen 1913) in the Hauraki Gulf and northeastern New Zealand waters. New Zealand Department of Conservation. Wellington. 24pp","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Olsen, E. and Holst, J.C. 2001. A note on common minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E ) diets in the Norwegian Sea and the North Sea. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 3(2): 179–183.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Reiner, F. 1980. Nota sobre a ocorrencia de um roal, \u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacepède 1840, no porto de Sines. Memorias Mus. Mar. (Zool.): 1: 1-8.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Song, K.-J., Kim, Z.G., Zhang, C.I. and Kim, Y.H. 2010. Fishing gears involved in entanglements of minke whales (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E) in the East Sea of Korea. Marine Mammal Science: 26: 282-295.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chou, L.-S. 1994. Guide to the cetaceans of Taiwan. National Museum of Marine Biology. Taipei.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12142,"full_name":"Amazona tucumana","author_year":"(Cabanis, 1885)","common_names":[{"lang":"Danish","names":"Tucuman-amazone","convention_language":false,"id":null},{"lang":"Dutch","names":"Tucumanamazone","convention_language":false,"id":null},{"lang":"English","names":"Alder Parrot, Tucuman Amazon, Tucuman Parrot","convention_language":true,"id":null},{"lang":"Finnish","names":"Rubiiniamatsoni","convention_language":false,"id":null},{"lang":"French","names":"Amazone de Tucuman","convention_language":true,"id":null},{"lang":"German","names":"Tucumanamazone","convention_language":false,"id":null},{"lang":"Italian","names":"Amazzonia di Tucuman","convention_language":false,"id":null},{"lang":"Spanish","names":"Amazona tucumana, Loro alisero","convention_language":true,"id":null},{"lang":"Swedish","names":"tucumanaamazon","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Krabbe, N., Poulsen, B. O., Frolander, A., Hinojosa B., M. and Quiroga O., C. 1996. Birds of montane forest fragments in Chuquisaca Department, Bolivia. Bulletin of the British Ornithologists' Club: 116: 230-243.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Rivera, L., Rojas Llanos, R., Politi, N., Hennessey, B. and Bucher, E.H. 2010. The Near Threatened Tucumán parrot \u003Ci\u003EAmazona tucumana\u003C/i\u003E in Bolivia: insights for a global assessment. Oryx: 44: 110-113.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Psittaciformes","class_name":"Aves","family_name":"Psittacidae","genus_name":"Amazona","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12143,"full_name":"Carcharodon carcharias","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Afrikaans","names":"Witdoodshaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen njeringrenes","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb, Wahsh, Kalb bahr","convention_language":false,"id":null},{"lang":"Catalan","names":"Tauró blanc","convention_language":false,"id":null},{"lang":"Danish","names":"Blå haj","convention_language":false,"id":null},{"lang":"Dutch","names":"Wittehaai, Mensen haai, Witte haai","convention_language":false,"id":null},{"lang":"English","names":"White Pointer, White-death, Mango-taniwha, White Shark, Man-eater Shark, Great White Shark, Mango-ururoa","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkohai","convention_language":false,"id":null},{"lang":"French","names":"Requin blanc, Lamie, Mangeur d'hommes, Grand requin blanc","convention_language":true,"id":null},{"lang":"German","names":"Menschenhai, Weißhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Karish lava","convention_language":false,"id":null},{"lang":"Italian","names":"Pescecane, Squalo bianco","convention_language":false,"id":null},{"lang":"Japanese","names":"Hohojirozame","convention_language":false,"id":null},{"lang":"Maltese","names":"Huta tax-Xmara, Kelb Abjad, Kelb il - bahar Abjad, Kelb il-bahar abjad, Silfjun","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Skylópsaro sbríllios, Sbrillias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hvithai","convention_language":false,"id":null},{"lang":"Papiamento","names":"Tribon blancu","convention_language":false,"id":null},{"lang":"Polish","names":"Zarlacz ludojad","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-de-São-Tomé, Tubarão, Tubarao de Sao Tomé, Tubarão de São Tome, Tubarão-branco, Tubarão branco","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin mancator de oameni, Rechin alb","convention_language":false,"id":null},{"lang":"Russian","names":"Geldevaja akula","convention_language":false,"id":null},{"lang":"Serbian","names":"Velika bela ajkula, Pas modrulj","convention_language":false,"id":null},{"lang":"Spanish","names":"Jaquetón de ley, Jaquetón, Jaquetón blanco, Devorador de hombres, Marrajo, Tiburón blanco, Tiburón antropófago","convention_language":true,"id":null},{"lang":"Swedish","names":"Vithaj, jätte-håbrand","convention_language":false,"id":null},{"lang":"Tagalog","names":"Pating","convention_language":false,"id":null},{"lang":"Turkish","names":"Karkarias","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Balart, E. F., Castro-Aguirre, J. L., Aurioles-Gamboa, D., García-Rodríguez, F. and Villavicencio-Garayzar, C. 1995. Adiciones a la ictiofauna de Bahía de la Paz, Baja California Sur, México. Hidrobiológia: 5(1-2): 79-85.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Soldo, A. and Jardas, I. 2002. Occurrence of great white shark, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E (Linnaeus, 1758) and basking shark, \u003Ci\u003ECetorhinus maximus\u003C/i\u003E (Gunnerus, 1758) in the Eastern Adriatic and their protection. Periodicum Biologorum: 104: 195-201.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Johnson, R., Bester, M.N., Dudley, S.F.J., Oosthuizen, W.H., Meyer, M., Hancke, L. and Gennari, E. 2009. Coastal swimming patterns of white sharks (\u003Ci\u003ECarcharodon carcharias\u003C/i\u003E) at Mossel Bay, South Africa. Environmental Biology of Fishes: 85: 189-200.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Duffy, C. Francis, M. Manning, M. and Bonfil, R. 2012. Regional population connectivity, oceanic habitat, and return migration revealed by satellite tagging of White Sharks, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E, at New Zealand. In: Global Perspectives on the Biology and Life History of the White Shark. New York: CRC.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Weng, K.C., Boustany, A.M., Pyle, P., Anderson, S.D., Brown, A. and Block, B.A. 2007. Migration and habitat of white sharks (\u003Ci\u003ECarcharodon carcharias\u003C/i\u003E) in the eastern Pacific Ocean. Marine Biology: 152: 877-894.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Huu Phung andTran Hoai Lan. 1994. Checklist of marine fishes in Viet Nam. Science and Technics Publishing House, Viet Nam. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Carcharodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":12145,"full_name":"Myotis mystacinus","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu me mustage","convention_language":false,"id":null},{"lang":"Croatian","names":"Brkati šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr vousatý","convention_language":false,"id":null},{"lang":"Danish","names":"Skægflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Whiskered Bat, Whiskered Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Habelendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Viiksiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Kleine Bartfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bajuszos denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Skeggblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio mustacchino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Skjeggflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-bigodes","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier fúzatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago bigotudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mustaschfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Ernits, P. 1990. A survey of the species composition of Estonian mammals. Eesti Loodus: 3: 167-171.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"Zagorodniuk, I. 1999. [Erroneous records of \u003Ci\u003EMyotis mystacinus\u003C/i\u003E from Ukraine.]. Vestnik Zoologii: 33: 110.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12146,"full_name":"Phoca vitulina","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Spættet sæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Gewone zeehond","convention_language":false,"id":null},{"lang":"English","names":"Common Seal, Harbour Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Randalhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Kirjohylje","convention_language":false,"id":null},{"lang":"French","names":"Phoque veau-marin","convention_language":true,"id":null},{"lang":"German","names":"Seehund","convention_language":false,"id":null},{"lang":"Hungarian","names":"Borjúfóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Landselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Paprastasis ruonis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Steinkobbe","convention_language":false,"id":null},{"lang":"Polish","names":"Foka pospolita","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca-vitulina, Foca","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca común, Foca moteada","convention_language":true,"id":null},{"lang":"Swedish","names":"Knubbsäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Liman focu","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Borkenhagen, P. 1994. Nachweise nichtheimische Robbenarten (\u003Ci\u003EOdobenus rosmarus\u003C/i\u003E, \u003Ci\u003EPhoca hispida\u003C/i\u003E, \u003Ci\u003EPhoca groenlandica\u003C/i\u003E, \u003Ci\u003ECystophora cristata\u003C/i\u003E) an den Kusten Schleswig-Holsteins. Säugetierkundliche Mitteilungen: 3: 661-671.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Small, R.J., Boveng, P.L., Byrd, G.V. and Withrow, D.E. 2008. Harbor seal population decline in the Aleutian Archipelago. Marine Mammal Science: 24: 845-863.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Phoca","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Baltic and Wadden Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/10/1991","name":"Wadden Sea Seals"}]},{"id":12147,"full_name":"Falco naumanni","author_year":"Fleischer, 1818","common_names":[{"lang":"Danish","names":"Lille tårnfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Torenvalk","convention_language":false,"id":null},{"lang":"English","names":"Lesser Kestrel","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutuulihaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon crécerellette","convention_language":true,"id":null},{"lang":"German","names":"Rötelfalke, Roetelfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehérkarmú vércse","convention_language":false,"id":null},{"lang":"Italian","names":"Grillaio","convention_language":false,"id":null},{"lang":"Polish","names":"pustuleczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Peneireiro-das-torres","convention_language":false,"id":null},{"lang":"Russian","names":"Stepnaya Pustelga","convention_language":false,"id":null},{"lang":"Spanish","names":"Cernícalo primilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Boles, W. E. 1989. A new subspecies of the Green-backed Robin \u003Ci\u003EPachycephalopsis hattamensis\u003C/i\u003E, comprising the first record from Papua New Guinea. Bulletin of the British Ornithologists' Club: 109: 119-121.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct,extinct (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zinner, D. 2001. Ornithological notes from a primate survey in Eritrea. Bulletin of the African Bird Club: 8: 95-106.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Hellenic Ornithological Society. 1987. [Decrease in the population of the Lesser Kestrel.]. Nature: 37: 35.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sage, B. L. 1959. Some comments on autumn migration in eastern Iraq. Bulletin of the British Ornithologists' Club: 79: 132-135.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Liven-Schulman, I., Leshem, Y., Alon, D., and Yom-Tov, Y. 2004. Causes of population declines of the Lesser Kestrel \u003Ci\u003EFalco naumanni\u003C/i\u003E in Israel. Ibis: 146: 145-152.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Parr, S. J., Sklyarenko, S., Brokhovich, S., Brookhouse, J., Collin, P. N. and Heredia, B. 2000. A baseline survey of Lesser Kestrel \u003Ci\u003EFalco naumanni\u003C/i\u003E in south-east Kazakhstan, April-May 1997. Sandgrouse: 22: 36-42.; Tella, J. L., Carrete, M., Sánchez-Zapata, J. A., Serrano, D., Gavrilov, A., Sklyarenko, S., Ceballos, O., Donázar, J. A. and Hiraldo, F. 2004. Effects of land use, nesting-site availability, and the presence of larger raptors on the abundance of of Vulnerable lesser kestrels \u003Ci\u003EFalco naumanni\u003C/i\u003E in Kazakhstan. Oryx: 38: 224-227.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mobakken, G. 2005. Lesser Kestrel at sea off Svalbard. Dutch Birding: 27: 206.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":12148,"full_name":"Sylvia melanothorax","author_year":"Tristram, 1872","common_names":[{"lang":"Danish","names":"Sortbrystet Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Cyperse Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Cyprus Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de Chypre","convention_language":true,"id":null}],"distributions":[{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12150,"full_name":"Sterna vittata","author_year":"J. F. Gmelin, 1789","common_names":[{"lang":"English","names":"Antarctic Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne couronnée","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán antártico","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12151,"full_name":"Lycaon pictus","author_year":"(Temminck, 1820)","common_names":[{"lang":"English","names":"Wild Dog, African Hunting Dog, African Wild Dog","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct","country_references":"Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"extinct","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"extinct","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Canidae","genus_name":"Lycaon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12152,"full_name":"Somateria mollissima","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Eidereend","convention_language":false,"id":null},{"lang":"English","names":"Common Eider, Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Haahka","convention_language":false,"id":null},{"lang":"French","names":"Eider à duvet","convention_language":true,"id":null},{"lang":"German","names":"Eiderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Edredone","convention_language":false,"id":null},{"lang":"Polish","names":"Edredon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider-edredão","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Ejder","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Komisja Faunistyczna. 1998. [Rare birds recorded in Poland in 1997.]. Notatki Ornitologiczne 39: 151-174.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas mollissima","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12153,"full_name":"Chloephaga poliocephala","author_year":"Sclater, 1857","common_names":[{"lang":"English","names":"Ashy-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12154,"full_name":"Larus leucophthalmus","author_year":"Temminck, 1825","common_names":[{"lang":"Danish","names":"Hvidøjet Måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Witoogmeeuw","convention_language":false,"id":null},{"lang":"English","names":"White-eyed Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland à iris blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota ojiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12155,"full_name":"Chelonia mydas","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Green turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Arnold, E. N. 1986. A key and annotated check list to the lizards and amphisbaenians of Arabia. Fauna of Saudi Arabia: 8: 385-435.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J. and Parmenter, C. J. 1986. The sea turtle resources of the Torres Strait region. Proceedings of Torres Strait Fisheries Seminar, Port Moresby, 1-14 February, 1985 . 96-107; Limpus, C. J. and Reed, P. C. 1985. The Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in Queensland: a preliminary description of the population structure in a coral reef feeding ground. In: Grigg, G., Shine, R. and Ehmann, H. (eds.) Biology of Australasian frogs and reptiles. Royal Zoological Society of New South Wales.; Limpus, C. J., Carter, D. and Hamann, M. 2001. The Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in Queensland, Australia: the Bramble Cay rookery in the 1978/1980 breeding season. Chelonian Conservation and Biology: 4(1): 34-46; Limpus, C. J., Fleay, A. and Guinea, M. 1984. Sea turtles of the Capricornia Section, Great Barrier Reef Marine Park. In: Ward, W. T. and Saenger, P. (eds.) The Capricornia Section of the Great Barrier Reef: past, present and future. The Royal Society of Queensland and Australian Coral Reef Society. Queensland, Australia.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Eckert, K.L. and A.H. Hemphill. 2005. Sea turtles as flagships for protection of the Wider Caribbean Region. MAST: 3: 119-143.; Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"extinct,reintroduced","country_references":"Burnett-Herkes, J. 1984. The National Report: Bermuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"C. D. Bell, J. L. Solomon, J. M. Blumenthal, T. J. Austin, G. Ebanks-Petrie, A. C. Broderick and B. J. Godley. 2007. Monitoring and conservation of critically reduced marine turtle nesting populations: lessons from the Cayman Islands. Animal Conservation: 10: 39-47.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Chu-chien, Huang. 1982. Distribution and population dynamics of the Sea Turtles in China seas. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. and Frazier, S. S. 1985. Preliminary report: Chinese - American Sea Turtle Survey, June-August 1985. Fujian Teachers University Fuzhou, Fujian and National Program for Advanced Study and Research in China CSCPRC, National Academy of Sciences. Washington D.C. ; Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bjorndal, A.K., J. A. Wetherall, , A.B. Bolten, and J.A. Mortimer. 1999. Twenty-Six Years of Green Turtle Nesting at Tortuguero, Costa Rica: An Encouraging Trend. Conservation Biology : 13: 126-134.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Ogren, L. H. 1989. Status report of the Green Turtle. In: Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 89-94; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng S., and E. Rankin. 2005. Long-term conservation efforts contribute to positive green turtle \u003Ci\u003EChelonia mydas\u003C/i\u003E nesting trend at Tortuguero, Costa Rica. Biological Conservation : 121: 111-116.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Radovic, J., Civic, K. and Topic, R. 2006. Biodiversity of Croatia. State Institute for Nature Protection, Ministry of Culture - Republic of Croatia. Zagreb.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Broderick, A. C., Glen, F., Godley, B. J. and Hays, G. C. 2002. Estimating the number of green and loggerhead turtles nesting annually in the Mediterranean. Oryx: 36: 227-235.; Demetropoulos, A. 1983. WWF/IUCN Project 1815. Cyprus-turtle conservation. Report for 1982. ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. 1983. Galapagos sea turtles. Notic. Galap.: 38: 22-25.; Green, D. 1984. Long-distance movement of Galapagos Green Turtles. Journal of Herpetology: 18: 121-130.; Green, D. 1984. Population ecology of the East Pacific green turtle (\u003Ci\u003EChelonia mydas agassizii\u003C/i\u003E) in the Galapagos Islands. National Geographic Society Research Reports, 1975 projects: 16: 463-475.; Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Seminoff, J.A., Zarate, P., Coyne, M., Foley, D.G., Parker, D., Lyon, B.N. and Dutton, P.H. 2008. Post-nesting migrations of Galápagos green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E in relation to oceanographic conditions: integrating satellite telemetry with remotely sensed ocean data. Endangered Species Research: 4: 57-72.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Campbell, A., Clarke, M., Ghoneim, S., Hameid, W. S., Simms, C. and Edwards, C. 2002. On status and conservation of marine turtles along the Egyptian Mediterranean Sea coast: results of the Darwin Initiative Sea Turtle Conservation Project 1998-2000. Zoology in the Middle East: 24: 19-29.; Frazier, J. and Salas, S. 1984. The status of marine turtles in the Egyptian Red Sea. Biological Conservation: 30: 41-67.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Lebeau, A. 1985. Breeding evaluations trials in the Green Turtle \u003Ci\u003EChelonia mydas\u003C/i\u003E (Linne) on Scilly Atoll during the breeding seasons 1982-1983 and 1983-1984. In: Proceedings of the Fifth International Coral Reef Congress, Tahiti Vol. 5 . ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Lauret-Stepler, M., Bourjea, J., Roos, D., Pelletier, D., Ryan, P.G., Ciccione, S. and Grizel, H. 2007. Reproductive seasonality and trend of \u003Ci\u003EChelonia mydas\u003C/i\u003E in the SW Indian Ocean: a 20 yr study based on track counts. Endangered Species Research: 3: 217-227.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ; Schulz, J. P. 1984. Turtle conservation strategy in Indonesia. IUCN/WWF Report . ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Newbury, N., Khalil, M. and Venizelos, L. 2002. Population status and conservation of marine turtles at El-Mansouri, Lebanon. Zoology in the Middle East: 27: 47-60.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Pilcher, N. 2010. Population structure and growth of immature Green turtles at Mantanani, Sabah, Malaysia. Journal of Herpetology: 44: 168-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Colton, E. O. 1977. Turtles of the Maldives. Defenders (of Wildlife): 52: 167-170.; Moutou, F. 1985. Briefly: the Maldive Islands. Oryx: 19: 232-233.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Alvarado, J., and Figueroa, A. 1986. The ecological recovery of sea turtles in Michoacan, Mexico. Special attention: the Black Turtle (\u003Ci\u003EChelonia agassizi\u003C/i\u003E). Final Report to WWF-US, US Fish and Wildlife Service . ; Cliffton, K. 1982. Preservation of the East Pacific Green Turtle \u003Ci\u003EChelonia mydas agassizi\u003C/i\u003E. Final Report on Project 1812 (Submitted to WWF-US, 18 March) . ; Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ; Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Martin, C. S., J. Jeffers and B. J. Godley. 2005. The status of marine turtles in Montserrat (Eastern Caribbean). Animal Biodiversity and Conservation: 28(2): 159-168.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Saba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ; Richer de Forges, B. and Bargibant, G. 1985. Le lagon nord de la Nouvelle-Caledonie et les atolls de Huon et Surprise. Rapports Scientifiques et Techniques No. O.R.S.T.O.M. Noumea. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Mortimer, J.A. 1981. The Feeding Ecology of the West Caribbean Green Turtle (\u003Ci\u003EChelonia mydas\u003C/i\u003E) in Nicaragua. Biotropica: 13: 49-58.; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P. 1985. Biology of the Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E on an Arabian feeding ground. Journal of Herpetology: 19: 459-468.; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Firdous, F. 1985. Marine turtle management along Karachi coast. WWF-Pakistan: 4: 5-9.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; De Celis, N. C. 1982. Status of marine turtles in the Philippines. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Matillano, F. S., and Ladra, D. F. 1986. Nesting habits and habitat of marine turtles in Quiniluban Island, Palawan. Unpublished report . ","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Jean, C., Ciccione, S., Ballorain, K., Georges, J.-Y. and Bourjea, J. 2010. Ultralight aircraft surveys reveal marine turtle population increases along the west coast of Reunion Island. Oryx: 44: 223-229.; Le Gall, J.-Y., Bose, P., Chateau, D. and Taquet, M. 1986. Estimation du nombre de tortues vertes femelles adultes \u003Ci\u003EChelonia mydas\u003C/i\u003E par saison de ponte a Tromelin et Europa (Ocean Indien) 1973-1985. IFREMER Annl. Rep . ; Le Gall, J.-Y., Lebeau, A. and Kopp, J. 1985. Evaluation de la production de tortues vertes \u003Ci\u003EChelonia mydas\u003C/i\u003E nouveau-nees sur les sites de ponte Europa et Tromelin (Ocean Indien). Oceanograph. Trop.: 20: 117-133.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: analysis of coastal and marine habitats of the Red Sea. Report to the Meteorology and Environmental Protection Administration, Jeddah. IUCN. Gland, Switzerland. ; IUCN. 1987. Saudi Arabia: an assessment of biotopes and management requirements for the Saudi Arabian Gulf coastal zone. Report to the Meteorology and Environmental Protection Administration, Jeddah, Saudi Arabia. IUCN. Gland, Switzerland. ; Pilcher, N. J. 2000. The green turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in the Saudi Arabian Gulf. Chelonian Conservation and Biology: 3: 730-734.; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"FAO. 1967. Report to the Governments of the People's Republic of Southern Yemen, and the Seychelles Islands on the Green Turtle resource of South Arabia, and the status of the green turtle in the Seychelles Islands. Based on the work of Dr H. Hirth, FAO/TA Marine Turtle Biologist. Rep. FAO/UNDP(TA), No. 2467. 59pp . ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Broderick, D. 1997. Subsistence harvesting of marine turtles in the Solomon Islands. Proceedings of the Seventeenth Annual Symposium on Sea Turtle Biology and Conservation . ; McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"HCENR. 2006. Third national report on the implementation of the Convention on Biological Diversity. Government of the Republic of Sudan. Higher Council for Environment and Natural Resources. Khartoum, Sudan. 43","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Chelonia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":12156,"full_name":"Lagenorhynchus australis","author_year":"(Peale, 1848)","common_names":[{"lang":"English","names":"Blackchin Dolphin, Peale's Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque de Peale","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín austral","convention_language":true,"id":null},{"lang":"Swedish","names":"svartkindad delfin, Peales delfin","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12343,"full_name":"Ciconia microscelis","author_year":"Gray, 1848","common_names":[{"lang":"English","names":"Woolly-necked Stork, African Woollyneck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as Ciconia episcopus microscelis.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54351,"full_name":"Berardius arnuxii","author_year":"Duvernoy, 1851","common_names":[{"lang":"English","names":"Arnoux's Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Friedlaender, A.S., Nowacek, D.P., Johnston, D.W., Read, A.J., Tyson, R.B., Peavey, L. and Revelli, E.M.S. 2010. Multiple sightings of large groups of Arnoux’s beaked whales (\u003Ci\u003EBerardius arnouxii\u003C/i\u003E) in the Gerlache Strait, Antarctica. Marine Mammal Science: 26: 246-250.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Martuscelli, P. Milanelo, M. and Olmos, F. 1995. First record of Arnoux's Beaked Whale (\u003Ci\u003EBerardius arnuxii\u003C/i\u003E) and Southern Right-Whale Dolphin (\u003Ci\u003ELissodelphis peronii\u003C/i\u003E) from Brazil. Mammalia: 59: 274-275.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Berardius","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54352,"full_name":"Cephalorhynchus hectori","author_year":"(van Beneden, 1881)","common_names":[{"lang":"English","names":"Hector's Dolphin, White-headed Dolphin, New Zealand Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54353,"full_name":"Delphinus capensis","author_year":"Gray, 1828","common_names":[{"lang":"English","names":"Long-beaked Common Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Bernal, R., Olavarria, C. and Moraga, R. 2003. Ocurrence and long-term residency of two long-beaked common dolphins, Delphinus capensis (Gray 1828), in adjacent small bays on the Chilean central coast. : 29: 396-399.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Heyning, J. E. and Perrin, W. F. 1994. Evidence for two species of common dolphins (genus \u003Ci\u003EDelphinus\u003C/i\u003E) from the eastern North Pacific. Contr. Nat. Hist. Mus. L.A. County: 442: 35 pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Anon. 2000. Long-beaked common dolphin (\u003Ci\u003EDelphinus capensis\u003C/i\u003E): California stock. ; Heyning, J. E. and Perrin, W. F. 1994. Evidence for two species of common dolphins (genus \u003Ci\u003EDelphinus\u003C/i\u003E) from the eastern North Pacific. Contr. Nat. Hist. Mus. L.A. County: 442: 35 pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Delphinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54354,"full_name":"Hyperoodon planifrons","author_year":"Flower, 1882","common_names":[{"lang":"English","names":"Southern Bottlenose Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dixon, J.M., Frigo, L.I.N.A. and Moyle, R.L. 1994. New information on the southern bottlenose whale, \u003Ci\u003EHyperoodon planifrons\u003C/i\u003E (Cetacea: Ziphiidae), from a recent stranding in Victoria, Australia. \u003Ci\u003EAustralian Mammalogy\u003C/i\u003E: 17(1): 85–95.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Dalebout, M.L., van Helden, A., van Waerebeek, K. and Baker, C.S. 1998. Molecular genetic identification of southern hemisphere beaked whales (Cetacea: Ziphiidae). \u003Ci\u003EMolecular Ecology\u003C/i\u003E: 7: 687–694.; MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Hyperoodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54356,"full_name":"Indopacetus pacificus","author_year":"(Longman, 1926)","common_names":[{"lang":"English","names":"Indo-pacific Beaked Whale, Longman's Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Indopacetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54357,"full_name":"Lagenorhynchus cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)","common_names":[{"lang":"English","names":"Hourglass Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sagmatias cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)"},{"full_name":"Sagmatias cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54361,"full_name":"Lissodelphis peronii","author_year":"(Lacépède, 1804)","common_names":[{"lang":"English","names":"Southern Right Whale Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Martuscelli, P. Milanelo, M. and Olmos, F. 1995. First record of Arnoux's Beaked Whale (\u003Ci\u003EBerardius arnuxii\u003C/i\u003E) and Southern Right-Whale Dolphin (\u003Ci\u003ELissodelphis peronii\u003C/i\u003E) from Brazil. Mammalia: 59: 274-275.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Rose, B. and Payne, A. I. L. 1991. Occurrence and behavior of the southern right whale dolphin \u003Ci\u003ELissodelphis peronii\u003C/i\u003E off Namibia. Marine Mammal Science: 7: 25-34.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lissodelphis","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54362,"full_name":"Mesoplodon bowdoini","author_year":"Andrews, 1908","common_names":[{"lang":"English","names":"Andrews's Beaked Whale, Splaytooth Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54363,"full_name":"Mesoplodon ginkgodens","author_year":"Nishiwaki \u0026 Kamiya, 1958","common_names":[{"lang":"English","names":"Ginkgo-toothed Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1999. New records of beaked whales, genus \u003Ci\u003EMesoplodon\u003C/i\u003E, from New Zealand (Cetacea: Ziphiidae). Journal of the Royal Society of New Zealand: 29: 235-244.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54364,"full_name":"Mesoplodon hectori","author_year":"(Gray, 1871)","common_names":[{"lang":"English","names":"Hector's Beaked Whale, Skew-beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Zerbini, A. N. and Secchi, E. R. 2001. Occurrence of Hector's beaked whale, \u003Ci\u003EMesoplodon hectori\u003C/i\u003E, in southern Brazil. Aquatic Mammals: 27: 149-153.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Fraser, F. C. 1950. Notes on a skull of a \u003Ci\u003EMesoplodon hectori\u003C/i\u003E from the Falkland Islands. Proceedings of the Linnean Society of London: 162: 50-52.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54365,"full_name":"Mesoplodon layardii","author_year":"(Gray, 1865)","common_names":[{"lang":"English","names":"Layard's Beaked Whale, Strap-toothed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Venegas, C. C. and Sielfeld, K. W. 1978. Registros de \u003Ci\u003EMesoplodon layardii\u003C/i\u003E y otros cetaceos en Magallanes. Anales del Instituto de la Patagonia: 9: 171-177.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54366,"full_name":"Mesoplodon traversii","author_year":"(Gray, 1874)","common_names":[{"lang":"English","names":"Spade-toothed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Mesoplodon bahamondi","author_year":"Reyes, van Waerebeek, Cárdenas \u0026 Yáñez, 1995"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54369,"full_name":"Peponocephala electra","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Melon-headed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Kami, H. T. and Hosmer, A. J. 1982. Recent beachings of whales on Guam. Micronesica: 18: 133-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Perrin, W. F. 1976. First record of the melon-headed whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, in the eastern Pacific, with a summary of world distribution. Fishery Bull. U.S. natn. ocean. atmos. Admn: 74: 457-458.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P. B. and Shaughnessy, P. D. 1981. First record of the Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E from South Africa. Annals of the South African Museum: 83: 33-47.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hill Mikkelsen, A. M. and Sheldrick, M. 1992. First recorded stranding of a Melon-headed Whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) on the European coast. Journal of Zoology (London): 227: 326-329.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Peddemors, V. M. and Ross, G. J. B. 1988. First record of the melon-headed whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E (Gray, 1846) for the east African coast. African Journal of Ecology: 26: 345-346.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baker, R. J., Bradley, L. C., Bradley, R. D., Dragoo, J. W., Engstrom, M. D., Hoffmann, R. S., Jones, C. A., Reid, F., Rice, D. W. and Jones, C. 2003. Revised checklist of North American mammals north of Mexico, 2003. Occasional Papers, Museum of Texas Tech University: 229: 23.; Barron, G. L. and Jefferson, T. A. 1993. First records of the melon-headed whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) from the Gulf of Mexico. Southwestern Naturalist: 38: 82-85.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Peponocephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Lagenorhynchus electra","author_year":"Gray, 1846"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":54371,"full_name":"Stenella frontalis","author_year":"(G. Cuvier, 1829)","common_names":[{"lang":"English","names":"Atlantic Spotted Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Stenella attenuata frontalis","author_year":"(Gray, 1846)"},{"full_name":"Stenella pernettensis","author_year":"(de Blainville, 1817)"},{"full_name":"Stenella plagiodon","author_year":"Cope, 1866"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":54376,"full_name":"Tasmacetus shepherdi","author_year":"Oliver, 1937","common_names":[{"lang":"English","names":"Shepherd's Beaked Whale, Tasman Beaked Whale, Tasman Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mead, J. G. and Payne, R. S. 1975. A specimen of the Tasman beaked whale, \u003Ci\u003ETasmacetus shepherdi\u003C/i\u003E, from Argentina. Journal of Mammalogy: 56: 213-218.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Tasmacetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54377,"full_name":"Pipistrellus hanaki","author_year":"Hulva \u0026 Benda, 2004","common_names":[{"lang":"English","names":"Hanaki's Dwarf Bat","convention_language":true,"id":null}],"distributions":[{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":54380,"full_name":"Buteo buteo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Common Buzzard, Eurasian Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54382,"full_name":"Eptesicus anatolicus","author_year":"Felten, 1971","common_names":[{"lang":"English","names":"Anatolian Serotine Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54386,"full_name":"Pipistrellus maderensis","author_year":"Dobson, 1878","common_names":[{"lang":"English","names":"Madeiran Pipistrelle Bat","convention_language":true,"id":null}],"distributions":[{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54391,"full_name":"Eptesicus isabellinus","author_year":"Temminck, 1840","common_names":[{"lang":"English","names":"Isabelline Serotine Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54392,"full_name":"Myotis escalerai","author_year":"Cabrera, 1904","common_names":[{"lang":"English","names":"Escalera’s Bat","convention_language":true,"id":null},{"lang":"French","names":"Murin d'Escaler","convention_language":true,"id":null},{"lang":"German","names":"Iberische Fransenfledermaus","convention_language":false,"id":null}],"distributions":[{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54394,"full_name":"Plecotus teneriffae","author_year":"Barrett-Hamiton, 1907","common_names":[{"lang":"English","names":"Canary Long-Eared Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54395,"full_name":"Nyctalus azoreum","author_year":"Thomas, 1901","common_names":[{"lang":"English","names":"Azorean Noctule Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54398,"full_name":"Hieraaetus pennatus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Booted eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"distribution uncertain","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Ash, J. S. 1984. Bird observations on Bali. Bulletin of the British Ornithologists' Club: 104: 24-35.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. 1979. Recent additions to the Zambian list. Bulletin of the British Ornithologists' Club: 99: 94-98.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54400,"full_name":"Pernis apivorus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"European Honey-Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.; Turner, D. A. and Forbes-Watson, A. D. 1976. Additional migrant records from Seychelles. Bulletin of the British Ornithologists' Club: 96: 57-58.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Pernis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54402,"full_name":"Chelictinia riocourii","author_year":"(Vieillot, 1822)","common_names":[{"lang":"English","names":"African Swallow-Tailed Kite, Scissor-tailed Kite","convention_language":true,"id":null},{"lang":"French","names":"Elanion naucler","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; King, M. 2000. Breeding of Swallow-tailed Kite \u003Ci\u003EChelictinia riocourii\u003C/i\u003E in Senegal. Malimbus: 22: 90-91.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Chelictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54403,"full_name":"Falco tinnunculus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1989. Additions and corrections to the avifauna of Zaire (4). Bulletin of the British Ornithologists' Club: 109: 217-225.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; LeDreff, A. and Raynaud, P. A. 1993. First record of the Eurasian Kestrel (\u003Ci\u003EFalco tinnunculus\u003C/i\u003E) in French Guiana. Journal of Raptor Research: 27: 125.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Marle, J. G. van and Voous, K. H. 1988. The birds of Sumatra. British Ornithologists' Union Check-list 10. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Clements, R. 2008. The common kestrel population in Britain. British Birds: 101: 228-234.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54408,"full_name":"Strix nebulosa","author_year":"Forster, 1772","common_names":[{"lang":"English","names":"Great Grey Owl","convention_language":true,"id":null}],"distributions":[{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tishechkin, A. K. et al. 1997. Breeding population of the Great Gray Owl (\u003Ci\u003EStrix nebulosa\u003C/i\u003E) in Belarus: summary of recent knowledge. USDA, For. Serv. Gen. Tech. Rep. NC-GTR-190 . 449-455.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Strix","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54410,"full_name":"Aegolius funereus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Boreal Owl","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayward, G. D., Hayward, P. H. and Garton, E. O. 1993. Ecology of Boreal Owls in the Northern Rocky Mountains, USA. Wildlife Monographs: 124: 1-59.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Aegolius","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54412,"full_name":"Aviceda cuculoides","author_year":"Swainson, 1837","common_names":[{"lang":"English","names":"African Baza, African Cuckoo-hawk","convention_language":true,"id":null},{"lang":"French","names":"Faucon-coucou","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dekeyser, P. L. 1951. Mission A. Villiers au Togo et au Dahomey (1950). III. - Oiseaux. Études Dahomeennes: 5: 47-84.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54413,"full_name":"Falco columbarius","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Merlin","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S. 1990. Notes on Philippine birds, 16. First records of the Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E and Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E from the Philippines. Bulletin of the British Ornithologists' Club: 110: 107-109.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roadhouse, A. 2001. Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E, the first record for Thailand. Forktail: 17: 114.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54414,"full_name":"Aviceda leuphotes","author_year":"(Dumont, 1820)","common_names":[{"lang":"English","names":"Black Baza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Balen, S. van. 1984. Sight records of the Black Baza \u003Ci\u003EAviceda leuphotes\u003C/i\u003E on Java. Ardea: 72: 234.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54415,"full_name":"Buteo hemilasius","author_year":"Temminck \u0026 Schlegel, 1844","common_names":[{"lang":"English","names":"Upland Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Naoroji, R. and Forsman, D. 2001. First breeding record of the Upland Buzzard \u003Ci\u003EButeo hemilasius\u003C/i\u003E for the Indian subcontinent in Changthang, Ladakh, and identification characters of Upland Buzzard and Long-legged Buzzard \u003Ci\u003EButeo rufinus\u003C/i\u003E. Forktail: 17: 105-108.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54417,"full_name":"Accipiter virgatus","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Besra","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mottley, J. 1863. Observations on the birds of south-eastern Borneo. Proceedings of the Zoological Society of London: 1863: 206-224.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54419,"full_name":"Aegypius monachus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Cinereous vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; O'Sullivan, K. 1994. A record of Cinereous Vulture (\u003Ci\u003EAegypius monachus\u003C/i\u003E) for Cambodia. Natural History Bulletin of the Siam Society: 42: 297-299.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"reintroduced,extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Terrasse, M., Sarrazin, F., Choisy, J.-P., Clémente, C., Henriquet, S., Lécuyer, P., Pinna, J. L. and Tessier, C. 2004. A success story: the reintroduction of Eurasian Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E and Black \u003Ci\u003EAegypius monachus\u003C/i\u003E Vultures to France. Pp. 127-145 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/ BirdLife Hungary. ; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1984. Selected observations from Lebanon, Syria and Jordan in the springs of 1963 and 1966. Sandgrouse: 6: 24-47.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct,distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Tewes, E. 1994. The European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E project in Mallorca. In: Meyburg \u0026 Chancellor (eds.) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aegypius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54420,"full_name":"Falco biarmicus","author_year":"Temminck, 1825","common_names":[{"lang":"English","names":"Lanner Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Gustin, M., Palumbo, G. and Corso, A. 1999. International species action plan - Lanner Falcon \u003Ci\u003EFalco biarmicus\u003C/i\u003E. Birdlife International. Italy. 23","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1956. Les oiseaux des monts du Togo (Afrique occidentale). Alauda: 24: 221-227.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54421,"full_name":"Accipiter soloensis","author_year":"(Horsfield, 1821)","common_names":[{"lang":"English","names":"Chinese Sparrowhawk, Gray Frog-Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54423,"full_name":"Circus melanoleucos","author_year":"(Pennant, 1769)","common_names":[{"lang":"English","names":"Pied harrier","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Pedersen, A. and Nielsen, S. S. 1998. The status and conservation of threatened and near-threatened species of birds in the Red River Delta, Vietnam. Bird Conservation International: 8: 31-51; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54425,"full_name":"Otus sunia","author_year":"(Hodgson, 1836)","common_names":[{"lang":"English","names":"Oriental Scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1991. The birds of Pakistan. Volume 1: Non-Passeriformes. Oxford University Press. Oxford.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54426,"full_name":"Buteo auguralis","author_year":"Salvadori, 1865","common_names":[{"lang":"English","names":"Red-necked Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1991. The red-tailed buzzards of Zaire. Bulletin of the British Ornithologists' Club: 111: 51-55.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54427,"full_name":"Circus pygargus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Montagu's Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54428,"full_name":"Falco amurensis","author_year":"Radde, 1863","common_names":[{"lang":"English","names":"Amur falcon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1987. Additions and corrections to the avifauna of Zaire (1). Bulletin of the British Ornithologists' Club: 107: 137-143.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Symes, C.T. and Woodborne, S. 2010. Migratory connectivity and conservation of the Amur Falcon \u003Ci\u003EFalco amurensis\u003C/i\u003E: a stable isotope perspective. Bird Conservation International: 20: 134-148.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Buckton, S. T. and Safford, R. J. 2004. The avifauna of the Vietnamese Mekong Delta. Bird Conservation International: 14: 279-322.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54430,"full_name":"Pernis ptilorhynchus","author_year":"(Temminck, 1821)","common_names":[{"lang":"English","names":"Oriental Honey-Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Baha el Din, S. and Baha el Din, M. 1997. Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E, a new species for Egypt and the African continent. Bull. Afr. Bird Club: 4: 31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Clark, W. S. and Christy, P. 2006. First record of Oriental Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E for Gabon and sub-Saharan Africa. Bulletin of the African Bird Club: 13: 207-210.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; White, C. M. N. and Bruce, M. D. 1986. The birds of Wallacea (Sulawesi, the Moluccas and Lesser Sunda Islands, Indonesia): an annotated checklist. British Ornithologists' Union Checklist No. 7. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duquet, M. and Richardson, C. 2000. First and second records of Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E in Iran. Sandgrouse: 22: 133-134.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J. 1997. The first Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E in Oman. Sandgrouse: 19: 143-144.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Pernis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54431,"full_name":"Falco severus","author_year":"Horsfield, 1821","common_names":[{"lang":"English","names":"Oriental Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mayr, E. 1945. Birds collected during the Whitney South sea expedition. Notes on the birds of Northern Melanesia. American Museum Novitates: 1294: 1-11.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Gibbs, D. 1996. Notes on Solomon Island birds. Bulletin of the British Ornithologists' Club: 116: 18-25.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Mayr, E. 1945. Birds collected during the Whitney South sea expedition. Notes on the birds of Northern Melanesia. American Museum Novitates: 1294: 1-11.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.; Rothschild, W. and Hartert, E. 1905. Further contribution to our knowledge of the Ornis of the Solomon Islands. Novitates Zoologicae: XII: 243-269.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54432,"full_name":"Aquila nipalensis","author_year":"Hodgson, 1833","common_names":[{"lang":"English","names":"Steppe Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ottoson, U., Bengtsson, D., Gustafsson, R., Hall, P., Hjort, C., Leventis, A. P., Neumann, R., Pettersson, J., Rhönnstad, P., Rumsey, S. et al. 2002. New birds for Nigeria observed during the Lake Chad Bird Migration Project. Bulletin of the African Bird Club: 9: 52-55.; Ottosson, U., Hjort, C. and Hall, P. 2001. The Lake Chad Bird Migration Project: Malamfatori revisited. Bulletin of the African Bird Club: 8: 121-126.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Knystautas, A. 1993. Birds of Russia. Harper Collins Publishers. London.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54433,"full_name":"Falco eleonorae","author_year":"Géné, 1839","common_names":[{"lang":"English","names":"Eleonora's Falcon","convention_language":true,"id":null},{"lang":"French","names":"Faucon d'Eléonore","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Carlsson, B. and Breider, J.-M. 2007. The first record of Eleonora's Falcon \u003Ci\u003EFalco eleonorae\u003C/i\u003E (Gené, 1839) in Armenia. Sandgrouse: 29: 103-105.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Mayol, J. 1981. [Evaluation of the Majorcan colonies of Eleonora's Falcon, \u003Ci\u003EFalco eleonorae\u003C/i\u003E, during summer 1981.]. Bol. Est. Cent. Ecol.: 20: 21-25.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54434,"full_name":"Accipiter nisus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eurasian Sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.; Ludlow, F. 1937. The birds of Bhutan and adjacent territories of Sikkim and Tibet. Ibis: 14: 1-46, 249-293, 467-5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Roberts, J. L. 1979. Observation of the migration of raptors and other large soaring birds in Bulgaria. Ibis: 121: 301-312.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Frumkin, R. and Adar, M. 1989. First breeding records of Sparrowhawk in Israel. Ornithological Society of the Middle East Bulletin: 23: 20-22.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Clark, W. S. 1995. Specimen of Eurasian Sparrowhawk \u003Ci\u003EAccipiter nisus\u003C/i\u003E from South Africa verified. Journal of African Raptor Biology: 10: 39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54435,"full_name":"Accipiter badius","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Shikra","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K. and Emms, C. 2001. New species and breeding records for The Gambia. Bulletin of the African Bird Club: 8: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Labinger, Z., Gorney, E. and Parslow, R. 1991. First record of Shikra \u003Ci\u003EAccipiter badius\u003C/i\u003E in Israel. Sandgrouse: 13: 46-49.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"Chye, L.K. 2012. Current status and distribution of diurnal raptors in Malaysia. Ornis mongolica 1:52-59; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"David, D. L., Ezealor, A. U., \u0026 Oniye, S. J. 2013. Diversity of Bird Species and Conservation of two Lacustrine Wetlands of the Upper Benue Basin, Adamawa-Nigeria. IOSR Journal of Agriculture and Veterinary Science (IOSR-JAVS) 4(3):11-20; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Clark, W. S. and Parslow, R. 1991. A specimen record of Shikra \u003Ci\u003EAccipiter badius\u003C/i\u003E for Saudi Arabia. Sandgrouse: 13: 44-46.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54437,"full_name":"Gyps fulvus","author_year":"(Hablizl, 1783)","common_names":[{"lang":"English","names":"Griffon Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Dementjev, D. P. and Gladkov, N. A (eds.) 1966. Birds of the Soviet Union. Volume I. Jerusalem.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.; Iezekiel, S., Bakaloudis, D. E. and Vlachos, C. G. 2004. The status and conservation of Griffon Vulture \u003Ci\u003EGyps fulvus\u003C/i\u003E in Cyprus. Pp. 67-73 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Welch, G. R and Welch, H. J. 1988. Djibouti III - preliminary report. Ornithological Society of the Middle East Bulletin: 20: 1-2.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"reintroduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Terrasse, M., Sarrazin, F., Choisy, J.-P., Clémente, C., Henriquet, S., Lécuyer, P., Pinna, J. L. and Tessier, C. 2004. A success story: the reintroduction of Eurasian Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E and Black \u003Ci\u003EAegypius monachus\u003C/i\u003E Vultures to France. Pp. 127-145 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/ BirdLife Hungary. ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Clark, W. S. 2001. First record of European Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E for Kenya. Bulletin of the African Bird Club: 8: 59-60.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sociedad Española de Ornitologia. 1981. [First general survey of Griffon Vulture breeding colonies in the Iberian peninsula, 1979.]. Ardeola: 26: 165-312.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.; Van Beest, F., van den Bremer, L., de Boer, W.F., Heitkonig, I.M.A. and Monteiro, A.E. 2008. Population dynamics and spatial distribution of Griffon Vultures (\u003Ci\u003EGyps fulvus\u003C/i\u003E) in Portugal. Bird Conservation International: 18: 102-117.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct,distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dupuy, A. R. 1976. Première observation d'un Vautour fauve \u003Ci\u003EGyps fulvus\u003C/i\u003E au Sénégal. Ardea: 44: 333-334.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Sociedad Española de Ornitologia. 1981. [First general survey of Griffon Vulture breeding colonies in the Iberian peninsula, 1979.]. Ardeola: 26: 165-312.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54438,"full_name":"Falco concolor","author_year":"Temminck, 1825","common_names":[{"lang":"English","names":"Sooty falcon","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gaucher, P., Thiollay, J.-M. and Eichaker, X. 1995. The Sooty Falcon \u003Ci\u003EFalco concolor\u003C/i\u003E on the Red Sea coast of Saudi Arabia: distribution, numbers and conservation. Ibis: 137: 29-33.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.; Penry, E. H. 1979. Sight records of the Sooty Falcon \u003Ci\u003EFalco concolor\u003C/i\u003E in Zambia. Bulletin of the British Ornithologists' Club: 99: 63-65.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54439,"full_name":"Otus brucei","author_year":"(Hume, 1873)","common_names":[{"lang":"English","names":"Pallid Scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54440,"full_name":"Accipiter ovampensis","author_year":"Gurney, 1875","common_names":[{"lang":"English","names":"Ovambo Sparrowhawk","convention_language":true,"id":null},{"lang":"French","names":"Epervier de l'Ovampo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mills, M., Hoff, R. and Myers, D. 2003. First breeding record of Ovambo Sparrowhawk \u003Ci\u003EAccipiter ovampensis\u003C/i\u003E in West Africa. Malimbus: 25: 104-106; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Salewski, V. 1998. A record of an immature Ovambo Sparrowhawk \u003Ci\u003EAccipiter ovampensis\u003C/i\u003E from Ivory Coast. Bulletin of the African Bird Club: 5: 120-121.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54441,"full_name":"Accipiter gentilis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northern Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Roberts, J. L. 1979. Observation of the migration of raptors and other large soaring birds in Bulgaria. Ibis: 121: 301-312.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Weiss, J. 1986. Tatigkeitsbericht 1977-84 der Arbreitsgruppe Feldornithologie. Regulus: 4: 167-306.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raja, N.A., Davidson, P. Bean, N. Drijvers, R. Showler, D.A. Barker, C 1999. The birds of Palas, North-West Frontier Province, Pakistan. Forktail 15:77-85","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marquiss, M. and Newton, I. 1982. The Goshawk in Britain. British Birds: 75: 243-260.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54444,"full_name":"Aquila chrysaetos","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Golden Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Clouet, M., Barrau, C. and Goar, J.-L. 1999. The Golden Eagle (\u003Ci\u003EAquila chrysaetos\u003C/i\u003E) in the Balé Mountains, Ethiopia. J. Raptor Res.: 33: 102-109.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Radovic, D., Stevanovic, V., Markovic, D., Jovanovic, S., Dzukic, G. and Radovic, I. 2005. Implementation of GIS technologies in assessment and protection of natural values of Tara National Park. Archives of Biological Sciences, Belgrade: 57: 193-204.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.; Goar, J.-L. and Rutkowski, T. 2000. Reproduction de l'Aigle royal \u003Ci\u003EAquila chrysaetos\u003C/i\u003E au Mali. Alauda: 68: 327-328.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Clouet, M. and Goar, J. L. 2004. L'aigle royal \u003Ci\u003EAquila chrysaetos\u003C/i\u003E au Niger. Alauda: 72: 151-152.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. and Brown, M. R. 1982. Golden Eagle \u003Ci\u003EAquila chrysaetos\u003C/i\u003E breeding in Oman, eastern Arabia. Bulletin of the British Ornithologists' Club: 102: 41-42.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54446,"full_name":"Circaetus gallicus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Short-toed snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain,extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Balen, S. van and Compost, A. R. 1989. Overlooked evidence of the Short-toed Eagle \u003Ci\u003ECircaetus gallicus\u003C/i\u003E on Java. Kukila: 4: 44-46.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Clark, W. S. and Paulson, D. R. 2002. Specimen record of Short-toed Snake Eagle for Kenya is invalid. Bulletin of the British Ornithologists' Club: 122: 156-157.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54447,"full_name":"Falco subbuteo","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Eurasian hobby","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Gore, M. E. J. 1968. A checklist of the birds of Sabah, Borneo. Ibis: 110: 165-196.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1973. \u003Ci\u003ENumenius minutus\u003C/i\u003E, \u003Ci\u003EFalco subbuteo\u003C/i\u003E and \u003Ci\u003ECaprimulgus europaeus\u003C/i\u003E in the Seychelles. Bulletin of the British Ornithologists' Club: 93: 99-101.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54454,"full_name":"Buteo rufinus","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Long-legged buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54459,"full_name":"Otus scops","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Common scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54460,"full_name":"Anas acuta","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Pintail, Northern Pintail, Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Erickson, R. 1977. First record of Knot \u003Ci\u003ECalidris canutus\u003C/i\u003E, and other records, from Belize (British Honduras). Bulletin of the British Ornithologists' Club: 97: 78-81.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Balchin, C. S. 1988. Recent observations of birds from the Ivory Coast. Malimbus: 10: 201-206.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ebenhard, N. T. 1979. First record in the Seychelles of Northern Pintail. Bulletin of the British Ornithologists' Club: 99: 39-40.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hestbeck, J. B. 1993. Overwinter distribution of Northern Pintail population in North America. Journal of Wildlife Management: 57: 582-589.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54461,"full_name":"Anas capensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Cape Teal, Cape Wigeon","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54464,"full_name":"Anas crecca","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Teal, Green-winged Teal, Teal ","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas carolinensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54467,"full_name":"Accipiter gularis","author_year":"(Temminck \u0026 Schlegel, 1844)","common_names":[{"lang":"English","names":"Japanese sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54471,"full_name":"Butastur indicus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Grey-faced buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54472,"full_name":"Circus maurus","author_year":"(Temminck, 1828)","common_names":[{"lang":"English","names":"Black harrier","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54478,"full_name":"Circus macrourus","author_year":"(Gmelin, 1770)","common_names":[{"lang":"English","names":"Pallid harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S. 2008. Nest occupation and prey grabbing by saker falcon (\u003Ci\u003EFalco cherrug\u003C/i\u003E) on power lines in the province of Vojvodina (Serbia). Archives of Biological Sciences, Belgrade: 60: 271-277.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Terraube, T., Arroyo, B.E., Mougeot, F., Madders, M., Watson, J. and Bragin, E.A. 2009. Breeding biology of the pallid harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E in north-central Kazakhstan: implications for the conservation of a Near Threatened species. Oryx: 43: 104-112.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lamont, A. R. and Morgan, J. A. L. 2000. Pallid Harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E: the first record for Peninsular Malaysia. Forktail: 16: 174.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; Debout, G., Meister, P. and Ventelon, M. 2000. Notes complémentaires sur l'avifaune du Niger. Malimbus: 22: 87-88.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and Roest, L. 2003. Pallid Harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E: the first record for Seychelles. Bulletin of the African Bird Club: 10: 126-127.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54479,"full_name":"Circus spilonotus","author_year":"Kaup, 1847","common_names":[{"lang":"English","names":"Eastern marsh-harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Simmons, R.E. and Legra, L.A.T. 2009. Is the Papuan Harrier \u003Ci\u003ECircus spilonotus spilothorax\u003C/i\u003E a globally threatened species? Ecology, climate change threats and first population estimates from Papua New Guinea. Bird Conservation International: 19: 379-391.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54483,"full_name":"Surnia ulula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northen Hawk Owl ","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Surnia","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54484,"full_name":"Falco rusticolus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Gyrfalcon","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Mela, M. and Koskimies, P. 2005. Monitoring and conservation of the gyrfalcon (\u003Ci\u003EFalco rusticolus\u003C/i\u003E) in Finland. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005: 97-100.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Lobkov, Y.G., Gerasimov, Y.N., and Gorovenko, A.V. 2007. Population status of the gyrfalcon in Kamchatka. Falco: 30: 8-11.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Nystrom, J., Ekenstedt, J., Engstrom, J., and Angerbjorn, A. 2005. Gyr Falcons, ptarmigan and microtine rodents in northern Sweden. Ibis: 147: 587-597.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54487,"full_name":"Ninox scutulata","author_year":"(Raffles, 1822)","common_names":[{"lang":"English","names":"Brown hawk-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Pont, J. E. du. 1971. Philippine birds. Delaware Museum of Natural History. Greenville, Delaware.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Ninox","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54495,"full_name":"Accipiter brevipes","author_year":"(Severtsov, 1850)","common_names":[{"lang":"English","names":"Levant sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sedláček, O., Hořák, D., Riegert, J., Reif, J., \u0026 Pešata, M. 2004 Poznámky k výskytu palearktických migrantů v Kamerunu Notes to the occurrence of Palearctic migrants in Cameroon. Sylvia 40:63-78","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (2). Bulletin of the British Ornithologists' Club: 108: 43-50.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54507,"full_name":"Balaeniceps rex","author_year":"Gould, 1850","common_names":[{"lang":"English","names":"Shoebill , Whale-headed Stork","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Burton, M. and Benson, C. W. 1961. The Whale-headed Stork or Shoe-bill: legend and fact. Northern Rhodesia Journal: 4: 411-426; Chapin, J. P. 1932. The birds of Belgian Congo. Part 1. Bulletin of the American Journal of Natural History: 65: 1-756. ; Collar, N. J. and Stuart, S. N. 1985. Threatened birds of Africa and related islands: The ICBP/IUCN Red Data Book, Part 1. 3rd edition. International Council for Bird Preservation and International Union for Conservation of Nature and Natural Resources. Cambridge, U.K.; Curry-Lindahl, K. 1961. Contribution à l' étude des vertebtras terrestres en Afrique tropicale. Exploration du Parc National Albert et du Parc National de la Kagera II. Mission K. Curry-Lindahl (1951-1952, 1958-1959). 1-331.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Verschuren, J. 1975. Wildlife in Zaire. Oryx: 13: 149-163","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Duckworth, F. 1974. The Whale-headed Stork in Ethiopia. Bulletin of the British Ornithologists' Club: 94: 3-4.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Hanmer, D. B. and Roseveare, M. 1989. The first record of the Shoebill (\u003Ci\u003EBalaeniceps rex\u003C/i\u003E) in Malawi. Scopus: 12: 92.93.; Haugaard, J. 1999. The Shoebill \u003Ci\u003EBalaeniceps rex\u003C/i\u003E in Malawi: myth, ghost or grain of truth? Vocifer: 2: 3-4.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Roseveare, M. 1989. First record of the Shoebill in Malawi. Nyala: 14: 45.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dinesen, L. and Baker, M. 2006. Status of Shoebill \u003Ci\u003EBalaeniceps rex\u003C/i\u003E in Malagarasi, Tanzania. Bulletin of the African Bird Club . 56-63; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Balaenicipitidae","genus_name":"Balaeniceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54509,"full_name":"Balearica pavonina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"West African Crowned Crane, Black Crowned-crane","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 2000. Floodplain rehabilitation in Far Northern Cameroon: expected impact on bird life. Ostrich: 71: 112-117.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Tursha, L.G. and Boyi, M.G. 2011. Status of the Black Crowned Crane (\u003Ci\u003EBalearica pavonina\u003C/i\u003E) in Northern Nigeria. Indwa - Journal of the South African Crane Working Group (SACWG): 7: 30-36.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Tursha, L.G. and Boyi, M.G. 2011. Status of the Black Crowned Crane (\u003Ci\u003EBalearica pavonina\u003C/i\u003E) in Northern Nigeria. Indwa - Journal of the South African Crane Working Group (SACWG): 7: 30-36.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. and Wacher, T. 1997. A field guide to the birds of the Gambia and Senegal. Pica Press. Sussex.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C.H., Dodman, T. and Sylla, S.I. 2006. Conservation action plans for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E and Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. In: Boere, G.C., Galbraith, C.A. \u0026 Stroud, D.A. (Eds.) Waterbirds around the world. The Stationary Office, Scottish Natural Heritage. Edinburgh, United Kingdom.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Backhurst, G.C., Britton, H.A., Diamond, A.W., Gerhart, J.D., Mann, C.F., Meadows, B.S., Pearson, D.J., Reynolds, J.F. and Turner, D.A. 1980. Birds of East Africa - their habitat, status and distribution. East African Natural History Society. Nairobi, Kenya.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jackson, F. J. and Sclater, W. L. 1938. The birds of Kenya Colony and the Ugandan Protectorate. Gurney and Jackson. London.; Owre, O. T. 1966. The Crowned Crane at Lake Rudolf. Bulletin of the British Ornithologists' Club: 86: 54-56.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kone, B., Fofana, B., Beilfuss, R. and Dodman, T. 2007. The impact of capture, domestication and trade on Black Crowned Cranes in the Inner Niger Delta, Mali. Ostrich: 78: 195-203.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Archibald, G. and Pasquier, R.F. 1983. African cranes. Proceedings of the 1983 International Crane Workshop International Crane Foundation. Wisconsin, United States of America.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C.H., Dodman, T. and Sylla, S.I. 2006. Conservation action plans for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E and Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. In: Boere, G.C., Galbraith, C.A. \u0026 Stroud, D.A. (Eds.) Waterbirds around the world. The Stationary Office, Scottish Natural Heritage. Edinburgh, United Kingdom.; Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.; Fry, C.H. 1983. New data on the status of the Black Crowned Crane in West Africa. Proceedings of the 1983 International Crane Workshop International Crane Foundation. Wisconsin, United States of America.; Kone, B., Fofana, B., Beilfuss, R. and Dodman, T. 2007. The impact of capture, domestication and trade on Black Crowned Cranes in the Inner Niger Delta, Mali. Ostrich: 78: 195-203.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Eljack, A.O. 1996. An overview of the status of the Black Crowned Cranes in Sudan. Proceedings of the African Crane and Wetland Training Workshop Wildlife Training Institute. Maun, Botswana. 157-158; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.; UNEP. 2007. Sudan. Post-conflict environmental assessment. UNEP. Nairobi, Kenya. 356","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Dekeyser, P. L. 1951. Mission A. Villiers au Togo et au Dahomey (1950). III. - Oiseaux. Études Dahomeennes: 5: 47-84.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Backhurst, G.C., Britton, H.A., Diamond, A.W., Gerhart, J.D., Mann, C.F., Meadows, B.S., Pearson, D.J., Reynolds, J.F. and Turner, D.A. 1980. Birds of East Africa - their habitat, status and distribution. East African Natural History Society. Nairobi, Kenya.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jackson, F. J. and Sclater, W. L. 1938. The birds of Kenya Colony and the Ugandan Protectorate. Gurney and Jackson. London.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Balearica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea pavonina","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54514,"full_name":"Asio otus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Long-eared owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Jovanovic, T.B. 2004. Mapping and monitoring of long-eared owl \u003Ci\u003EAsio otus\u003C/i\u003E winter roosts in Serbia: the first results. Ciconia (Serbia and Montenegro): 13: 45-48.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Manners, G. R. and Diekmann, J. 1996. Long-eared Owl \u003Ci\u003EAsio Otus\u003C/i\u003E breeding in north-west Syria. Sandgrouse: 18: 62.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54516,"full_name":"Balearica regulorum","author_year":"(E. T. Bennett, 1834)","common_names":[{"lang":"English","names":"Grey Crowned-Crane, South African Crowned Crane, Grey Crowned-crane","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C.W. and Grant, C.H.B. 1962. Birds of the southern third of Africa. Volume 1. Longmans. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 1996. The larger illustrated guide to birds of Southern Africa. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Schouteden, H. 1966. La faune ornithologique du Burundi. Doc. zool. Mus. Roy. Afr. centr.: 11: 1-81.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C.W. and Grant, C.H.B. 1962. Birds of the southern third of Africa. Volume 1. Longmans. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Owre, O. T. 1966. The Crowned Crane at Lake Rudolf. Bulletin of the British Ornithologists' Club: 86: 54-56.; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Beilfuss, R. 2008. Grey crowned cranes in Gorongosa National Park, Mozambique. African Cranes, Wetlands \u0026 Communities: Newsletter: 2: 12.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Parker, V. 1999. The atlas of the birds of Sul do Save, Southern Mozambique. Avian Demography Unit, University of Cape Town and Endangered Wildlife Trust. Cape Town and Johannesburg, South Africa.; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Schouteden, H. 1966. La faune ornithologique du Rwanda. Doc. zool. Mus. Roy. Afr. centr.: 10: 1-130.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Muheebwa, J.M. 2007. Crane abstracts: Stemming the decline of Grey Crowned Cranes and wetlands in Uganda through community-based conservation action. Ostrich: 78: 221-222.; Muheebwa-Muhoozi, J. 2001. The status of the Grey Crowned Crane \u003Ci\u003EBalearica regulorum\u003C/i\u003E in Uganda, with special reference to breeding. Ostrich Supplement: 15: 122-125.; Olupot, W., Mugabe, H. and Plumptre, A.J. 2009. Species conservation on human-dominated landscapes: the case of crowned crane breeding and distribution outside protected areas in Uganda. African Journal of Ecology: 48: 119-125.; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Benson, C. W., Brooke, R. K., Dowsett, R. J. and Irwin, M. P. S. 1971. The birds of Zambia. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Balearica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Anthropoides regulorum","author_year":"E. T. Bennett, 1834"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54518,"full_name":"Buteo lagopus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"English","names":"Rough-legged buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54519,"full_name":"Milvus migrans","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"black kite","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guerriat, H. and Ittelet, M. 1982. [A survey on the status of the Black Kite \u003Ci\u003EMilvus migrans\u003C/i\u003E in Belgium.]. Aves: 19: 183-191.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Norton, R. 2000. West Indies region. North American Birds: 54: 109-111.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hille, S. and Thiollay, J.-M. 2000. The imminent extinction of the kites \u003Ci\u003EMilvus milvus fasciicauda\u003C/i\u003E and \u003Ci\u003EM. m. migrans\u003C/i\u003E on the Cape Verde Islands. Bird Conservation International: 10: 361-369.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Green, A. A. and Rodewald, P. G. 1996. New bird records from Korup National Park and its environs, Cameroon. Malimbus: 18: 122-133; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dumbacher, J.P., Miller, J., Flannery, M.E. and Xiaojun, Y. 2010. Avifauna of the Gaoligong Shan Mountains of Western China: A hotspot of avian species diversity. Ornithological Monographs: 70: 30-63.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georgiev, A. 2003. Democratic Republic of the Congo, November 24th 2002 - June 26th 2003. http://www.birdtours.co.uk . ; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Schifferli, A. 1967. Vom Zug schweizerischer und deutscher Schwarzer Milane \u003Ci\u003EMilvus migrans\u003C/i\u003E nach Ringfunden. Orn. Beob.: 64: 34-51.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; White, C. M. N. and Bruce, M. D. 1986. The birds of Wallacea (Sulawesi, the Moluccas and Lesser Sunda Islands, Indonesia): an annotated checklist. British Ornithologists' Union Checklist No. 7. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.; Snow, D. W. 1979. Atlas of speciation in African non- passerine birds - addenda and corrigenda. Bulletin of the British Ornithologists' Club: 99: 66-68.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Anon. 1957. Un milan noir dans ses quartiers d'hiver. Nos Oiseaux: 1956: 340.; Baumann, E. 1894. Notizen. Ornithologische Monatsberichte: 2: 160.; Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jokele, I. 1974. Ringfunde des Schwarzen Milans (\u003Ci\u003EMilvus migrans\u003C/i\u003E). Auspicium: 5: 229-243.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Milvus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54526,"full_name":"Bubulcus ibis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Buff-backed Heron, Cattle Egret","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Oustalet, G. 1898. Catalogue des oiseaux du Dahomey remis par M. Miegemarque au Muséum d'Histoire Naturelle, en 1895. Bulletin du Muséum National d'Histoire Naturelle: 4: 361-364.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"introduced","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"ICPDR. 2007. Tisza river basin analysis 2007. International Commission for the Protection of the Danube River. Vienna, Austria. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Demey, R. 1995. Notes on the birds of the coastal and Kindia areas, Guinea. Malimbus: 17: 85-99.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Langrand, O. 1990. Guide to the birds of Madagascar. Yale University Press. New Haven and London.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skinner, J. 1992. Herons in the inner Niger Delta, Mali, West Africa. Heron Conservation Newsletter: 5: 1.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Vizi, O. and Vizi, A. 2006. Affirmed discovery of cattle egret (\u003Ci\u003EBubulcus ibis\u003C/i\u003E (L. 1758)) on Skadar Lake (Montenegro). Natura Montenegrina: 5: 171-172.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Heather, B. D. 1991. Cattle Egret numbers in New Zealand 1986-1990. Notornis: 35: 185-191.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Storer, R. W. 1989. Notes on Paraguayan birds. Occasional Papers of the Museum of Zoology, University of Michigan: 719: 21 pp.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Betleja, J. 1996. [First record of Cattle Egret (\u003Ci\u003EBubulcus ibis\u003C/i\u003E) in Poland.]. Notatki Orn.: 37: 141-143.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Anon. 1988. European news. British Birds: 81: 330-340.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Bubulcus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ibis","author_year":"Linnaeus, 1758"},{"full_name":"Ardeola ibis","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54566,"full_name":"Dendrocygna bicolor","author_year":"(Vieillot, 1816) ","common_names":[{"lang":"English","names":"Fulvous Tree-Duck, Fulvous Whistling-Duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"Angehr, G. 1999. The FieldEditor's report(s). El Tucán: 25: 3-4.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turnbull, R. E., Johnson, F. A. and Brakhage, D. H. 1989. Status, distribution and foods of Fulvous Whistling-duck in South Florida. Journal of Wildlife Management: 53: 1046-1051.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stanton, D. B. 2000. The first Fulvous Whistling-duck \u003Ci\u003EDendrocygna bicolor\u003C/i\u003E in Yemen and the Middle East. Sandgrouse: 22: 130-131.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas bicolor","author_year":"Vieillot, 1816"},{"full_name":"Dendrocygna fulva","author_year":"Hartlaub, 1844"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54569,"full_name":"Circus aeruginosus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Western Marsh-harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Green, A. A. and Rodewald, P. G. 1996. New bird records from Korup National Park and its environs, Cameroon. Malimbus: 18: 122-133; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A. and Malglaive, L. 2003. First documented record of the Marsh Harrier for the West Indies and the New World. North American Birds: 57: 564-565.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"extinct","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wells, D. R. 1999. The birds of the Thai-Malay Peninsula. Volume 1: Non-passerines. Academic Press. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54570,"full_name":"Buteo oreophilus","author_year":"Hartert \u0026 Neumann, 1914","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":54571,"full_name":"Butastur rufipennis","author_year":"(Sundevall, 1851)","common_names":[{"lang":"English","names":"Grasshopper buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Cheke, R. A. 1995. An historical breeding record in Mali and description of the young of the Grasshopper Buzzard \u003Ci\u003EButastur rufipennis\u003C/i\u003E. Malimbus: 17: 106-107.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54573,"full_name":"Dendrocygna viduata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"White-faced Tree-Duck, White-faced Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas viduata","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54576,"full_name":"Aviceda jerdoni","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Jerdon's baza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"Basnet, S., Holt, P. and Karki, R. 2000. Jerdon's Baza \u003Ci\u003EAviceda jerdoni\u003C/i\u003E: a new species for Nepal. Forktail: 16: 170--171.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Stepanyan, L. S. 1987. [The first record of \u003Ci\u003EAviceda jerdoni\u003C/i\u003E (Blyth 1842) (Accipitridae, Aves) in northern Viet Nam.]. Biol. Nauki (Mosc.): 1987: 42-45.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54577,"full_name":"Milvus milvus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Red kite","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hille, S. and Thiollay, J.-M. 2000. The imminent extinction of the kites \u003Ci\u003EMilvus milvus fasciicauda\u003C/i\u003E and \u003Ci\u003EM. m. migrans\u003C/i\u003E on the Cape Verde Islands. Bird Conservation International: 10: 361-369.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S. 2002. New observations of red kite (\u003Ci\u003EMilvus milvus\u003C/i\u003E) in Serbia during reproductive period. Ciconia (Serbia and Montenegro): 11: 136-139.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Geeson, J. and Geeson, J. 1990. First Red Kite record for the Gambia. Malimbus: 11: 144.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Harrison, J. M. 1955. The first occurrence of the Bateleur and Red Kite in Iraq. Bulletin of the British Ornithologists' Club: 75: 59-60.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mosimann, P. and Juillard, M. 1988. [Breeding status and winter distribution of the Red Kite \u003Ci\u003EMilvus milvus\u003C/i\u003E in Switzerland.]. Orn. Beob.: 85: 199-206.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Milvus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54578,"full_name":"Aquila rapax","author_year":"(Temminck, 1828)","common_names":[{"lang":"English","names":"Tawny eagle","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. 2005. Recent reports. Bulletin of the African Bird Club: 12(2): 176-191.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Prigogine, A. 1971. Les oiseaux de l`Itombwe et de son hinterland. Annales du Musée Royal de l`Afrique Centrale Serie In-8 Sciences Zoologiques: 185: 28-66; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brosset, A. and Erard, C. 1986. Les oiseaux des regions forestières du nord-est du Gabon, 1. Société Nationale de Protection de la Nature. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Pineau, O. 1990. Promotion of Ramsar Convention and survey of Lagoa de Cufada, Guinea Bissau. Unpublished report to IUCN. Bissau. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Snow, D. W. 1979. Atlas of speciation in African non- passerine birds - addenda and corrigenda. Bulletin of the British Ornithologists' Club: 99: 66-68.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclean, G. I. 1993. Roberts' birds of Southern Africa. Sixth Edition. Trustees of the John Voelcker Bird Book Fund. Cape Town.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54579,"full_name":"Egretta garzetta","author_year":"(Linnaeus, 1766) ","common_names":[{"lang":"English","names":"Little Egret","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Kazantzidis, S. and Goutner, V. 1996. Foraging ecology and conservation of feeding habitats of Little Egrets (Egretta garzetta) in the Axios River Delta, Macedonia, Greece. Colonial Waterbirds: 19: 115-121.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Ryan, R. 1997. First record of Little Egret \u003Ci\u003EEgretta garzetta\u003C/i\u003E for Guyana. Cotinga: 7: 92.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Fasola, M. and Romagnoli, L. 1995. Heron population trends in Italy (1976-1994). Avocetta: 19: 42.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1975. Further migrant birds in the Seychelles. Bulletin of the British Ornithologists' Club: 95: 48-50.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Blaber, S. J. M. 1990. A checklist and notes on the current status of the birds of New Georgia, Western Province, Solomon Islands. Emu: 90: 205-214.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. 1983. First record of the Little Egret (\u003Ci\u003EEgretta garzetta\u003C/i\u003E) in Suriname. Wilson Bulletin: 95: 315.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea garzetta","author_year":"Linnaeus, 1766"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54583,"full_name":"Falco alopex","author_year":"(Heuglin, 1861)","common_names":[{"lang":"English","names":"Fox kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54585,"full_name":"Strix uralensis","author_year":"Pallas, 1771","common_names":[{"lang":"English","names":"Ural owl","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Strix","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54587,"full_name":"Circus cyaneus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Hen Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54593,"full_name":"Asio flammeus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"English","names":"Short-eared owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mercado, N. K. 1985. Aves de Bolivia. Editorial Gisbert. La Paz.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Belton, W. 1984. Birds of Rio Grande do Sul, Brazil, part 1: Rheidae through Furnariidae. Bulletin of the American Museum of Natural History: 178: .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pinto, O. 1978. Novo catalogo das aves do Brasil. Departmento de Zoologia. Sao Paulo.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Araya, L. 1982. Lista patron de las aves Chilenas. Publicaciones ocasionales No. Instituto de Oceanologica, Universidad de Valparaiso, Vina del Mar, Chile.; Brooke, M. de L. 1987. The birds of the Juan Fernandez Islands, Chile. International Council for Bird Preservation, Study Report. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Slud, P. 1964. The birds of Costa Rica, distribution and ecology. Bulletin of the American Museum of Natural History: 128: 1-430.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Butler, L. Y. 1979. The birds of Ecuador and the Galapagos Archipelago. The Ramphastos Agency. Portsmouth, N.H.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wild Bird Society of Japan. 1982. A field guide to the birds of Japan. Tokyo.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Britton, P. L. (ed.) 1980. Birds of East Africa. East Africa Natural History Society. Nairobi.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Pont, J. E. du. 1971. Philippine birds. Delaware Museum of Natural History. Greenville, Delaware.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Swanbeck, A. B. and Seiler, C. F. 1987. First sighting of a Short-eared Owl in the US Virgin Islands. Florida Field Naturalist: 15: 52-53.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54601,"full_name":"Bugeranus carunculatus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Wattled Crane","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Collar, N. J. 1998. Wattled Cranes in Guinea-Bissau. Bulletin of the British Ornithologists' Club: 118: 57-58.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hazevoet, C. J. 1997. On a record of the Wattled Crane \u003Ci\u003EBugeranus carunculatus\u003C/i\u003E from Guinea-Bissau. Bulletin of the British Ornithologists' Club: 117: 56-59.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Williams, J. 1987. Wattled Crane survey in Caprivi. Quagga: 18: 22-23.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.; Tarboton, W. 1984. The status and conservation of the Wattled Crane in the Transvaal. Proceedings of the V Pan African Ornithological Congress . 665-678.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Bugeranus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea carunculata","author_year":"Gmelin, 1789"},{"full_name":"Grus carunculatus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54605,"full_name":"Anthropoides paradiseus","author_year":"(Lichtenstein, 1793)","common_names":[{"lang":"English","names":"Blue Crane, Stanley Crane","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Anthropoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea paradisea","author_year":"Lichtenstein, 1793"},{"full_name":"Grus paradisea","author_year":"(Lichtenstein, 1793)"},{"full_name":"Tetrapteryx paradisea","author_year":"(Lichtenstein, 1793)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54609,"full_name":"Anthropoides virgo","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Demoiselle Crane","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Shelton, N. 2001. Where to watch birds in Azerbaijan. Azerbaijan Publishing House. Baku.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Benson, S. V. 1970. Birds of Lebanon and the Jordan area. International Council for Bird Preservation. Cambridge (UK).; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain,extinct (?)","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. and Woodcock, M. W. 1980. The birds of Oman. Quartet Books. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roberts, T. J. 1991. The birds of Pakistan. Volume 1: Non-Passeriformes. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kasparek, M. 1988. The Demoiselle Crane, \u003Ci\u003EAnthropoides virgo\u003C/i\u003E, in Turkey: distribution and population of a highly endangered species. Zoology in the Middle East: 2(1): 31-38; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Grinchenko, A. 1988. [The present-day status of \u003Ci\u003EAnthropoides virgo\u003C/i\u003E (Linnaeus) in the Kerch Peninsula]. Papers from the fifth meeting of the Soviet working group on cranes, 9-13 September 1986 . Arkhara (USSR). 147; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Winter, S. V., Andrushchenko, Y. A. and Gorlov, P. I. 1995. The Demoiselle Crane in the Ukraine: status, ecology, and conservation prospects. European Crane Workig Group and Martin-Luther Universität . Halle and Wittenberg (Germany). 285-289.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Brooks, D. J., Evans, M. I., Martins, R. P. and Porter, R. F. 1987. The status of birds in North Yemen and the records of the OSME Expedition in autumn 1985. Sandgrouse: 9: 4-66.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Anthropoides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ardea virgo","author_year":"Linnaeus, 1758"},{"full_name":"Grus virgo","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Anthropoides spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54648,"full_name":"Nettapus auritus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"African Pygmy-goose","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Johnson, E. D. H. 1972. Observations on the birds of the Upper Blue Nile Basin. Bulletin of the British Ornithologists' Club: 92: 42-49.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Nettapus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas aurita","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54665,"full_name":"Phoeniconaias minor","author_year":"(Geoffroy Saint-Hilaire, 1798)","common_names":[{"lang":"English","names":"Lesser Flamingo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Turner, D. A. and Dowsett, R. J. 1988. Additions and corrections to Afrotropical and Malagasy avifaunas, 1. Western Indian Ocean islands. Tauraco: 1: 130-138.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Lassey, P. A. 1994. First record of Lesser Flamingo \u003Ci\u003EPhoenicopterus minor\u003C/i\u003E in Egypt. Sandgrouse: 16: 52-53.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Finlayson, C. 2010. Birds of the Strait of Gibraltar. A \u0026 C Black. 560 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nasirwa, O. 2000. Conservation status of flamingos in Kenya. Waterbirds (Special Publication): 23: 47-51.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Seddon, N., Tobias, J., Yount, J. W., Ramanampamonjy, J. R., Butchart, S. and Randrianizahana, H. 2000. Conservation issues and priorities in the Mikea Forest of south-west Madagascar. Oryx: 34: 287-304.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":" Childress, B., Nagy, S. \u0026 Hughes, B. (Compilers). 2007. International Single Species Action Plan for the Conservation of the Lesser Flamingo (\u003Ci\u003EPhoenicopterus minor\u003C/i\u003E). AEWA Technical Series. Bonn, Germany; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Chaudry, M.J.I., Arshad, M. \u0026 Akbar, G. 2012. Some observations on Threatened and Near Threatened avifauna of Pakistan. 21: 65-72; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoeniconaias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phoenicopterus minor","author_year":"Geoffroy, 1798"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54667,"full_name":"Phoenicopterus roseus","author_year":"Pallas, 1811","common_names":[{"lang":"English","names":"Greater Flamingo","convention_language":true,"id":null},{"lang":"French","names":"Flamant rose","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54668,"full_name":"Phoenicopterus ruber","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"American Flamingo, Caribbean Flamingo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Gauger, K. \u0026 Pietzsch, D. 2005. The National Park Lake Ag-Gel – contributions to the Avifauna of Azerbaijan. 44(4):57-68","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Otoch, R., Luigi, G., Raposo, M. A. and Almeida, A. C. C. de. 1993. Notes on some birds of northeastern Brazil (5). Bulletin of the British Ornithologists' Club: 113: 48-52.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"reintroduced","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Turner, D. A. and Dowsett, R. J. 1988. Additions and corrections to Afrotropical and Malagasy avifaunas, 1. Western Indian Ocean islands. Tauraco: 1: 130-138.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Buden, D.W. 1993. Bird band recoveries from Haiti and the Dominican Republic. Caribbean Journal of Science: 29: 179-185.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kebede, E. and Hillman, J. C. 1989. First recorded breeding of Greater Flamingos \u003Ci\u003EPhoenicopterus ruber roseus\u003C/i\u003E in Ethiopia. Flamingo Research Group Newsletter: 5: 7.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Johnson, A. R. 1989. Population studies and conservation studies of Greater Flamingos in the Camargue. Pp.49-63 in Spaans, A. L. Wetlands en Watervoegels. Pudoc. Wageningen, the Netherlands.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Finlayson, C. 2010. Birds of the Strait of Gibraltar. A \u0026 C Black. 560 pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1969. Peuplements et cycles de reproduction des oiseaux de la côte occidentale d'Afrique, du Cap Barbas, Sahara Espagnol, à la frontière de la République de Guinée. Mém. Mus. Nat. Hist. Paris sér. A, Zool.: 56: 1-312.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Buden, D.W. 1993. Bird band recoveries from Haiti and the Dominican Republic. Caribbean Journal of Science: 29: 179-185.; Ottenwalder, J. A. 1988. Flamingos in Haiti. World Birdwatch: 10: 8.; Ottenwalder, J. A., Woods, C. A., Rathburn, G. B. and Thorbjarneson, J. B. 1990. Status of the Greater Flamingo in Haiti. Colonial Waterbirds: 13: 115-123.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Nasirwa, O. 2000. Conservation status of flamingos in Kenya. Waterbirds (Special Publication): 23: 47-51.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Baldassarre, G. A. and Arengo, F. 2000. A review of the ecology and conservation of Caribbean Flamingos in Yucatán, Mexico. Waterbirds (Special Publication): 23: 70-79.; Espino-Barros, R. and Baldassarre, G. A. 1989. Numbers, migration chronology, and activity patterns of non-breeding Caribbean Flamingos in Yucatan, Mexico. Condor: 91: 585-591.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Voous, K.H. 1985. Additions to the avifauna of Aruba, Curaçao, and Bonaire, South Caribbean. \u003Ci\u003EOrnithological Monographs\u003C/i\u003E 36: 247-254","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Arshad, M. Mehmood, N., Muqadas, H., Chaudhry, J., Mustafa, I., Khan, M. R., Maliks, I.U. \u0026 Ahmed, H. 2014. Avifauna Studies in Co-Relation with Alteration in Climatic Patterns and Hydrology of Uchalli Lake, Punjab, Pakistan. Pakistan Journal of Zoology 46(2):503-515","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1975. Further migrant birds in the Seychelles. Bulletin of the British Ornithologists' Club: 95: 48-50.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Espinoza, F., Parra, L., Aranguren, J., Martino, A., Quijada, M., Pirela, D., Rivero, R., Gutierrez, T., Jimenez, N., Leal, S. and Leon, E. 2000. Numbers and distribution of the Caribbean Flamingo in Venezuela. Waterbirds (Special Publication): 23: 80-86.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":54674,"full_name":"Plectropterus gambensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Spur-winged Goose","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1969. Peuplements et cycles de reproduction des oiseaux de la côte occidentale d'Afrique, du Cap Barbas, Sahara Espagnol, à la frontière de la République de Guinée. Mém. Mus. Nat. Hist. Paris sér. A, Zool.: 56: 1-312.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Plectropterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas gambensis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54690,"full_name":"Sarkidiornis melanotos","author_year":"(Pennant, 1769)","common_names":[{"lang":"English","names":"Comb Duck, Knob-billed Goose, African Comb Duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Contreras-Balderas, A. J. 1988. New records of birds from Nuevo Leon, Mexico. Southwestern Naturalist: 33: 251-252.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Humphrey, S. R. and Bain, J. R. 1990. Endangered animals of Thailand. Sandhill Crane Press, Inc. Florida.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Achaval, F. 1989. Lista de especies de vertebratos del Uruguay. Parte 2: Anfibios, reptiles aves y mamíferos. Facultad de Humanidades y Ciencias, Universidad de la Republica, Uruguay.; Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Sarkidiornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anser melanotos","author_year":"Pennant, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":66107,"full_name":"Grus americana","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Whooping Crane","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Urbanek, R.P., Fondow, L.E.A., Zimorski, S.E., Wellington, M.A. and Nipper, M.A. 2010. Winter release and management of reintroduced migratory Whooping Cranes \u003Ci\u003EGrus americana\u003C/i\u003E. Bird Conservation International: 20: 43-54.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66116,"full_name":"Accipiter poliogaster","author_year":"(Temminck, 1824)","common_names":[{"lang":"English","names":"Grey-bellied Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1992. Guía de Aves Argentinas. Second edition. Vol. 2. Falconiformes-Charadriiformes. Literature of Latin America (L.O.L.A.). Buenos Aires.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Howell, S. N. G. 2002. Additional information on the birds of Ecuador. Cotinga: 18: 62-65.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Thiollay, J.-M. 1989. Area requirements for the conservation of rain forest raptors and game birds in French Guiana. Conservation Biology: 3: 128-137.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Barnett, A., Shapley, R., Benjamin, P., Henry, E. and McGarrell, M. 2002. Birds of the Potaro Plateau, with eight new species for Guyana. Cotinga: 18: 19-36.; Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. 1972. \u003Ci\u003EAccipiter poliogaster\u003C/i\u003E in Surinam. Journal für Ornithologie: 113: 338-339.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66125,"full_name":"Accipiter fasciatus","author_year":"(Vigors \u0026 Horsfield, 1827)","common_names":[{"lang":"English","names":"Brown Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; Olson, P. D., Crome, F. and Olson, J. 1993. Birds of prey and ground birds of Australia. Australian Museum and Angus \u0026 Robertson. Sydney.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Thiollay, J. M. 1993. Habitat segregation and the insular syndrome: two congeneric raptors in New Caledonia: the White-bellied Goshawk \u003Ci\u003EAccipiter haplochrous\u003C/i\u003E and the Brown Goshawk \u003Ci\u003EA. fasciatus\u003C/i\u003E. Ibis: 135: 237-246.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R. and Soares, T. 2004. Birds of Atauro Island, Timor-Leste (East Timor). Forktail: 20: 41-48.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66146,"full_name":"Accipiter striatus","author_year":"Vieillot, 1807","common_names":[{"lang":"English","names":"Sharp-shinned Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1992. Guía de Aves Argentinas. Second edition. Vol. 2. Falconiformes-Charadriiformes. Literature of Latin America (L.O.L.A.). Buenos Aires.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Pacheco, J. F. and Whitney, B. M. 1995. Range extensions for some birds in northeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 157-163.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Norton, R. L. 1999. West Indies region. North American Birds: 53: 110-111.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; Schaller, G. B. 1985. China's golden treasure. International Wildlife: 15: 29-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66147,"full_name":"Accipiter cooperii","author_year":"(Bonaparte, 1828)","common_names":[{"lang":"English","names":"Cooper's Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Edwards, E. P. 1998. A field guide to the birds of Mexico and adjacent areas: Belize, Guatemala and El Salvador. University of Texas Press. Texas, USA.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Forcey, J. M. 2001. Breeding of Cooper's Hawk (\u003Ci\u003EAccipiter cooperii\u003C/i\u003E) in Oaxaca. Huitzil: 2: 21-23.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66149,"full_name":"Accipiter bicolor","author_year":"(Vieillot, 1817)","common_names":[{"lang":"English","names":"Bicolored Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Vallely, A. C. and Aversa, T. 1997. New and noteworthy bird records from Belize including the first record of Chestnut-collared Swift \u003Ci\u003ECypseloides rutilus\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 117: 272-274.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66150,"full_name":"Accipiter melanoleucus","author_year":"Smith, 1830","common_names":[{"lang":"English","names":"Black Sparrowhawk","convention_language":true,"id":null},{"lang":"French","names":"Autour noir","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Sinsin, B. 1995. La forêt classée de la Lama: aperçu général d'un écosystème naturel aménagé dans un environnement socio-économique. Notes du Laboratoire d'Ecologie Appliquée de la FSA/UN Bénin No. 3.; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Scott, D. A. and Pineau, O. 1990. Promotion of Ramsar Convention and survey of Lagoa de Cufada, Guinea Bissau. Unpublished report to IUCN. Bissau. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclean, G. I. 1993. Roberts' birds of Southern Africa. Sixth Edition. Trustees of the John Voelcker Bird Book Fund. Cape Town.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66156,"full_name":"Buteo lineatus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Red-shouldered Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66158,"full_name":"Buteo platypterus","author_year":"(Vieillot, 1823)","common_names":[{"lang":"English","names":"Broad-winged Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66161,"full_name":"Buteo albigula","author_year":"Philippi, 1899","common_names":[{"lang":"English","names":"White-throated Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Anon. 1995. Lista de las aves de Bolivia. Asociación Armonía. Santa Cruz, Bolivia.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Høgsås, T. E., Málaga-Arenas, E. and Neyra, J. P. 2002. Noteworthy bird records for south-west Peru. Cotinga: 17: 60-61.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66162,"full_name":"Buteo swainsoni","author_year":"Bonaparte, 1838","common_names":[{"lang":"English","names":"Swainson's Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1979. Notes on some Brazilian birds. Bulletin of the British Ornithologists' Club: 99: 115-120.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Marín, M. 2000. El aguilucho langostero \u003Ci\u003EButeo swainsoni\u003C/i\u003E una nueva especie que se debe agregar a la lista de aves Chilenas. Boletín Chileno de Ornitología: 7: 26.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Bradshaw, C. G., Kirwan, G. M. and Williams, R. S. R. 1997. First record of Swainson's Hawk \u003Ci\u003EButeo swainsoni\u003C/i\u003E for the West Indies. Bulletin of the British Ornithologists' Club: 117: 315-316.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Andres, B., Haag, W. and Andres, S. 1991. Recent records of Swainson's Hawk in Trinidad and Tobago. Journal of the Trinidad and Tobago Field Naturalists Club 1991-1992: 45.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.; Hayes, F. E. 2001. First sight records of Swainson's Hawk (\u003Ci\u003EButeo swainsoni\u003C/i\u003E) for Trinidad and Chacachacare Island, with comments on its status and trans-Caribbean migration. El Pitirre: 14: 63-65.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66167,"full_name":"Buteo albonotatus","author_year":"Kaup, 1847","common_names":[{"lang":"English","names":"Zone-tailed Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fraga, R. M. and Clark, R. 1999. Notes on the avifauna of the upper Bermejo River (Argentina and Bolivia) with a new species for Argentina. Cotinga: 12: 77-78.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66169,"full_name":"Buteo jamaicensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Red-tailed Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"extinct","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Castaño R., A. M. and Colorado Z., G. J. 2002. First records of Red-tailed Hawk \u003Ci\u003EButeo jamaicensis\u003C/i\u003E in Colombia. Cotinga: 18: 102.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66172,"full_name":"Buteo regalis","author_year":"(Gray, 1844)","common_names":[{"lang":"English","names":"Ferruginous Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66183,"full_name":"Hieraaetus ayresii","author_year":"Gurney, 1862","common_names":[{"lang":"English","names":"Ayres's Hawk-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Demey, R. 1999. Recent reports. Bulletin of the African Bird Club: 6(2): 152-157; Demey, R. 2000. Recent reports. Bulletin of the African Bird Club: 7(2): 144-151; Demey, R. 2004. Recent reports. Bulletin of the African Bird Club: 11(2): 168-182; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Ash, J. S. 1981. Ayres' Hawk Eagle \u003Ci\u003EHieraaetus dubius\u003C/i\u003E in Ethiopia and Somalia. Scopus : 5: 54-56.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1981. Ayres' Hawk Eagle \u003Ci\u003EHieraaetus dubius\u003C/i\u003E in Ethiopia and Somalia. Scopus : 5: 54-56.; Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Stresemann, E. 1924. Über \u003Ci\u003EHieraaëtus ayresii\u003C/i\u003E und \u003Ci\u003ESpizaëtus africanus\u003C/i\u003E. Novitates Zoologicae: 31: 214-216.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66195,"full_name":"Butastur teesa","author_year":"(Franklin, 1831)","common_names":[{"lang":"English","names":"White-eyed Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66196,"full_name":"Circus cinereus","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Cinereous Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Marin A., M., Kiff, L. F. and Peña G., L. 1989. Notes on Chilean birds, with descriptions of two new subspecies. Bulletin of the British Ornithologists' Club: 109: 66-82.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66197,"full_name":"Circus assimilis","author_year":"Jardine \u0026 Selby, 1828","common_names":[{"lang":"English","names":"Spotted Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66198,"full_name":"Circus buffoni","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Long-winged Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Helme, N. A. 1996. New departmental records for Dpto. La Paz, Bolivia, from the Pampas del Heath. Bulletin of the British Ornithologists' Club: 116: 175-177.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66200,"full_name":"Circus approximans","author_year":"Peale, 1848","common_names":[{"lang":"English","names":"Swamp Harrier, Australasian Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Beecher, W. J. 1945. A bird collection from the Solomon Islands. Fieldiana, Zoology: 31: 31-37.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66202,"full_name":"Circaetus cinerascens","author_year":"von Müller, 1851","common_names":[{"lang":"English","names":"Western Banded Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Brown, C. J. and Hines, C. J. H. 1987. Western Banded Snake Eagles in Namibia. Gabar: 2: 40-42.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66203,"full_name":"Circaetus cinereus","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Brown Snake-eagle","convention_language":true,"id":null},{"lang":"French","names":"Circaète brun","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66204,"full_name":"Circaetus fasciolatus","author_year":"Kaup, 1850","common_names":[{"lang":"English","names":"Southern Banded Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66205,"full_name":"Circaetus pectoralis","author_year":"A. Smith, 1829","common_names":[{"lang":"English","names":"Black-chested Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66206,"full_name":"Gyps coprotheres","author_year":"(Forster, 1798)","common_names":[{"lang":"English","names":"Cape Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bamford, A.J., Diekmann, M., Monadjem, A. and Mendelsohn, J. 2007. Ranging behaviour of Cape Vultures \u003Ci\u003EGyps coprotheres\u003C/i\u003E from an endangered population in Namibia. Bird Conservation International: 17: 331-339.; Brown, C. J. 1985. The status and conservation of the Cape Vulture in SWA/Namibia. Vulture News: 14: 4-15.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Boshoff, A. F. and Robertson, A. S. 1985. A conservation plan for the Cape Vulture colony at Potberg, de Hoop Nature Reserve, southwestern Cape Province. Bontebok: 4: 25-31.; Boshoff, A. F. and Vernon, C. J. 1987. The Cape Vulture colonies at Karnmelkspruit 1984-1986 and Balloch 1978- 1986, north-eastern Cape Province. Vulture News: 17: 31-36.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Piper, S. E. and Ruddle, P. 1986. An initial evaluation of the Cape Vulture colonies at Mkambati, Transkei. Vulture News: 15: 7-12.; Robertson, A. and February, E. 1986. Towards an historical perspective of Cape Vultures and domestic stock: a view from the southwestern Cape. Vulture News: 15: 4-6.; Vernon, C. J. and Piper, S. E. 1986. The Cape Vulture colony at Colleywobbles, Transkei, in 1984 and 1985. Vulture News: 15: 27-28.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. 1979. Recent additions to the Zambian list. Bulletin of the British Ornithologists' Club: 99: 94-98.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66207,"full_name":"Gyps himalayensis","author_year":"Hume, 1869","common_names":[{"lang":"English","names":"Himalayan Griffon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Acharya, R., Cuthbert, R., Baral, H.S. and Shah, K.B. 2009. Rapid population declines of Himalayan Griffon \u003Ci\u003EGyps himalayensis\u003C/i\u003E in Upper Mustang, Nepal. Bird Conservation International: 19: 99-107.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66209,"full_name":"Gyps indicus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Indian Vulture, Long-billed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66210,"full_name":"Gyps bengalensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"White-rumped Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S., Giri, J. B. and Virani, M. Z. 2004. On the decline of Oriental White-backed Vultures \u003Ci\u003EGyps bengalensis\u003C/i\u003E in lowland Nepal. Pp. 215-219 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Gilbert, M., Virani, M. Z., Watson, R. T., Oaks, J. L., Benson, P. C., Khan, A. A., Ahmed, S., Chaudhry, J., Arshad, M., Mahmood, S. and Shah, Q. A. 2002. Breeding and mortality of Oriental White-backed Vulture \u003Ci\u003EGyps bengalensis\u003C/i\u003E in Punjab Province, Pakistan. Bird Conserv. Internatn.: 12: 311-326.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66211,"full_name":"Gyps africanus","author_year":"Salvadori, 1865","common_names":[{"lang":"English","names":"White-backed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66212,"full_name":"Haliaeetus leucocephalus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Bald Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Counsell, D. 1988. The RAFOS expedition to Belize Feb- Mar 1986. Royal Air Force Ornithological Society Journal: 18: 17-63.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66222,"full_name":"Falco sparverius","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"American Kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Boal, C.W., Sibley, F.C., Estabrook, T.S. and Lazell, J. 2006. Insular and migrant species, longevity records, and new species records on Guana Islands, British Virgin Islands. \u003Ci\u003EThe Wilson Journal of Ornithology\u003C/i\u003E 118(2): 218-224","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Angehr, G. 1997. The Fieldeditor's report. El Tucan: 23: 4-5.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66223,"full_name":"Falco rupicoloides","author_year":"Smith, 1829","common_names":[{"lang":"English","names":"Greater Kestrel","convention_language":true,"id":null},{"lang":"French","names":"Crécerelle aux yeux blancs","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66225,"full_name":"Falco rufigularis","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Bat Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66227,"full_name":"Phoenicopterus chilensis","author_year":"Molina, 1782","common_names":[{"lang":"English","names":"Chilean Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Flamenco Chileno","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66230,"full_name":"Coscoroba coscoroba","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Coscoroba Swan","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Tobias, J. A. and Seddon, N. 2007. Ornithological notes from southern Bolivia. Bulletin of the British Ornithologists' Club: 127: 293-300.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Hayes, F. E., Goodman, S. M. and López, N. E. 1990. New or noteworthy bird records from the Matogrosense region of Paraguay. Bulletin of the British Ornithologists' Club: 110: 94-103.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Coscoroba","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66234,"full_name":"Phalcoboenus australis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Striated Caracara","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Phalcoboenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66294,"full_name":"Buteogallus meridionalis","author_year":"(Latham, 1790)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteogallus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66297,"full_name":"Buteogallus anthracinus","author_year":"(Depp, 1830)","common_names":[{"lang":"English","names":"Common Black Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteogallus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66318,"full_name":"Melierax canorus","author_year":"(Rislachi, 1799)","common_names":[{"lang":"English","names":"Pale Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66319,"full_name":"Melierax metabates","author_year":"Heuglin, 1861","common_names":[{"lang":"English","names":"Dark Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66320,"full_name":"Melierax poliopterus","author_year":"Cabanis, 1869","common_names":[{"lang":"English","names":"Eastern Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66322,"full_name":"Kaupifalco monogrammicus","author_year":"(Temminck, 1824)","common_names":[{"lang":"English","names":"Lizard Buzzard","convention_language":true,"id":null},{"lang":"French","names":"Buse unibande","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Bannerman, D. A. 1931. Account of the birds collected (i) by Mr. G. L. Bates on behalf of the British Museum in Sierra Leone and French Guinea; (ii) by Lt. Col. G. J. Houghton, R. A. M. C. in Sierra Leone, recently acquired by the British Museum. Ibis: 13(1-2): 661-697, 217-261.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Kaupifalco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66335,"full_name":"Spilornis cheela","author_year":"(Latham, 1790)","common_names":[{"lang":"English","names":"Crested Serpent-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Woo, Y.-T. and Lee, J.-N. 1996. Newly recorded birds of 6 species and subspecies in Korea. Korean Journal of Ornithology: 3: 59-61.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Spilornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66337,"full_name":"Terathopius ecaudatus","author_year":"(Daudin, 1800)","common_names":[{"lang":"English","names":"Bateleur","convention_language":true,"id":null},{"lang":"French","names":"Aigle bateleur","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Elleström, O., Engelbrecht, C., Grandin, B., Erling, J., Kjellen, N. Nordin, J., Sjölinder, B.-E., Stemme, S. and Zetterström, D. 2003. Cameroon 2003. Accessed at \u003Cwww.pheromone.ekol.lu.se/Cameroon03.pdf\u003E, 09/2005 Unpublished. ; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, J. M. 1955. The first occurrence of the Bateleur and Red Kite in Iraq. Bulletin of the British Ornithologists' Club: 75: 59-60.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ottosson, U. 1993. An observation of Bateleur \u003Ci\u003ETerathopius ecaudatus\u003C/i\u003E in northern Tunisia. Bulletin of the British Ornithologists' Club: 113: 62-63.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Terathopius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66339,"full_name":"Sarcogyps calvus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Red-headed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Sarcogyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66341,"full_name":"Trigonoceps occipitalis","author_year":"(Burchell, 1824)","common_names":[{"lang":"English","names":"White-headed Vulture","convention_language":true,"id":null},{"lang":"French","names":"Vautour à tête blanche","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Borrow, N. and Demey, R. 2004. Field guide to the birds of western Africa. Christopher Helm. London, United Kingdom.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mackworth-Praed, C.W. and Grant, C.C.H.B. 1970. African handbook of birds, Series III, Volume I: Birds of west central and western Africa. Longman. London, United Kingdom.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Trigonoceps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66345,"full_name":"Necrosyrtes monachus","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Hooded Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Louette, M. 1988. Additions and corrections to the avifauna of Zaire (2). Bulletin of the British Ornithologists' Club: 108: 43-50.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Necrosyrtes","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66350,"full_name":"Ictinia plumbea","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Plumbeous Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Stiles, F. G., Rosselli, L. and Bohórquez, C. I. 1999. New and noteworthy records of birds from the middle Magdalena valley of Colombia. Bulletin of the British Ornithologists' Club: 119: 113-129.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66351,"full_name":"Ictinia mississippiensis","author_year":"(Wilson, 1811)","common_names":[{"lang":"English","names":"Mississippi Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wingate, D. B. 2002. Mississippi Kite - new record for Bermuda. Bermuda Audubon Soc. Newsletter: 13: 2-3.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Shaw, D. and Maxwell, T. C. 1988. First record of the Mississippi Kite for Bolivia. Journal of Raptor Research: 22: 90.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Kirwan, G. M., Mazar Barnett, J., Vasconcelos, M. F., Raposo, M. A., D'Angelo Neto, S. and Roesler, I. 2004. Further comments on the avifauna of the middle São Francisco Valley, Minas Gerais, Brazil. Bulletin of the British Ornithologists' Club: 124: 207-220.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Burke, P., Kirkconnell, A. and Whitehouse, S. M. 2000. Franklin's Gull \u003Ci\u003ELarus pipixcan\u003C/i\u003E and Mississippi Kite \u003Ci\u003EIctinia mississippiensis\u003C/i\u003E new to Cuba. Cotinga: 14: 101-102.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66353,"full_name":"Harpagus diodon","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Rufous-thighed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Meyer de Schauensee, R. 1982. A guide to the birds of South America. Academy of Natural Sciences. Philadelphia.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Harpagus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66360,"full_name":"Elanus leucurus","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-tailed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Sarasola, J.H., Santillan, M.A. and Galmes, M.A. 2007. Comparison of food habits and prey selection of the white-tailed kite, \u003Ci\u003EElanus leucurus\u003C/i\u003E, between natural and disturbed areas in central Argentina. Studies on Neotropical Fauna and Environment: 42: 85-91.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.; Smith, D. W. and Ireland, J. 1992. First record of the Black-shouldered Kite for Canada. Western Birds: 23: 177-178.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Salaman, P., Donegan, T. M. and Cuervo, A. M. 2002. New distributional bird records from Serrania de San Lucas and adjacent Central Cordillera of Colombia. Bulletin of the British Ornithologists' Club: 122: 285-303.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Elanus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66368,"full_name":"Elanoides forficatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Swallow-tailed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. and Navarro, C. 2004. New and noteworthy records of birds from the Sierra Nevada de Santa Marta region, north-eastern Colombia. Bulletin of the British Ornithologists' Club: 124: 38-51.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Willard, D. E., Foster, M. S., Barrowclough, G. F., Dickerman, R. W., Cannell, P. F., Coats, S. L., Cracraft, J. L. and O'Neill, J. P. 1991. The birds of Cerro de la Neblina, Territorio Federal Amazonas, Venezuela. Fieldiana Zoology: 66: 80.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Elanoides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66377,"full_name":"Chondrohierax uncinatus","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Hook-billed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Herzog, S. K., Fjeldsa, J., Kessler, M. and Balderrama, J. A. 1999. Ornithological surveys in the Cordillera Cocapata, depto. Cochabamba, Bolivia, a transition zone between humid and dry intermontane Andean habitats. Bulletin of the British Ornithologists' Club: 119: 162-177.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Ericson, P. G. P. and Amarillo, L. A. 1997. First observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 117: 60-67.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Walker, B. 2002. Observations from the Tumbes Reserved Zone, dpto. Tumbes, with notes on some new taxa for Peru and a checklist of the area. Cotinga: 18: 37-43.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Chondrohierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66381,"full_name":"Gypohierax angolensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Palm-nut Vulture","convention_language":true,"id":null},{"lang":"French","names":"Vautour palmiste","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fishpool, L. D. C. and Evans, M. I (eds.) 2001. Important bird areas in Africa and associated islands: priority sites for conservation. Conservation Series No. 11 UK Pisces Publication and BirdLife International. Newbury and Cambridge.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Georgiev, A. 2003. Democratic Republic of the Congo, November 24th 2002 - June 26th 2003. http://www.birdtours.co.uk . ; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1892. Zur vogelfauna von Togoland. Journal für Ornithologie: 40: 233-236.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gypohierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66387,"full_name":"Haliastur indus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Brahminy Kite","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.; Rothschild, W. and Hartert, E. 1908. The birds of Vella Lavella, Solomon Islands. Novitates Zoology: XV: 351-358.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66494,"full_name":"Kobus kob","author_year":"(Erxleben, 1777)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Kobus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66497,"full_name":"Eudorcas rufifrons","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Red-fronted Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Gazelle à front roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Gacela de frente roja","convention_language":true,"id":null}],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Eudorcas","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66499,"full_name":"Cardellina canadensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Canada Warbler","convention_language":true,"id":null},{"lang":"Spanish","names":"Reinita Canadiense","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Cardellina","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66502,"full_name":"Alopias superciliosus","author_year":"Lowe, 1841","common_names":[{"lang":"English","names":"Bigeye Thresher","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Bard, F., Josse, E. and Stein, A. 1998. \u003Ci\u003EBigeye tuna (Thunnus obesus) and the tuna fisheries of French Polynesia. California, United States: Inter-american Tropical Tuna Commission\u003C/i\u003E, 1-171.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Megalofonou, P., Damalas, D. and Yannopoulos, C. (2005). Composition and abundance of pelagic shark by-catch in the eastern Mediterranean Sea. \u003Ci\u003ECybium\u003C/i\u003E, 29(2): 135-140.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Trejo, T. 2005. \u003Ci\u003EGlobal phylogeography of thresher sharks (Alopias spp.) inferred from mitochondrial DNA control region sequences\u003C/i\u003E. Masters in Marine Science, California State University Monterey Bay. United States.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Kleitou, P., Antoniou, C., Giovos, I. and Kletou, D. 2017. How accurately are we describing the longline bycatch? The case of the ‘rare’ shark \u003Ci\u003EAlopias superciliosus\u003Ci\u003E in eastern Mediterranean. \u003Ci\u003EInternational Journal of Fisheries and Aquatic Studies\u003C/i\u003E 2017, 5(3): 375-378.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Cao, D., Song, L., Zhang, Y., Lv, K. and Hu, Z. 2011. Environmental preferences of \u003Ci\u003EAlopias superciliosus\u003C/i\u003E and \u003Ci\u003EAlopias vulpinus\u003C/i\u003E in waters near Marshall Islands. \u003Ci\u003ENew Zealand Journal of Marine and Freshwater Research\u003C/i\u003E, 45(1): 103-119.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kabasakal, H. and Karhan, S. 2008. On the occurrence of the bigeye thresher shark, Alopias superciliosus (Chondrichthyes: Alopiidae), in Turkish waters. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E1: 1-3.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66503,"full_name":"Alopias vulpinus","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"English","names":"Common Thresher","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Fischer, W. and Bianchi, G. 1984. \u003Ci\u003EFAO species identification sheets for fishery purposes. Western Indian Ocean (Fishing Area 51)\u003C/i\u003E. Food and Agricultural Organization of the United Nations, Rome.; Fischer, W. and Bianchi, G. 1984. \u003Ci\u003EFAO species identification sheets for fishery purposes. Western Indian Ocean (Fishing Area 51)\u003C/i\u003E. Food and Agricultural Organization of the United Nations, Rome.; NOAA. 2015. Endangered and threatened wildlife 90-day finding on a petition to list the common thresher shark as threatened or endangered under the endangered species act. \u003Ci\u003EFederal Register\u003C/i\u003E, 80(41): 46–53.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; NOAA. 2015. Endangered and threatened wildlife 90-day finding on a petition to list the common thresher shark as threatened or endangered under the endangered species act. \u003Ci\u003EFederal Register\u003C/i\u003E, 80(41): 46–53.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Gonzalez-Pestana, A., Kouri J., C. and Velez-Zuazo, X. 2014. Shark fisheries in the Southeast Pacific: A 61-year analysis from Peru. \u003Ci\u003EF1000Research\u003C/i\u003E, 3:1–16.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66504,"full_name":"Alopias pelagicus","author_year":"Nakamura, 1935","common_names":[{"lang":"English","names":"Pelagic Thresher Shark","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Khalaf, M. and Zajonz, U. 2007. \u003Ci\u003EFourteen additional fish species recorded from below 150 m depth in the Gulf of Aqaba, including Liopropoma lunulatum (Pisces: Serranidae), new record for the Red Sea\u003C/i\u003E. Fauna of Arabia, 23: 421–433.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R.C., Adam, M.S. and Saleem, M.R. 2011. Shark Longline Fishery in the Northern Maldives. \u003Ci\u003EIOTC Proceedings 2011\u003C/i\u003E, 27(7): 1–24.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Cornejo, R., Velez-Zuazo, X., Gonzalez-Pestana, A., Kouri, C. and Mucientes, G.R. 2015. An updated checklist of Chondrichthyes from the southeast Pacific off Peru. Check List, 11(6): 1–7.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Purivirojkul, W., Chaidee, P. and Thapanand-Chaidee, T. 2009. Parasites of deep-sea sharks from the Andaman sea with six new records of parasites in Thailand. \u003Ci\u003EKasetsart Journal - Natural Science\u003C/i\u003E, 43(5): 93–99.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66508,"full_name":"Carcharhinus falciformis","author_year":"(Müller \u0026 Henle, 1839)","common_names":[{"lang":"English","names":"Silky Shark","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66511,"full_name":"Mobula mobular","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"English","names":"Giant Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hanel, R. and John, H.C. 2015. A revised checklist of Cape Verde Islands sea fishes. \u003Ci\u003EJournal of Applied Ichthology\u003C/i\u003E, 31: 135–169.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Migdalski, E.C. and Fichter, G.S. 1989. \u003Ci\u003EThe Fresh and Saltwater Fishes of the World\u003C/i\u003E. Greenwich House, Hong Kong. 316 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V, Bineesh, K.K., Gopalakrishnan, A., Jena, J.K., Basheer, V.S. and Pillai, N.G.K. 2014. Checklist of Chondrichthyans in Indian waters. \u003Ci\u003EJournal of the Marine Biological Association of India\u003C/i\u003E, 56(1): 109–120.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Akyol, O., Erdem, M., Unal, V. and Ceyhan, T. 2005. Investigations on Drift-Net Fishery for Swordfish (\u003Ci\u003EXiphias gladius L.\u003C/i\u003E) in the Aegean Sea. \u003Ci\u003ETurkish Journal of Veterinary and Animal Sciences\u003C/i\u003E, 29: 1225–1231.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Raja diabolus","author_year":"Shaw, 1804"},{"full_name":"Raja giorna","author_year":"Lacépède, 1802"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula diabolus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula diabolus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66512,"full_name":"Mobula japanica","author_year":"(Müller \u0026 Henle, 1841)","common_names":[{"lang":"English","names":"Spinetail Mobula, Spinetail Devil Ray, Japanese Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Manta Aguillat","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta De Espina, Mante De Aguijón","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula rancureli\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula rancureli\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66513,"full_name":"Mobula thurstoni","author_year":"(Lloyd, 1908)","common_names":[{"lang":"English","names":"Bentfin Devil Ray, Lesser Devil Ray, Smoothtail Devil Ray, Smoothtail Mobula, Thurton’s Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante Vampire","convention_language":true,"id":null},{"lang":"Spanish","names":"Chupasangre, Chupa Sangre, Diablo, Diablo Chupasangre, Diablo Manta, Manta, Manta Diablo, Manta Raya, Muciélago","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Navia, A.F., Mejía-falla, P.A. and Hleap, J.S. 2016. Zoogeography of Elasmobranchs in the Colombian Pacific Ocean and Caribbean Sea. \u003Ci\u003ENeotropical Ichthyology\u003C/i\u003E, 14(2): 1–11.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Notarbartolo Di Sciara, G. 1987. A revisionary study of the genus \u003Ci\u003EMobula\u003C/i\u003E (Rafinesque, 1810) (\u003Ci\u003EChondrichthyes: Mobulidae\u003C/i\u003E) with the description of a new species of \u003Ci\u003EMobulidae\u003Ci/\u003E. \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E, 91: 1–91.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bustamante, C., Couturier, L.I.E. and Bennett, M.B. 2012. First record of \u003Ci\u003EMobula japanica (Rajiformes: Myliobatidae\u003C/i\u003E) from the south-eastern Pacific Ocean. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E, 5(48): 57–60.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Migdalski, E.C. and Fichter, G.S. 1989. \u003Ci\u003EThe Fresh and Saltwater Fishes of the World\u003C/i\u003E. Greenwich House, Hong Kong. 316 pp.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.; Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66514,"full_name":"Mobula tarapacana","author_year":"(Philippi, 1892)","common_names":[{"lang":"English","names":"Box Ray, Chilean Devil Ray, Devil Ray, Greater Guinean Mobula, Sicklefin Devil Ray, Spiny Mobula","convention_language":true,"id":null},{"lang":"French","names":"Diable Géant De Guinée, Mante Chilienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Diabolo Gigante De Guinea, Manta Cornuada, Manta Cornuda, Manta Raya, Raya Cornuda, Vaquetilla","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Bonfil, R. and Abdallah, M. 2004. \u003Ci\u003EField Identification Guide to the Sharks and Rays of the Red Sea and Gulf of Aden\u003C/i\u003E. FAO, Rome. 71 pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bonfil, R. and Abdallah, M. 2004. \u003Ci\u003EField Identification Guide to the Sharks and Rays of the Red Sea and Gulf of Aden\u003C/i\u003E. FAO, Rome. 71 pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.; Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bustamante, C., Couturier, L.I.E. and Bennett, M.B. 2012. First record of \u003Ci\u003EMobula japanica (Rajiformes: Myliobatidae\u003C/i\u003E) from the south-eastern Pacific Ocean. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E, 5(48): 57–60.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"de Boer, M.N., Saulino, J.T., Lewis, T.P. and Notarbartolo-di-Sciara, G. 2015. New records of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E), giant manta ray (\u003Ci\u003EManta birostris\u003C/i\u003E) and Chilean devil ray (\u003Ci\u003EMobula tarapacana\u003C/i\u003E) for Suriname.\u003Ci\u003E Marine Biodiversity Records\u003C/i\u003E, 8(10): 1–8.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66515,"full_name":"Mobula eregoodootenkee","author_year":"(Bleeker, 1859)","common_names":[{"lang":"English","names":"Pygmy Devil Ray, Longhorned Devil Ray","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66516,"full_name":"Mobula kuhlii","author_year":"(Müller \u0026 Henle, 1841)","common_names":[{"lang":"English","names":"Shortfin Devil Ray, Lesser Devil Ray, Pygmy Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Petit Diable","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66517,"full_name":"Mobula hypostoma","author_year":"(Bancroft, 1831)","common_names":[{"lang":"English","names":"Atlantic Devil Ray, Lesser Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Diable Géant","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta del Golfo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66518,"full_name":"Mobula rochebrunei","author_year":"(Vaillant, 1879)","common_names":[{"lang":"English","names":"Lesser Guinean Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Petit Diable de Guinée","convention_language":true,"id":null},{"lang":"Spanish","names":"Diablito de Guinea","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66519,"full_name":"Mobula munkiana","author_year":"(Notarbartolo-di-Sciara, 1987)","common_names":[{"lang":"English","names":"Smoothtail Mobula, Pygmy Devil Ray, Munk’s Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante De Munk","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta Raya, Diabolo Manta, Tortilla, Manta Violácea","convention_language":true,"id":null}],"distributions":[{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66522,"full_name":"Ursus maritimus","author_year":"Phipps, 1774","common_names":[{"lang":"English","names":"Polar Bear","convention_language":true,"id":null},{"lang":"French","names":"Ours blanc","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Taylor, M.K., Laake, J., McLoughlin, P.D., Cluff, H.D. and Messier, F. 2009. Demography and population viability of polar bears in the Gulf of Boothia, Nunavut. Marine Mammal Science: 25: 778-796.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Born, E. W. and Rosing Asuid, A. 1989. Isbjornen (\u003Ci\u003EUrsus maritimus\u003C/i\u003E) i Gronland: en oversigt. Gronlands Hjemmestyre Miljo-og Naturforvaltring Technical Report . 126 pp.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Aars, J., Marques, T.A., Buckland, S.T., Anderson, M., Belikov, S., Boltunov, A. and Wiig, . 2009. Estimating the Barents Sea polar bear subpopulation size. Marine Mammal Science: 25: 35-52.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Aars, J., Marques, T.A., Buckland, S.T., Anderson, M., Belikov, S., Boltunov, A. and Wiig, . 2009. Estimating the Barents Sea polar bear subpopulation size. Marine Mammal Science: 25: 35-52.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Ursidae","genus_name":"Ursus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66526,"full_name":"Anguilla anguilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Weed eel, Common eel, River eel, European eel","convention_language":true,"id":null},{"lang":"French","names":"Civelle, Leptocéphale, Anguille européenne, Angèle, Anguille d'Europe, Anguille jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Anguila europea, Anguila","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Has-Schn, E. Bogut, I. Rajkovi?, V. Bogut, S. ?a?i?, M. and Horvati?, J. 2008. Heavy metal distribution in tissues of six fish species included in human diet, inhabiting freshwaters of the Nature Park “Hutovo Blato” (Bosnia and Herzegovina). \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 54: 75-83; Has-Schön, E. Bogut, I. Rajković, V. Bogut, S. Cacić, M. and Horvatić, J. 2008. Heavy metal distribution in tissues of six fish species included in human diet, inhabiting freshwaters of the Nature Park “Hutovo Blato” (Bosnia and Herzegovina). \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 54: 75–83","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Dikov, T. and Zivkov, M. 2004. Abundance and biomass of fishes in the Veleka River, Bulgaria. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 81-86.; Dikov, T. and Zivkov, M. 2004. Abundance and biomass of fishes in the Veleka River, Bulgaria. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 81–86.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Zogaris, S. Chatzinikolaou, Y. Koutsikos, N. Economou, A. N. Oikonomou, E. Michaelides, G. and Ferreira, M. T. 2012. Freshwater fish assemblages in Cyprus with emphasis on the effects of dams. \u003Ci\u003EActa Ichthyologica et Piscatoria\u003C/i\u003E42: 165-175.; Zogaris, S. Chatzinikolaou, Y. Koutsikos, N. Economou, A. N. Oikonomou, E. Michaelides, G. and Ferreira, M. T. 2012. Freshwater fish assemblages in Cyprus with emphasis on the effects of dams. \u003Ci\u003EActa Ichthyologica et Piscatoria\u003C/i\u003E42: 165–175.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Baruš, V. Moravec, F. an Prokeš, M. 1999. Anguillicolosis of the European eel (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E) in the Czech Republic. \u003Ci\u003ECzech Journal of Animal Science\u003C/i\u003E: 44: 423–431.; Baru, V. Moravec, F. and Proke, M. 1999. Anguillicolosis of the European eel (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E) in the Czech Republic. \u003Ci\u003ECzech Journal of Animal Science\u003C/i\u003E: 44: 423-431.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Pujolar, J.M., Jacobsen, M.W., Als, T.D., Frydenberg, J., Magnussen, E., Jnsson, B., Jiang, X., Cheng, L., Bekkevold, D., Maes, G.E. and Bernatchez, L., 2014. Assessing patterns of hybridization between North Atlantic eels using diagnostic single-nucleotide polymorphisms. \u003Ci\u003EHeredity\u003C/i\u003E, 112(6): 627.; Pujolar, J.M., Jacobsen, M.W., Als, T.D., Frydenberg, J., Magnussen, E., Jónsson, B., Jiang, X., Cheng, L., Bekkevold, D., Maes, G.E. and Bernatchez, L., 2014. Assessing patterns of hybridization between North Atlantic eels using diagnostic single-nucleotide polymorphisms. \u003Ci\u003EHeredity\u003C/i\u003E, 112(6): 627.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Tulonen, J. and Vuorinenb, P. J. 1996. Concentrations of PCBs and other organochlorine compounds in eels (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E, L.) of the Vanajavesi watercourse in southern Finland. \u003Ci\u003EThe Science of the Total Environment\u003C/i\u003E: 187: 11-18.; Tulonen, J. and Vuorinenb, P. J. 1996. Concentrations of PCBs and other organochlorine compounds in eels (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E, L.) of the Vanajavesi watercourse in southern Finland. \u003Ci\u003EThe Science of the Total Environment\u003C/i\u003E: 187: 11–18.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Imbert, H., de Lavergne, S., Gayou, F., Rigaud, C. and Lambert, P. 2008. Evaluation of relative distance as new descriptor of yellow European eel spatial distribution. Ecology of Freshwater Fish: 17: 520-527.; Lasne,E. Acou, A., Vila-Gispert, A. and Laffaille, P. 2008. European eel distribution and body condition in a river floodplain: effect of longitudinal and lateral connectivity. Ecology of Freshwater Fish: 17: 567-576.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Ninua, N. and Japoshvili, B. 2008. Check list of fishes of Georgia. \u003Ci\u003EProceedings of the Institute of Zoology\u003C/i\u003E: 23: 163-176.; Ninua, N. and Japoshvili, B. 2008. Check list of fishes of Georgia. \u003Ci\u003EProceedings of the Institute of Zoology\u003C/i\u003E: 23: 163–176.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgoländer Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.; Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgoländer Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.; Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgolnder Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Kristmundsson, A. and Helgason, S. 2007. Parasite communities of eels \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in freshwater and marine habitats in Iceland in comparison with other parasite communities of eels in Europe. \u003Ci\u003EFolia Parasitologica\u003C/i\u003E: 54: 141-53.; Kristmundsson, A. and Helgason, S. 2007. Parasite communities of eels \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in freshwater and marine habitats in Iceland in comparison with other parasite communities of eels in Europe. \u003Ci\u003EFolia Parasitologica\u003C/i\u003E: 54: 141–53.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"introduced","country_references":"Coad, B. W. 1980. Environmental change and its impact on the freshwater fishes of Iran. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 19: 51-80.; Coad, B. W. 1980. Environmental change and its impact on the freshwater fishes of Iran. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 19: 51–80.; Holčík, J. and Razavi, B.A. 1992. On some new or little known fishes from the Iranian coast of the Caspian Sea. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 41: 271–280.; Hol?k, J. and Razavi, B.A. 1992. On some new or little known fishes from the Iranian coast of the Caspian Sea. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 41: 271-280.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Yokouchi, K., Aoyama, J., Miller, M.J., McCarthy, T.K. and Tsukamoto, K. 2009. Depth distribution and biological characteristics of the European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in Lough Ennell, Ireland. Journal of Fish Biology: 74: 857-871.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Barry, J., McHarg, K., Dodd, J.A. and Adams, C.E., 2015. Local scale, coastal currents influence recruitment to freshwater populations in the European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E: a case study from the Isle of Man. \u003Ci\u003EJournal of Fish Biology\u003C/i\u003E, 86(6): 1873-1880.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1-9.; Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1–9.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813-824.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813–824.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Ciccotti, E. Busilacchi, S. and Cataudella, S. 2000. Eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E (L.), in Italy: recruitment, fisheries and aquaculture. \u003Ci\u003EDana\u003C/i\u003E: 12: 7-15.; Ciccotti, E. Busilacchi, S. and Cataudella, S. 2000. Eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E (L.), in Italy: recruitment, fisheries and aquaculture. \u003Ci\u003EDana\u003C/i\u003E: 12: 7–15.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Japan","country":"Japan","tags_list":"introduced","country_references":"Ishikawa, T. and Tachihara, K., 2014. Introduction history of non-native freshwater fish in Okinawa-jima Island: ornamental aquarium fish pose the greatest risk for future invasions. \u003Ci\u003EIchthyological Research\u003C/i\u003E, 61(1): 17-26.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"introduced","country_references":"Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1-9.; Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1–9.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813-824.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813–824.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"introduced","country_references":"Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Genc, E., Sangun, M.K., Dural, M., Can, M.F. and Altunhan, C. 2008. Element concentrations in the swimbladder parasite \u003Ci\u003EAnguillicola crassus\u003C/i\u003E (nematoda) and its host the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from Asi River (Hatay-Turkey).\u003Ci\u003EEnvironmental monitoring and assessment\u003C/i\u003E,141(1-3): 59-65.; Genc, E., Sangun, M.K., Dural, M., Can, M.F. and Altunhan, C. 2008. Element concentrations in the swimbladder parasite \u003Ci\u003EAnguillicola crassus\u003C/i\u003E (nematoda) and its host the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from Asi River (Hatay-Turkey). \u003Ci\u003EEnvironmental monitoring and assessment\u003C/i\u003E, 141(1-3): 59-65.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Al-Hassan, L.A. and El-Silini, O.A., 1999. Check-list of bony fishes collected from the Mediterranean coast of Benghazi, Libya. \u003Ci\u003ERevista de Biologia Marina y Oceanografia\u003C/i\u003E, 34(2): 291-301.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Lin, Y.-J., Loys, L., Shiao, J.-C., Iizuka, Y. and Tzeng, W.-N. 2007. Growth differences between naturally recruited and stocked European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from different habitats in Lithuania. Journal of Fish Biology: 71: 1773-1787.; Lin, Y.-J., Ložys, L., Shiao, J.-C., Iizuka, Y. and Tzeng, W.-N. 2007. Growth differences between naturally recruited and stocked European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from different habitats in Lithuania. Journal of Fish Biology: 71: 1773-1787.; Shiao, J.C., Loyzs, L., Iizuka, Y. andTzeng, W. N. 2006. Migratory patterns and contribution of stocking to the population of European eel in Lithuanian waters as indicated by otolith Sr:Ca ratios. Journal of Fish Biology: 69: 749.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Nijman, V., 2017. North Africa as a source for European eel following the 2010 EU CITES eel trade ban. \u003Ci\u003EMarine Policy\u003C/i\u003E, 85: 133-137.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Hegedis, A., Mickovic, B., Nikcevic, M., Damjanovic, I. and Andjus, R.K. 1998. Eels and mullets in coastal waters of Montenegro: basic ecological data. Iugoslav Physiology Pharmacology Acta: 34: 417-428.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"Silfvergrip, A. 2015. \u003Ci\u003Epers. comm.\u003C/i\u003E to UNEP-WCMC, 18 October 2015.; Simonovic, P.D. and Nikolic, V.P. 1996. Freshwater fish of Serbia: an annotated check list with some faunistic and zoogeographical considerations. \u003Ci\u003EBios\u003C/i\u003E, 4: 137-157.; Simonovic, P.D. and Nikolic, V.P. 1996. Freshwater fish of Serbia: an annotated check list with some faunistic and zoogeographical considerations. \u003Ci\u003EBios\u003C/i\u003E, 4: 137–157.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"introduced","country_references":"Horvth, J. Pekrik, L. Hajd, J. and Tome?ek, J. 2012. Fish diversity of the lowland stretches of Morava and Vh rivers (Danube drainage, Slovakia). \u003Ci\u003EPisces Hungarici\u003C/i\u003E: 6: 95-100.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Pov, M. 1996. The Red Data List of freshwater lampreys (Cyclostomata) and fish (Pisces) of Slovenia. In A. Kirchhofer \u0026 D. Hefti (Eds.), Conservation Of Endangered Freshwater Fish In Europe (pp. 63-72). Basel: Birkhuser.; Povž, M. 1996. The Red Data List of freshwater lampreys (Cyclostomata) and fish (Pisces) of Slovenia. In A. Kirchhofer \u0026 D. Hefti (Eds.), Conservation Of Endangered Freshwater Fish In Europe (pp. 63–72). Basel: Birkhäuser.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Saad, A. 2005. Checklist of bony fish collected from the coast of Syria. \u003Ci\u003ETurkish Journal of Fisheries and Aquatic Sciences\u003Ci\u003E: 5: 99-106.; Saad, A. 2005. Checklist of bony fish collected from the coast of Syria. \u003Ci\u003ETurkish Journal of Fisheries and Aquatic Sciences\u003Ci\u003E: 5: 99–106.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Akin, S. Buhan, E. Winemiller, K. O. and Yilmaz, H. 2005. Fish assemblage structure of Koycegiz Lagoon-Estuary, Turkey: spatial and temporal distribution patterns in relation to environmental variation. \u003Ci\u003EEstuarine, Coastal and Shelf Science\u003C/i\u003E: 64: 671-684.; Akin, S. Buhan, E. Winemiller, K. O. and Yilmaz, H. 2005. Fish assemblage structure of Koycegiz Lagoon–Estuary, Turkey: spatial and temporal distribution patterns in relation to environmental variation. \u003Ci\u003EEstuarine, Coastal and Shelf Science\u003C/i\u003E: 64: 671–684.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"introduced","country_references":"Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anguilliformes","class_name":"Actinopterygii","family_name":"Anguillidae","genus_name":"Anguilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66529,"full_name":"Anoxypristis cuspidata","author_year":"(Latham, 1794)","common_names":[{"lang":"English","names":"Narrow Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Manjaji, B. M. 2002. Elasmobranchs recorded from rivers and estuaries in Sabah. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 194-198.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taniuchi, T. 2002. Outline of field surveys for freshwater elasmobranchs conducted by a Japanese research team. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 181-184.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Harrison, L.R. and Dulvy, N.K. (eds). 2014. Sawfish: A global strategy for conservation. IUCN Species Survival Commission's Shark Specialist Group. Vancouver, Canada.; Harrison, L.R. and Dulvy, N.K. (eds). 2014. Sawfish: A global strategy for conservation. IUCN Species Survival Commission’s Shark Specialist Group. Vancouver, Canada.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Anoxypristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66531,"full_name":"Pristis clavata","author_year":"Garman, 1906","common_names":[{"lang":"English","names":"Dwarf Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.; Taniuchi, T. 2002. Outline of field surveys for freshwater elasmobranchs conducted by a Japanese research team. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 181-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66532,"full_name":"Pristis pectinata","author_year":"Latham, 1794","common_names":[{"lang":"English","names":"Smalltooth Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"extinct (?)","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Feldheim, K. Chapman, D. Simpfendorfer, C. Richards, V. Shivji, M. Wiley, T. Sagarese, S. 2010. Genetic tools to support the conservation of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E. \u003Ci\u003EConservation Genetics Resources\u003C/i\u003E: 2: 105-113.; Feldheim, K. Chapman, D. Simpfendorfer, C. Richards, V. Shivji, M. Wiley, T. Sagarese, S. 2010. Genetic tools to support the conservation of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E. \u003Ci\u003EConservation Genetics Resources\u003C/i\u003E: 2: 105–113.; Jennings, D. E., DiBattista, J. D., Stump, K. L., Hussey, N. E., Franks, B. R., Grubbs, R. D. and Gruber, S. H. 2012. Assessment of the aquatic biodiversity of a threatened coastal lagoon at Bimini, Bahamas. Journal of Coastal Conservation: 16: 405-428.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and López, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and Lpez, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Pina-Amargs, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernndez de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de vila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Matamoros, W. A., Schaeffer, J. F. And Kreiser, B. R. 2009. Annotated checklist of the freshwater fishes of continental and insular Honduras. Zootaxa: 2307: 1-38.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"extinct","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ; Wood, A. D., Brouwer, S. L., Cowley, P. D. and Harrison, T. D. 2000. An updated check list of the ichthyofaunal species assemblage of the Tsitsikamma National Park, South Africa. Koedoe: 43(1): 83-95.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Chapman, D. D., Simpfendorfer, C. A., Wiley, T. R., Poulakis, G. R., Curtis, C., Tringali, M., Carlson, J. K. and Feldheim, K. A. 2011. Genetic diversity despite population collapse in a critically endangered marine fish: the smalltooth sawfish (\u003Ci\u003EPristis pectinata\u003C/i\u003E). Journal of Heredity: 102(6): 643-652.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Poulakis, G. R., Stevens, P. W., Timmers, A. A., Wiley, T. R. and Simpfendorfer, C. A. 2011. Abiotic affinities and spatiotemporal distribution of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E, in a south-western Florida nursery. Marine and Freshwater Research: 62: 1165-1177.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66533,"full_name":"Pristis zijsron","author_year":"Bleeker, 1851","common_names":[{"lang":"English","names":"Green Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Field, I. C., Tillett, B. J., Charters, R., Johnson, G. J., Buckworth, R. C., Meekan, M. G. and Bradshaw, C. J. A. 2013. Distribution, relative abundance and risks from fisheries to threatened \u003Ci\u003EGlyphis\u003C/i\u003E sharks and sawfishes in northern Australia. Endangered Species Research: 21: 171-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"Duffy, C. Seeto, J. and Trnski, T. 2011. Review of records of sawfishes (Chondrichthyes: Pristidae) from Fiji, with deletion of \u003Ci\u003EPristis zijsron\u003C/i\u003E Bleeker, 1851 and \u003Ci\u003EPristis\u003C/i\u003E sp. from the fauna. \u003Ci\u003EZootaxa\u003C/i\u003E 67: 65-67.; Duffy, C. Seeto, J. and Trnski, T. 2011. Review of records of sawfishes (Chondrichthyes: Pristidae) from Fiji, with deletion of \u003Ci\u003EPristis zijsron\u003C/i\u003E Bleeker, 1851 and \u003Ci\u003EPristis\u003C/i\u003E sp. from the fauna. \u003Ci\u003EZootaxa\u003C/i\u003E 67: 65–67.; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Leeney, R.H. 2017. Are sawfishes still present in Mozambique? A baseline ecological study. \u003Ci\u003EPeerJ\u003C/i\u003E, 5: e2950.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Moazzam, M. and Osmany, H.B. 2014. Occurrence of sawfish (family: Pristidae) in Pakistan. \u003Ci\u003EInt. J. Biol. Biotech.\u003C/i\u003E, 11(1): 97-102.; Moazzam, M. and Osmany, H.B. 2014. Occurrence of sawfish (family: Pristidae) in Pakistan. \u003Ci\u003EInt. J. Biol. Biotech.\u003C/i\u003E, 11(1): 97–102.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66534,"full_name":"Pristis pristis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Largetooth Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"extinct (?)","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and López, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and Lpez, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"extinct (?)","country_references":"Barriga, R.S. 2011. Lista de peces de agua dulce e intermareales del Ecuador. Revista Politcnica 30(3): 83-119.; Barriga, R.S. 2011. Lista de peces de agua dulce e intermareales del Ecuador. Revista Politécnica 30(3): 83-119.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guinea","country":"Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Mexico","country":"Mexico","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Peru","country":"Peru","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EPristis microdon\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EPristis microdon\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66537,"full_name":"Sphyrna lewini","author_year":"(Griffith \u0026 Smith, 1834)","common_names":[{"lang":"English","names":"Scalloped hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Requin-marteau halicorne","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón martillo común","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Quéro, J.-C. 1984. Sphyrnidae. In: Fishes of the north-eastern Atlantic and the Mediterranean. Vol. 1.(Eds.) P. Whitehead M.-L. Bauchot J.-C. Hureau J. Nielsen and E. Tortonese (pp. 122–125). Paris: UNESCO.; Quro, J.-C. 1984. Sphyrnidae. In: Fishes of the north-eastern Atlantic and the Mediterranean. Vol. 1.(Eds.) P. Whitehead M.-L. Bauchot J.-C. Hureau J. Nielsen and E. Tortonese (pp. 122-125). Paris: UNESCO.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Wass, R. 1984. An annotated checklist of the fishes of Samoa. National Oceanic and Atmospheric Administration. National Marine Fishes Service, Special Scientific Report - Fisheries. Washington, DC. ","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) 2002. Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK. 258 pp.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Noriega, R., Werry, J. M., Sumpton, W., Mayer, D. and Lee, S. Y. 2011. Trends in annual CPUE and evidence of sex and size segregation of \u003Ci\u003ESphyrna lewini\u003C/i\u003E: Management implications in coastal waters of northeastern Australia. Fisheries Research: 110(3): 472-477.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Kotas, J. E., Mastrochirico, V. and Petrere Junior, M. 2011. Age and growth of the scalloped hammerhead shark, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith and Smith, 1984), from the southern Brazilian coast. Brazilian Journal of Biology: 71(3): 755-761.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Wirtz, P., Brito, A., Falcn, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Hobbs, J.A., Newman, S.J., Mitsopoulos, G.E.A., Travers, M.J., Craig, L., Gilligan, J.J., Allen, G.R., Choat, H.J. and Ayling, A.M. 2014. Checklist and new records of Christmas Island fishes: the influence of isolation , biogeography and habitat availability on species abundance and community composition. \u003Ci\u003ERaffles Bulletin of Zoology\u003C/i\u003E, 30: 184-202.; Hobbs, J.A., Newman, S.J., Mitsopoulos, G.E.A., Travers, M.J., Craig, L., Gilligan, J.J., Allen, G.R., Choat, H.J. and Ayling, A.M. 2014. Checklist and new records of Christmas Island fishes: the influence of isolation , biogeography and habitat availability on species abundance and community composition. \u003Ci\u003ERaffles Bulletin of Zoology\u003C/i\u003E, 30: 184–202.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Robertson, D. R. and Allen, G. R. Zoogeography of the shorefish fauna of Clipperton Atoll. Coral Reefs: 15: 121-131.; Robertson, D. R. and Allen, G. R. Zoogeography of the shorefish fauna of Clipperton Atoll. Coral Reefs: 15: 121-131.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaños, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaos, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Hearn, A., Ketchum, J., Klimley, A. P., Espinoza, E. and Pennaherrera, C. 2010. Hotspots within hotspots? Hammerhead shark movements around Wolf Island, Galapagos Marine Reserve. Marine Biology: 157(9): 1899-1915.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galpagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jimnez-Uzctegui, G., Ruiz, D., Guzou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ; WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservación en Centroamérica y México. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Adrim, M. 2003. Coral reef fishes of Indonesia. Zoological Studies: 42: 1-72.; Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf; White, W. T., Bartron, C. and Potter, I. C. 2008. Catch composition and reproductive biology of \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith \u0026 Smith) (Carcharhiniformes, Sphyrnidae) in Indonesian waters. Journal of Fish Biology: 72(7): 1675-1689.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taniuchi, T. 1974. Three species of hammerhead sharks in the southwestern waters of Japan. Japanese Journal of Ichthyology: 21(3): 145-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Khalaf, M. 2004. Fish fauna of the Jordanian coast, Gulf of Aqaba, Red Sea. Journal of King Abdulaziz University: Marine Sciences: 15(1): 23-50.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Gillibrand, C. J., Harris, A. R. and Mara, E. 2007. Inventory and spatial assemblage study of reef fish in the area of Andavadoaka, south-west Madagascar (Western Indian Ocean). Western Indian Journal of Marine Science: 6(2): 183-197.; McKenna, S. A. and Allen, G. R. 2005. A rapid marine biodiversity assessment of the coral reefs of northwest Madagascar. RAP Bulletin of Biological Assessment: 31: 124.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Anislado-Tolentino, V., Gallardo-Cabello, M., Amezcua-Linares, F. and Robinson-Mendoza, C. 2008. Age and growth of the scalloped hammerhead shark, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith \u0026 Smith, 1834) from the Southern coast of Sinaloa, Mexico. Hidrobiologica: 18(1): 31-40.; Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bizzarro, J. J., Smith, W. D., Márquez-Farías, J. F., Tyminski, J. and Hueter, R. E. 2009. Temporal variation in the artisanal elasmobranch fishery of Sonora, Mexico. Fisheries Research: 97: 103-117.; Bizzarro, J. J., Smith, W. D., Mrquez-Faras, J. F., Tyminski, J. and Hueter, R. E. 2009. Temporal variation in the artisanal elasmobranch fishery of Sonora, Mexico. Fisheries Research: 97: 103-117.; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Torres-Rojas, Y. E., Hernández-Herrera, A., Galván-Magaña, F. And Alatorre-Ramírez, V. G. 2010. Stomach content analysis of juvenile, scalloped hammerhead shark \u003Ci\u003ESphyrna lewini\u003C/i\u003E captured off the coast of Mazatlan, Mexico. Aquatic Ecology: 44: 301-308.; Torres-Rojas, Y. E., Hernndez-Herrera, A., Galvn-Magaa, F. And Alatorre-Ramrez, V. G. 2010. Stomach content analysis of juvenile, scalloped hammerhead shark \u003Ci\u003ESphyrna lewini\u003C/i\u003E captured off the coast of Mazatlan, Mexico. Aquatic Ecology: 44: 301-308.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S., Al-Sheile, S. and Al-Abri, N. 2009. Size distributions and sex ratios of sharks caught by Oman's artisanal fishery. African Journal of Marine Science: 31(2): 233-239.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S. and Al-Sheili, S. 2007. The Sultanate of Oman shark fishery: Species composition, seasonality and diversity. Fisheries Research: 86: 159-168.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Afonso, P., Porteiro, F. M., Santos, R. S., Barreiros, J. P., Worms, J. and Wirtz, P. 1999. Coastal marine fishes of So Tom Island (Gulf of Guinea). Arquiplago: 17A: 65-92.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Capape, C., Diop, M., and N'Dao, M. 1998. Record of four pregnant females of the scalloped hammerhead, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Sphyrnidae) in Senegalese waters. Cybium: 22(1): 89-93.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Diemer, K. M., Mann, B. Q. and Hussey, N. E. 2011. Distribution and movement of scalloped hammerhead \u003Ci\u003ESphyrna lewini\u003C/i\u003E and smooth hammerhead \u003Ci\u003ESphyrna zygaena\u003C/i\u003E sharks along the east coast of southern Africa. African Journal of Marine Science: 33(2): 229-238.; Dudley, S. F. J. and Simpfendorfer, C. A. 2006. Population status of 14 shark species caught in the protective gillnets off KwaZulu-Natal beaches, South Africa, 1978-2003. Marine and Freshwater Research: 57(2): 225-240.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chen, C. T., Leu, T. C., Joung, S. J. and Lo, N. C. H. 1990. Age and growth of the scalloped hammerhead, \u003Ci\u003ESphyrna lewini\u003C/i\u003E, in northeastern Taiwan waters. Pacific Science: 44(2): 156-170.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Séret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Sret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Adams, D. H. and Paperno, R. 2005. Preliminary assessment of a nearshore nursery ground for the scalloped hammerhead off the Atlantic coast of Florida. American Fisheries Society Symposium: 50: 165-174.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M. and Holland, K. M. 2006. Habitat use, growth rates and dispersal patterns of juvenile scalloped hammerhead sharks \u003Ci\u003ESphyrna lewini\u003C/i\u003E in a nursery habitat. Marine Ecology Progress Series: 312: 211-221.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Lowe, C. G. 2002. Bioenergetics of free-ranging juvenile scalloped hammerhead sharks (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) in Kane'ohe Bay, O'ahu, HI. Journal of experimental marine biology and ecology: 278: 141-156.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Yegres, H., Ali, J. J., Marcano, L.A. and Marcano, J.S. 1996. Anlisis preliminar de la pesquera y biologa de tiburones en Venezuela. Collective Volume of Scientific Papers: 45(3): 309-315.; Yegres, H., Alió, J. J., Marcano, L.A. and Marcano, J.S. 1996. Análisis preliminar de la pesquería y biología de tiburones en Venezuela. Collective Volume of Scientific Papers: 45(3): 309-315.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66538,"full_name":"Sphyrna mokarran","author_year":"(Rüppell, 1837)","common_names":[{"lang":"English","names":"Great hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Grand requin-marteau","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón martillo gigante","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) 2002. Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK. 258 pp.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Brooks, E. J., Sloman, K. A., Sims, D. W. And Danylchuk, A. J. 2011. Validating the use of baited remote underwater video surveys for assessing the diversity, distribution and abundance of sharks in the Bahamas. Endangered Species Research: 13: 213-243.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcn, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Pina-Amargs, F., Salvat Torres, H. and Lpez-Fernndez, N. 2012. Ictiofauna del archipilago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargs, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernndez de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de vila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galpagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jimnez-Uzctegui, G., Ruiz, D., Guzou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ; WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservación en Centroamérica y México. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V., Ganga, U., Pillai, N. G. K., Vivekanandan, E., Bineesh, K. K., Shanis, C. P. R. and Hashim, M. 2011. Deep-sea fishing for chondrichthyan resources and sustainability concerns - a case study from southwest coast of India. Indian Journal of Geo-Marine Sciences: 40(3): 347-355.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Adrim, M. 2003. Coral reef fishes of Indonesia. Zoological Studies: 42: 1-72.; Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Taniuchi, T. 1974. Three species of hammerhead sharks in the southwestern waters of Japan. Japanese Journal of Ichthyology: 21(3): 145-152.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Schmitter-Soto, J. J., Vásquez-Yeomans, L., Aguilar-Perera, A., Curiel-Mondragón, C. and Caballero-Vazquez, J. A. 2000. Lista de peces marinos del Caribe mexicano. Anales del Instituto de Biología Universidad Nacional Autónoma de México, Serie Zooogía 71(2): 143-177.; Schmitter-Soto, J. J., Vsquez-Yeomans, L., Aguilar-Perera, A., Curiel-Mondragn, C. and Caballero-Vazquez, J. A. 2000. Lista de peces marinos del Caribe mexicano. Anales del Instituto de Biologa Universidad Nacional Autnoma de Mxico, Serie Zoooga 71(2): 143-177.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S. and Al-Sheili, S. 2007. The Sultanate of Oman shark fishery: Species composition, seasonality and diversity. Fisheries Research: 86: 159-168.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Cliff, G. 1995. Sharks caught in the protective gill nets off KwaZulu-Natal, South Africa. 8. The great hammerhead shark \u003Ci\u003ESphyrna mokarran\u003C/i\u003E (Rppell). South African Journal of Marine Science: 15(1): 105-114.; Cliff, G. 1995. Sharks caught in the protective gill nets off KwaZulu-Natal, South Africa. 8. The great hammerhead shark \u003Ci\u003ESphyrna mokarran\u003C/i\u003E (Rüppell). South African Journal of Marine Science: 15(1): 105-114.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Dudley, S. F. J. and Simpfendorfer, C. A. 2006. Population status of 14 shark species caught in the protective gillnets off KwaZulu-Natal beaches, South Africa, 1978-2003. Marine and Freshwater Research: 57(2): 225-240.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Séret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Sret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66539,"full_name":"Manta alfredi","author_year":"Krefft 1868","common_names":[{"lang":"English","names":"Reef Manta Ray","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Couturier, L. I. E., Jaine, F. R. A., Townsend, K. A., Weeks, S. J., Richardson, A. J. and Bennett, M. B. 2011. Distribution, site affinity and regional movements of the manta ray, \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868), along the east coast of Australia. Marine and Freshwater Research: 62: 628-637.; Jaine, F. R. A., Couturier, L. I. E., Weeks, S. J., Townsend, K. A., Bennett, M. B., Fiora, K. and Richardson, A. J. 2012. When giants turn up: sighting trends, environmental influences and habitat use of the manta ray \u003Ci\u003EManta alfredi\u003C/i\u003E at a coral reef. PlosOne: 7(10): e46170.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Mourier, J. 2012. Manta rays in the Marquesas Islands: first records of \u003Ci\u003EManta birostris\u003C/i\u003E in French Polynesia and most easterly location of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Pacific Ocean, with notes on their distribution. Journal of Fish Biology: 81(6): 2053-2058.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Hartup, J. A., Marshell, A. Kottermair, M. and Carlson, P. 2013. \u003Ci\u003EManta alfredi\u003C/i\u003E target multispecies surgeonfish spawning aggregations. Coral Reefs 32: 367.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C., Adam, M. S. and Goes, J. I. 2011. From monsoons to mantas: seasonal distribution of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Maldives. Fisheries Oceanograhy: 20(2): 104-113.; Kitchen-Wheeler, A., Ari, C. and Edwards, A. J. 2012. Population estimates of Alfred mantas (\u003Ci\u003EManta alfredi\u003C/i\u003E) in central Maldives atolls: North Male, Ari and Baa. Environmental Biology of Fishes: 93(4): 557-575.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Deakos, M. H. 2012. The reproductive ecology of resident manta rays (\u003Ci\u003EManta alfredi\u003C/i\u003E) off Maui, Hawaii, with an emphasis on body size. Environmental Biology of Fishes: 94: 443-456.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Manta","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":94451,"full_name":"Pan troglodytes","author_year":"(Blumenbach, 1775)","common_names":[{"lang":"English","names":"Chimpanzee","convention_language":true,"id":null},{"lang":"French","names":"Chimpanzé","convention_language":true,"id":null},{"lang":"Spanish","names":"Chimpancé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Huntley, B. J. 1974. Outlines of wildlife conservation in Angola. Journal of the Southern African Wildlife Management Association: 4: 157-166.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bénin. Folia Primatologica, 79(1): 15–30.; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bnin. Folia Primatologica, 79(1): 15-30.; Inskipp, T. 2005. Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct (?)","country_references":"Ginn, L. and Nekaris, K. 2014. The first survey of the conservation status of primates in southern Burkina Faso, West Africa. Primate Conservation, 28: 129-138.; Ginn, L. and Nekaris, K. 2014. The first survey of the conservation status of primates in southern Burkina Faso, West Africa. Primate Conservation, 28: 129–138.; Ginn, L., Robison, J., Redmond, I. and Nekaris, K. 2013. Strong evidence that the West African chimpanzee is extirpated from Burkina Faso. Oryx, 47: 325-326.; Ginn, L., Robison, J., Redmond, I. and Nekaris, K. 2013. Strong evidence that the West African chimpanzee is extirpated from Burkina Faso. Oryx, 47: 325–326.; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Anon. 2004. Donnes statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Verschuren, J. 1978. Burundi and wildlife. Problems of an overcrowded country. Oryx: 14: 237-240.; Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Verschuren, J. 1978. Les gonads mammifres du Burundi. Mammalia: 42: 209-224.; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 1986. Records of other species of mammal from western Cameroon. In: Stuart, S. N. (ed.) Conservation of Cameroon montane forests International Council for Bird Preservation. Cambridge (UK).; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Lige (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Lige (Belgium). ; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Inskipp, T. 2005. Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; IUCN. 1996. African Primates. Status Survey and Conservation Action Plan. Revised edition. IUCN. Gland, Switzerland.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Mitani, M. 1990. A note on the present situation of the primate fauna found from south-eastern Cameroon to northern Congo. Primates: 31: 625-634.; Nembot, T. and Tchanou, Z. 1998. La gestion des cosystmes forestiers du Cameroun l'Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaound (Cameroon).; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Perret, J.-L. and Aellen, V. 1956. Mammifres du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Poulsen, J. R., Clark, C. J., Smith, T. B. 2001. Seed dispersal by a diurnal primate community in the Dja Reserve, Cameroon. Journal of Tropical Ecology: 17: 787-808; Prescott, H. J., Rapley, W. A., Mengang Mewondo, J. 1994. Status and conservation of Chimpanzees and Gorillas in Cameroon. Report of the Jardin Zoologique du Quebec and Metro Toronto Zoo Joint Expedition . ; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Waltert, M., Lien, Faber, K. and Mhlenberg, M. 2002. Further declines of threatened primates in the Korup Project Area, south-west Cameroon. Oryx: 36: 257-265.; Waltert, M., Lien, Faber, K. and Mühlenberg, M. 2002. Further declines of threatened primates in the Korup Project Area, south-west Cameroon. Oryx: 36: 257-265.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1986. Status of the Lowland Gorilla and other wildlife in the Dzanga-Sangha region of southwestern Central African Republic. Primate Conservation: 7: 38-41.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complmentaires sur quelques grands mammifres dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Mitani, M. 1990. A note on the present situation of the primate fauna found from south-eastern Cameroon to northern Congo. Primates: 31: 625-634.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Colyn, M., Dudu, A. and Mbaelele, M. M. 1987. Exploitation du petit et moyen gibier des forts ombrophiles du Zaire. 1. Consommation qualitative dans le milieu rural. 2. Analyse de la commercialisation du giber Kisangani (Haut-Zaire). Nature et Faune: 3: 22-39.; Hart, J. A. and Thomas, S. 1986. The Ituri Forest of Zaire: primate diversity and prospects for conservation. Primate Conservation: 7: 42-44.; Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Rahm, U. 1966. Les mammifres de la fort quatoriale du l'est du Congo. Annales du Muse Royale de l'Afrique Centrale, Srie in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fa, J. E. and Garca Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Tutin, C. E. G. and Fernandez, M. 1984. Nationwide census of Gorilla (\u003Ci\u003EGorilla g. gorilla\u003C/i\u003E) and Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E) populations in Gabon. American Journal of Primatology: 6: 313-336.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"reintroduced","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jirk?, M., Votpka, J., Petrelkov, K., Jirk?-Pomajbkov, K., Kriegov, E., Vodi?ka, R., Lankester, F., Leendertz, S., Wittig, R., Boesch, C. et al. 2015. Wild chimpanzees are infected by \u003Ci\u003ETrypanosoma brucei\u003C/i\u003E. International Journal for parasitology: Parasites and Wildlife, 4: 277-282.; Marsden, S. 1983. Rehabilitating Chimpanzees in Gambia. Fund for Animals (Australia) Newsletter: 3: 14-15.; Marsden, S., Marsden, D. and Thompson, M. 2006. Demographic and female life history parameters of free-ranging chimpanzees at the Chimpanzee Rehabilitation Project, River Gambia National Park. International Journal of Primatology, 27: 391-410.; Marsden, S., Marsden, D. and Thompson, M. 2006. Demographic and female life history parameters of free-ranging chimpanzees at the Chimpanzee Rehabilitation Project, River Gambia National Park. International Journal of Primatology, 27: 391–410.; Thompson, M. 2013. Reproductive ecology of female chimpanzees. American Journal of Primatology, 75(3): 222-237.; Thompson, M. 2013. Reproductive ecology of female chimpanzees. American Journal of Primatology, 75(3): 222–237.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; McCullough, J. 2004. A rapid biological assessment of the Fort Classe du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Gippoliti, S. and Dell'Omo, G. 1996. Primates of the Cantanhez Forest and the Cacine Basin, Guinea-Bissau. Oryx: 30: 74-80.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Anon. 1984. Liberia's Sapo National Park. Oryx: 18: 48.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. 1971. Statut actuel des primates au Sénégal. Bulletin de l'Institut Fondamental de l'Afrique Noire 33(1-2): 467-478: 33: 467-478.; Dupuy, A. R. 1971. Statut actuel des primates au Sngal. Bulletin de l'Institut Fondamental de l'Afrique Noire 33(1-2): 467-478: 33: 467-478.; McGrew, W. C., Baldwin, P. J. and Tutin, C. E. G. 1981. Chimpanzees in a hot, dry and open habitat: Mt. Assirik, Senegal, West Africa. Journal of Human Evolution: 10: 227-244.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Harding, R. S. O. 1984. Primates of the Kilimi area, Sierra Leone. IUCN/SSC Primate Specialist Group Newsletter: 4: 32-34.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69-77.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69–77.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Happold, D.C.D. 1967. Additional information on the mammanlian fauna of the Sudan. Mammalia: 31: 605-609.; Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Anon. 1999. African Mammals Databank. www.gisbau.uniroma1.it/amd/ Instituto di Ecologia Applicata. Rome. ; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bénin. Folia Primatologica, 79(1): 15–30.; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bnin. Folia Primatologica, 79(1): 15-30.; Kormos, R., Boesch, C., Bakarr, M. and Butynski, T. 2003. West African chimpanzees: status survey and conservation action plan. IUCN/SSC Primate Specialist Group. ; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Albrecht, H. 1976. Chimpanzees in Uganda. Oryx: 13: 357-361.; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Tweheyo, M. and Obua, J. 2001. Feeding habits of chimpanzees (\u003Ci\u003EPan troglodytes\u003C/i\u003E), red-tail monkeys (\u003Ci\u003ECercopithecus mitis stuhlmanii\u003C/i\u003E) on figs in Budongo Forest Reserve, Uganda. : 39: 133-139.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Anne E. Pusey, Lilian Pintea, Michael L. Wilson, Shadrack Kamenya, Jane Goodall. 2007. The Contribution of Long-Term Research at Gombe National Park to Chimpanzee Conservation. Conservation Biology : 21: 623-634.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Pan","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94453,"full_name":"Lasiurus cinereus","author_year":"(Palisot de Beauvois, 1796)","common_names":[{"lang":"English","names":"Hoary Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris cendrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago ceniciento o Murciélago gris","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94454,"full_name":"Lasiurus borealis","author_year":"(Müller, 1776)","common_names":[{"lang":"English","names":"Eastern Red Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris rousse","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago colorado","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94455,"full_name":"Lasiurus ega","author_year":"(Gervais, 1856)","common_names":[{"lang":"English","names":"Southern Yellow Bat","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago amarillo o Murciélago leonado","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J.F. and Redford, K.H. 2000. Mammals of the Neotropics. Volume 3: The central Neotropics - Ecuador, Peru, Bolivia, Brazil. University of Chicago Press. 609 pp","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J.F. and Redford, K.H. 2000. Mammals of the Neotropics. Volume 3: The central Neotropics - Ecuador, Peru, Bolivia, Brazil. University of Chicago Press. 609 pp","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94457,"full_name":"Panthera leo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Lion","convention_language":true,"id":null},{"lang":"French","names":"Lion","convention_language":true,"id":null},{"lang":"Spanish","names":"León","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.; Sogbohossou, E.A., de Iongh, H.H., Sinsin, B., de Snoo, G.R. and Funston, P.J. 2011. Human-carnivore conflict around Pendjari Biosphere Reserve, northern Benin. Oryx: 45: 569-578.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Verschuren, J. 1978. Les gonads mammifres du Burundi. Mammalia: 42: 209-224.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bnou et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Lige (Belgium). ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Nowell, K. and Jackson, P. 1994. Wild cats status report and conservation action plan. Cat News: 21: 20-21.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Tumenta, P., Kok, J., van Rijssel, J., Buij, R., Croes, B., Funston, P., de Iongh, H. and de Haes, H. 2010. Threat of rapid extermination of the lion (\u003Ci\u003EPanthera leo leo\u003C/i\u003E) in Waza National Park, Northern Cameroon. African Journal of Ecology: 48: 888-894.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Malbrant, R. 1952. Faune du Centre Africain Franais (mammifres et oiseaux). Lechevalier. Paris.; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Newby, J. 1970. The ecological resources of the Ouadi Rimé - Ouadi Achim Faunal Reserve, Chad. UNDP/FAO Wildlife Conservation and Management Project CHD/69/004. Unpublished . ; Newby, J. 1970. The ecological resources of the Ouadi Rim - Ouadi Achim Faunal Reserve, Chad. UNDP/FAO Wildlife Conservation and Management Project CHD/69/004. Unpublished . ; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Franais. Vol. 2, mammifres. Encyclopdie Biologique 36. Lechevalier. Paris.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifres. Annales du Muse Royale du Congo Belge, Srie in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Treves, A., Plumptre, A.J., Hunter, L.T.B. and Ziwa, J. 2009. Identifying a potential lion \u003Ci\u003EPanthera leo\u003C/i\u003E stronghold in Queen Elizabeth National Park, Uganda, and Parc National des Virunga, Democratic Republic of Congo. Oryx: 43: 60-66.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Gebresenbet, F., Bauer, H., Hunter, L. and Gebretensae, K. 2009. Proceedings of the national lion conservation workshop, Addis Ababa, 12 June 2009. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Franais. Vol. 2, mammifres. Encyclopdie Biologique 36. Lechevalier. Paris.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"extinct","country_references":"Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Smithers, R. H. N. 1966. The mammals of Rhodesia, Zambia and Malawi. Collins. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Padial, J.M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia 69(2): 239-243; Padial, J.M. and Ibez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia 69(2): 239-243; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Chardonnet, P., Mésochina, P., Renaud, P.-C., Bento, C., Conjo, D., Fusari, A., Begg, C., Foloma, M. and Pariela, F. 2009. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Mozambique. SCI Foundation, Campfire Association, DNAC/MITUR \u0026 IGF Foundation. ; Chardonnet, P., Msochina, P., Renaud, P.-C., Bento, C., Conjo, D., Fusari, A., Begg, C., Foloma, M. and Pariela, F. 2009. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Mozambique. SCI Foundation, Campfire Association, DNAC/MITUR \u0026 IGF Foundation. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Stander, P. 1990. Lions \u003Ci\u003EPanthera leo\u003C/i\u003E in Etosha National Park, Namibia. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 41095.; Stander, P. 2000. Conservation of lions and other large carnivores in the Kunene Region, Namibia. Ministry of Environment and Tourism, Quarterly Report, May 2000. Namibia. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Koster, S. 1981. A survey of the vegetation and large mammals of Park W, Niger. M.Sc. Thesis, Michigan State University, Michigan . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1977. The mammals of Pakistan. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"extinct","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. and Verschuren, J. 1977. Wildlife and parks in Senegal. Oryx: 14: 36-46.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; IUCN 2006. Conservation strategy for the lion in West and Central Africa. Yaounde, Cameroon.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Hayward, M.W. and Hayward, G.J. 2007. Activity patterns of reintroduced lion \u003Ci\u003EPanthera leo\u003C/i\u003E and spotted hyaena \u003Ci\u003ECrocuta crocuta\u003C/i\u003E in the Addo Elephant National Park, South Africa. African Journal of Ecology: 45: 135-141.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Wilson, R. T. 1980. Wildlife in northern Darfur, Sudan: a review of its distribution and status in the recent past and at present. Biological Conservation: 17: 85-101.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Bauer, H., Chardonnet, P. and Nowell, K. 2005. Status and distribution of the lion (Panthera leo) in east and southern Africa. Background paper for the East and Southern African Lion Conservation Workshop January 2006, Johannesburg, South Africa. Cambridge, UK.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Treves, A., Plumptre, A.J., Hunter, L.T.B. and Ziwa, J. 2009. Identifying a potential lion \u003Ci\u003EPanthera leo\u003C/i\u003E stronghold in Queen Elizabeth National Park, Uganda, and Parc National des Virunga, Democratic Republic of Congo. Oryx: 43: 60-66.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Borgerhoff Mulder, M., Caro, T. and Msago, O.A. 2007. The role of research in evaluating conservation strategies in Tanzania: the case of the Katavi-Rukwa ecosystem. Conservation Biology.: 21: 647-658.; Caro, T. 2007. Behavior and conservation: a bridge too far? Trends in Ecology and Evolution.: 22: 394-400.; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Creel, S. and Creel, N.M. 1997. Lion density and population structure in the Selous Game Reserve: evaluation of hunting quotas and offtake. African Journal of Ecology.: 35: 83-93.; Dinesen, L., Lehmberg, T., Rahner, M.C. and Fjelds, J. 2001. Conservation priorities for the forests of the Udzungwa Mountains, Tanzania, based on primates, duikers and birds. Biological Conservation: 99: 223-236.; Estes, R.D., Atwood, J.L. and Estes, A.B. 2006. Downward trends in Ngorongoro Crater ungulate populations 1986-2005: conservation concerns and the need for ecological research. Biological Conservation: 131: 106-120.; Frank, L., Hemson, G., Kushnir, H. and Packer, C. 2006. Lions, Conflict and Conservation in Eastern and Southern Africa. Background paper for the eastern and southern African lion conservation workshop, Johannesburg, South Africa. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Homewood, K.M. and Rodgers, W.A. 1999. Maasailand Ecology. Pastoralist development and wildlife conservation in Ngorongoro, Tanzania. Cambridge University Press. Cambridge, UK.; Kiffer, C., Meyer, B., Muhlenberg, M. and Waltert, M. 2009. Plenty of prey, few predators: what limits lions \u003Ci\u003EPanthera leo\u003C/i\u003E in Katav National Park, western Tanzania. Oryx: 43: 52-59.; Kissui, B.M. and Packer, C. 2004. Top-down population regulation of a top predator: lions in the Ngorongoro Crater. Proceedings of the Royal Society of London B.: 271: 1867-1874.; Lindsey, P.A., Frank, L.G., Alexander, R., Mathieson, A. and Romanach, S.S. 2006. Trophy hunting and conservation in Africa: problems and one potential solution. Conservation Biology: 21: 880-883.; Mésochina, P., Mbangwa, O., Chardonnet, P., Mosha, R., Mtui, B., Drouet, N., Crosmary, W. and Kissui, B. 2010. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Tanzania. SCI Foundation, MNRT-WD, TAWISA, IGF Foundation. Paris, France. ; Msochina, P., Mbangwa, O., Chardonnet, P., Mosha, R., Mtui, B., Drouet, N., Crosmary, W. and Kissui, B. 2010. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Tanzania. SCI Foundation, MNRT-WD, TAWISA, IGF Foundation. Paris, France. ; Packer, C. 2006. Best practices for trophy hunting of African lions. Proceedings of the first Tanzania lion and leopard conservation action plan workshop Tanzania Carnivore Unit, TAWIRI. Arusha, Tanzania. 7-15.; Packer, C., Altizer, S., Appel, M., Brown, E., Martenson, J., O'Brien, S.J., Roelke-Parker, M., Hofmann-Lehmann, R. and Lutz, H. 1999. Viruses of the Serengeti: patterns of infection and mortality in African lions. Journal of Animal Ecology: 68: 1161-1178.; Packer, C., Brink, H., Kissui, B., Maliti, H., Kushnir, H. and Caro, T. 2011. Effects of trophy hunting on lion and leopard populations in Tanzania. Conservation Biology: 25: 142-153.; Packer, C., Ikanda, D., Kissui, B. and Kushnir, H. 2005. Conservation biology: Lion attacks on humans in Tanzania. Nature: 436: 927-928.; Ray, J.C., Hunter, L., and Zigouris, J. 2005. Setting Conservation and Research Priorities for Larger African Carnivores. WCS Working Paper No. 24 Wildlife Conservation Society. New York.; Sinclair, A.R.E., Mduma, S.A.R, Hopcraft, J.G.C., Fryxell, J.M., Hilborn, R. and Thirgood, S. 2007. Long-term ecosystem dynamics in the Serengeti: lessons for conservation. Conservation Biology: 21: 580-590.; Whitman, K.L., Starfield, A.M., Quadling, H. and Packer, C. 2007. Modeling the effects of trophy selection and environmental disturbance on a simulated population of African lions. Conservation Biology: 21: 591-601.; Whitman, K., Starfield, A.M., Quadling, H.S. and Packer, C. 2004. Sustainable trophy hunting of African lions. Nature: 428: 175-178.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94458,"full_name":"Panthera pardus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Leopard","convention_language":true,"id":null},{"lang":"French","names":"Léopard","convention_language":true,"id":null},{"lang":"Spanish","names":"Leopardo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Busby, G.B.J., Gottelli, D., Wacher, T., Marker, L., Belbachir, F., De Smet, K., Belbachir-Bazi, A. and Fellous, A. 2009. Genetic analysis of scat reveals leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in southern Algeria. Oryx: 43: 412-415.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1984. Endangered mammals of Bangladesh. Oryx: 18: 152-156.; Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.; Sarker, S. U. and Sarker, N. J. 1984. Mammals of Bangladesh - their status, distribution and habitat. Tigerpaper: 11: 8-13.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Chakraborty, S. 1975. On a collection of mammals from Bhutan. Records of the Zoological Survey of India: 68: 1-20.; Wikramanayake, E. D. and Wangchuk, S. 1993. An assessment of biodiversity in the proposed Royal Manas-Black Mountains National Park complex. Prepared for Nature Conservation Division, Department of Forests, Royal Government of Bhutan and WWF Bhutan Program. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Anon. 2004. Donnes statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Walston, J. 2001. Mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bnou et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Lige (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Lige (Belgium). ; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Jackson, P. 1984. The plight of cats. A summary report on the Cat Specialist Group workshop, Kanha National Park, India, 9-12. April 1984. Cat News 1: 1-15.; Lau, M.W.-N., Fellowes, J.R. and Chan, B.P.L. 2010. Carnivores (Mammalia: Carnivora) in South China: a status review with notes on the commercial trade. Mammal Review: 40: 247-292.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zeng Z, Song Y, Ma Y, Wang X, Wu X, Xie Z., Shao J and Li C. 2007. Fauna characteristics and ecological distribution of Carnivora and Artiodactyla in Niubeiliang National Nature Reserve, China. Frontiers of Biology in China: 2: 92-99.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, V. J. 1985. Visit to Cte d'Ivoire, West Africa, September-October 1985. Chipangali Wildlife Trust, Report No. 1","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Krunkelsven, E. V., Bila-Isia, I. and Draulans, D. 2000. A survey of bonobos and other large mammals in the Salonga National Park, Democratic Republic of Congo. Oryx: 34: 180-187.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Anon. 1988. Cats in Djibouti. Cat News: 9: 19.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.; Fa, J. E. and Garca Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Kingdon, J. and Hoffmann, M. 2013. Volume V. Carnivores, pangolins, equids and rhinoceroses. In: \u003Ci\u003EMammals of Africa\u003C/i\u003E. Bloomsbury Publishing, London.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Brown, L. H. 1975. A report on the wildlife situation in Ethiopia, November 1975. Report to World Wildlife Fund . ; Corbet, G. B. and Yalden, D. W. 1972. Recent records of mammals (other than bats) from Ethiopia. Bulletin of the British Museum (Natural History) Zoology: 22: 211-252.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Asibey, E. O. A. 1972. The present status of wildlife conservation in Ghana. In: Happold, D. C. D. (ed.), Wildlife conservation in West Africa. IUCN New Series 22 Morges.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"extinct","country_references":"Marshall, P. 1967. Wild mammals of Hong Kong. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Balakrishnan, M. 1984. The larger mammals and their endangered habitats in the Silent Valley forests of south India. Biological Conservation: 29: 277-286.; Balakrishnan, M. and Easa, P. S. 1986. Habitat preferences of the larger mammals in the Parambikulam Wildlife Sanctuary, Kerala, India. Biological Conservation: 37: 191-200.; Harihar, A., Pandav, B. and Goyal, S.P. 2009. Density of leopards (\u003Ci\u003EPanthera pardus\u003C/i\u003E) in the Chilla Range of Rajaji National Park, Uttarakhand, India. Mammalia: 73: 68-71.; Mondal, K., Gupta, S., Qureshi, Q. and Sankar, K. 2011. Prey selection and food habits of leopard (\u003Ci\u003EPanthera pardus fusca\u003C/i\u003E) in Sariska Tiger Reserve, Rajasthan, India. Mammalia: 75: 201-205.; Sathyakumar, S., Bashir, T., Bhattacharya, T. and Poudyal, K. 2011. Assessing mammal distribution and abundance in intricate eastern Himalayan habitats of Khangchendzonga, Sikkim, India. Mammalia: 75: 257-268.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Kiabi, B. H., Dareshouri, B. F. Ghaemi, R. A. and Jahanshahi, M. 2002. Population status of the Persian Leopard (\u003Ci\u003EPanthera pardus saxicolor\u003C/i\u003E Pocock, 1927) in Iran. Zoology in the Middle East: 26: 41-47.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Ilany, G. 1990. Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Israel. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14.: 4-5.; Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Qarqaz, M., and Abu Baker, M. 2006. The Leopard in Jordan. Cat News: Special Issue 1: 9-10.; Qumsiyeh, M. B., Amr, Z.S., and Shafee D. 1993. Status and conservation of carnivores in Jordan. Mammalia: 57: 55-62.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hamilton, P. H. 1981. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and the Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kenya: ecology, status, conservation, management. Report prepared for the Office of Endangered Species. U.S. Fish and Wildlife Service. Washington, D.C. ; Ilany, G. 1990. Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Israel. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14.: 4-5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. 1940. Liste provisoire de mammifères de l'Indochine française. Mammalia: 4: 20-29.; Delacour, J. 1940. Liste provisoire de mammifres de l'Indochine franaise. Mammalia: 4: 20-29.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Sayer, J. 1983. Nature conservation priorities in Laos. Tigerpaper: 10: 10-14.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Lewis, R. E., Lewis, J. H. and Atallah, S. I. 1968. A review of Lebanese mammals, Carnivora, Pinnipedia, Hyracoidea and Artiodactyla. Journal of Zoology, London: 154: 517-531.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Bene, J.K., Bitty, E.A., Bohoussou, K.H., Abedi-, M., Gamys, J. and Soribah, P.A.J. 2013. Current conservation status of large mammals in Sime Darby oil palm concession in Liberia. Global Journal of Biology, Agriculture \u0026 Health Sciences, 2(3): 93-102.; Bene, J.K., Bitty, E.A., Bohoussou, K.H., Abedi-, M., Gamys, J. and Soribah, P.A.J. 2013. Current conservation status of large mammals in Sime Darby oil palm concession in Liberia. Global Journal of Biology, Agriculture \u0026 Health Sciences, 2(3): 93–102.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Azlan, J.M. and Sharma, D.S. K. 2006. The diversity and activity patterns of wild felids in a secondary forest in Peninsular Malaysia. Oryx: 40: 36-41.; Kawanishi, K., Sunquist, M. E. 2004. Conservation status of tigers in a primary rainforest of Peninsular Malaysia. Biological Conservation: 120: 329-344; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Padial, J. M. and Ibez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Salter, R. E. 1983. Summary of currently available information on internationally threatened wildlife species in Burma. Nature Conservation and National Parks Project, Burma. Report for Food and Agriculture Organization of the United Nations . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Mitchell, R. M. 1975. A checklist of Nepalese mammals. Sugetierkundliche Mitteilungen: 23: 152-157.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Poche, R. M. 1973. Niger's threatened park. Oryx: 12: 216-222.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Anon. 1992. Arabian Leopard survives in Saudi Arabia. Cat News: 17: 16.; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. and Verschuren, J. 1977. Wildlife and parks in Senegal. Oryx: 14: 36-46.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Anon. 1986. New hope for the Southern Sea Otter. Endangered Species Technical Bulletin: 11: 12-14.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69-77.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69–77.; Teleki, G. 1980. Status report on wildlife survey project, Sierra Leone, West Africa, conducted November 1979 through May 1980. Unpublished. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Medway, Lord. 1969. The wild mammals of Malaya and Singapore. Oxford University Press. Oxford.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Stuart, C. T., Macdonald, I. A. W. and Mills, M. G. L. 1985. History, current status and conservation of large mammalian predators in Cape Province, Republic of South Africa. Biological Conservation: 31: 7-19.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hameed, S.M.A. and Eljack, A.O. 2003. Ramsar Information Sheet (RIS) for Dinder National Park, Sudan. Wetlands International. 40; Setzer, H. W. 1956. Mammals of the Anglo-Egyptian Sudan. Proceedings of the U.S. National Museum: 106: 447-615.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Bain, J. R. and Humphrey, S. R. 1980. A profile of the endangered species of Thailand. Report No. 4 Office of Ecological Services, Florida State Museum.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Rabinowitz, A. 1989. The density and behaviour of large cats in a dry tropical forest mosaic in Huai Kha Khaeng Wildlife Sanctuary, Thailand. Natural History Bulletin of the Siam Society: 37: 235-251.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Baskaya, S. and Bilgili, E. 2004. Does the leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E still exist in the Eastern Karadeniz Mountains of Turkey? Oryx: 38: 228-232.; Borner, M. 1977. Leopards in western Turkey. Oryx: 14: 26-30.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Turan, N. 1984. Trkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Turan, N. 1984. Türkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Moreau, R. E. and Pakenham, R. H. W. 1940. The land vertebrates at Pemba, Zanzibar and Mafia: a zoogeographical study. Proceedings of the Zoological Society of London: 110: 97-128.; Swynnerton, G. H. and Hayman, R. W. 1951. A checklist of the land mammals of the Tanganyika Territory and the Zanzibar Protectorate. Journal of the East African Natural History Society: 20: 274-392.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Kuznetsov, G. V. and Rozhnov, V. V. 1998. [Mammals of the mountain region of Sa Pa and Fan Si Pan: biodiversity and problems of their conservation]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre. Moscow and Hanoi.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Osgood, W. H. 1932. Mammals of the Kelley-Roosevelts and Delacour Asiatic expeditions. Field Museum of Natural History, Zoological Series: 18: 193-339.; Peenen, P. F. D. van, Ryan, P. and Light, R. 1969. Preliminary identification manual for mammals of South Vietnam. Smithsonian Institution. Washington.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94459,"full_name":"Ursus arctos","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Genov, P. and Gancev, R. 1987. Der Braunbar (\u003Ci\u003EUrsus arctos\u003C/i\u003E L., 1758) in Bulgarien - Verbreitung, Anzahl, Schaden. J. Jagdwiss.: 33: 145-152.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifères sauvages de France. Ministère de L'Environment, Société Française pour l'Etude et la Protection des Mammifères. Paris.; Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifres sauvages de France. Ministre de L'Environment, Socit Franaise pour l'Etude et la Protection des Mammifres. Paris.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J. and Nowak, E. 1978. Rote liste der säugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefährdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.; Blab, J. and Nowak, E. 1978. Rote liste der sugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefhrdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Grachev, Y.A. 1976. Distribution and quantity of brown bears in Kazakhstan. Bears: thier biology and Management. A selection of papers from the third international conference on bear research and Management IUCN Publications New Series. Binghamton, New York, U.S.A. and Moscow, U.S.S.R. 299-300; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Ceballos, G., Arroyo-Cabrales, J. and Medelln, R. A. 2002. The mammals of Mxico: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Ramírez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relación nomenclatural de los Mamíferos terrestres de México. Acta Zoológica Mexicana (n. s.): 21(1): 21-82; Ramrez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relacin nomenclatural de los Mamferos terrestres de Mxico. Acta Zoolgica Mexicana (n. s.): 21(1): 21-82; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"IUCN. 2007. \u003Ci\u003EUrsus arctos\u003C/i\u003E. In: European Mammal Assessment, http://ec.europa.eu/environment/nature/conservation/species/ema/species/ursus_arctos.htm IUCN. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beitrge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Elgmork, K. 1994. The decline of the Brown Bear \u003Ci\u003EUrsus arctos\u003C/i\u003E in central south Norway. Biological Conservation: 69: 123-129.; Kolstad, M., Mysterud, I., Kvam, T., Sfrenson, O. J. and Wikan, S. 1986. Status of the Brown Bear in Norway: distribution and population 1978-82. Biological Conservation: 38: 79-99.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Danilov, P. I. 1994. The Brown Bear of northwest Russia. International Conference on Bear Research and Management. 199-200; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"Linnell, J., Salvatori, V. and Boitani, L. 2007. \u003Ci\u003EGuidelines for population level management plans for large carnivores in Europe\u003C/i\u003E. A Large Carnivore Initiative for Europe report prepared for the European Commission. Trondheim, Norway. 1-85 pp.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sabados, K. and Simiak, M. 1981. [Distribution and management of the Brown Bear (\u003Ci\u003EUrsus arctos\u003C/i\u003E L.) in Slovakia]. Folia Venatoria: 10: 15-33.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Delibes, M. 1983. Distribution and ecology of the Iberian carnivores: a short review. XV Congr. Int. Fauna Cinegética y Silvestre. Trujillo 1981 . 359-378.; Delibes, M. 1983. Distribution and ecology of the Iberian carnivores: a short review. XV Congr. Int. Fauna Cinegtica y Silvestre. Trujillo 1981 . 359-378.; Garzon, P., Palacios, F. and Garzon, J. 1980. Situacíon actual del oso pardo (\u003Ci\u003EUrsus arctos pyrenaicus\u003C/i\u003E Fischer, 1890) en Espana y datos sobre su alimenta~íon en la Cordillera Cantábrica. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rábida 1977 . 681-683.; Garzon, P., Palacios, F. and Garzon, J. 1980. Situacon actual del oso pardo (\u003Ci\u003EUrsus arctos pyrenaicus\u003C/i\u003E Fischer, 1890) en Espana y datos sobre su alimenta~on en la Cordillera Cantbrica. I Reunin Iberoamericana de Zologos de Vertebrados, La Rbida 1977 . 681-683.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J. E., Sandegren, F., Bjarvall, A., Soderberg, A., Wabakken, P. and Franzen, R. 1994. Size, trend, distribution and conservation in the Brown Bear \u003Ci\u003EUrsus arctos\u003C/i\u003E in Sweden. Biological Conservation: 70: 9-17.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian black bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Can, . E. and Togan, I. 2004. Status and management of brown bears in Turkey. Ursus: 15: 48-53.; Can, .E. and Togan, I. 2009. Camera trapping of large mammals in Yenice Forest, Turkey: local information versus camera traps. Oryx: 43: 427-430.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Peck, J. M., Pelton, M. R., Picton, H. D., Schoen, J. W. and Zager, P. 1987. Grizzly Bear conservation and management: a review. Wildlife Society Bulletin: 15: 160-169.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Ursidae","genus_name":"Ursus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"populations in Mongolia and China","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94462,"full_name":"Pusa caspica","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Caspian Seal","convention_language":true,"id":null},{"lang":"French","names":"Phoque de la Caspienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Foca del Caspio","convention_language":true,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Pusa","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94463,"full_name":"Equus africanus","author_year":"Heuglin \u0026 Fitzinger, 1866","common_names":[{"lang":"English","names":"African Wild Ass","convention_language":true,"id":null},{"lang":"French","names":"Âne sauvage d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Asno Salvaje de África","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Anon. 1977. Protection, conservation and management of threatened and endangered species in Egypt. Report of US Fish and Wildlife Service National Park Study Mission, July 30, 1977 . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Kingdon, J. and Hoffmann, M. 2013. Volume V. Carnivores, pangolins, equids and rhinoceroses. In: \u003Ci\u003EMammals of Africa\u003C/i\u003E. Bloomsbury Publishing, London.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Klingel, H. 1972. Somali Wild Ass status survey in the Danakil Region, Ethiopia. Final report WWF Project 496 . ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Moehlman, P.D. 2002. Equids: zebras, asses and horses. Status survey and conservation action plan. IUCN. Switzerland and Cambridge, UK.; van Bemmel, A.C.V. 1972. Some remarks on the African wild ass. Zoologische Mededelingen: 47: 261-272.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EEquus asinus\u003C/i\u003E (only wild populations)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94467,"full_name":"Giraffa camelopardalis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Giraffe","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Giraffidae","genus_name":"Giraffa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94469,"full_name":"Anous minutus","author_year":"Boie, 1844","common_names":[],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94471,"full_name":"Gyps tenuirostris","author_year":"Gray, 1844","common_names":[{"lang":"English","names":"Slender-billed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94472,"full_name":"Gyps rueppelli","author_year":"(Brehm, 1852)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bildstein, K. L., Zalles, J., Ottinger, J. and McCarthy, K. 2000. Conservation biology of the world's migratory raptors: status and strategies. In: Chancellor, R. D. and Meyburg, B.-U. (eds.) Raptors at risk WWGP, Hancock House.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Larison, B., Smith, T. B., Fotso, R., McNiven, D., Holbrook, K. and Lamperti, A. 1995. Preliminary report: surveys of selected monane and lowland areas of Cameroon. WWF (unpublished). ; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Borrow, N. and Demey, R. 2004. Field guide to the birds of western Africa. Christopher Helm. London, United Kingdom.; Clemmons, J. R. 2003. Status survey of the African Grey Parrot (\u003Ci\u003EPsittacus erithacus timneh\u003C/i\u003E) and development of a management program in Guinea and Guinea-Bissau. Prepared for the CITES Secretariat. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Mackworth-Praed, C.W. and Grant, C.C.H.B. 1970. African handbook of birds, Series III, Volume I: Birds of west central and western Africa. Longman. London, United Kingdom.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pope, R., Pope, J. and Gurney, M. 1999. New to Zambia: Rüppell's Vulture \u003Ci\u003EGyps rueppellii\u003C/i\u003E. 1998 Zambia Bird Report: 85-86.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Gyps rueppellii","author_year":"Brehm, 1852"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94474,"full_name":"Torgos tracheliotos","author_year":"(Forster, 1791)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"BirdLife International. 2005. Species factsheet: \u003Ci\u003ETorgos tracheliotus\u003C/i\u003E. Accessed at \u003Cwww.birdlife.org\u003E on 02/09/2005 BirdLife International. Cambridge (UK). ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. 1982. Nesting of the Lappet-faced Vulture \u003Ci\u003ETorgos tracheliotus\u003C/i\u003E in Oman. Bulletin of the British Ornithologists' Club: 102: 135-139.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Torgos","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Torgos tracheliotus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94476,"full_name":"Emberiza sulphurata","author_year":"Temminck \u0026 Schlegel, 1848","common_names":[{"lang":"English","names":"Yellow Bunting, Japanese Yellow Bunting","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Emberizidae","genus_name":"Emberiza","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94479,"full_name":"Lanius excubitor","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Laniidae","genus_name":"Lanius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94481,"full_name":"Lanius minor","author_year":"Gmelin, 1788","common_names":[{"lang":"English","names":"Lesser Grey Shrike","convention_language":true,"id":null},{"lang":"French","names":"Pie-grièche à poitrine rose","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Laniidae","genus_name":"Lanius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"European population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94485,"full_name":"Squatina squatina","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Angelshark, Monkfish","convention_language":true,"id":null},{"lang":"French","names":"Ange de mer commun ou angelot","convention_language":true,"id":null},{"lang":"Spanish","names":"Angelote, Peje angel o Tiburón angel","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Squatiniformes","class_name":"Elasmobranchii","family_name":"Squatinidae","genus_name":"Squatina","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94489,"full_name":"Rhinobatos rhinobatos","author_year":"Linnaeus 1758","common_names":[{"lang":"English","names":"Common Guitarfish","convention_language":true,"id":null},{"lang":"French","names":"Guitare de mer commune","convention_language":true,"id":null},{"lang":"Spanish","names":"Guitarra comùn","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinobatidae","genus_name":"Rhinobatos","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Only Mediterranean population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94492,"full_name":"Rhynchobatus australiae","author_year":"Whitley, 1939","common_names":[{"lang":"English","names":"White-spotted Wedgefish, Bottlenose Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94496,"full_name":"Carcharhinus obscurus","author_year":"(LeSueur, 1818)","common_names":[{"lang":"English","names":"Dusky Shark","convention_language":true,"id":null},{"lang":"French","names":"Requin requiem de sable","convention_language":true,"id":null},{"lang":"Spanish","names":"Cazón","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94498,"full_name":"Prionace glauca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Blue Shark","convention_language":true,"id":null},{"lang":"French","names":"Peau bleue","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón azul","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Prionace","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94499,"full_name":"Lasiurus blossevillii","author_year":"(Lesson and Garnot, 1826)","common_names":[{"lang":"English","names":"Desert Red Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris rousse de l'Oues","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago rojo del desierto o murciélago rojo del oeste","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodrguez-Herrera, B., Chinchilla, F.A., May-Collado, L. and J. 2002. Lista de especies, endemismo y conservacin de los de mamferos de Costa Rica. Revista Mexicana de Mastozoologia, 6: 1941","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Owen, J. and Girn, L. 2012. Revised checklist and distributions of land mammals of El Salvador. \u003Ci\u003EMuseum of Texas Tech University\u003C/i\u003E, (310): 32.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J., Medelln, R.A. and Domnguez-Castellanos, Y. 2005. Lista actualizada de los mamferos de Mexico. Revista Mexicana de Mastozoologia, 9: 2171.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94601,"full_name":"Equus ferus","author_year":"Boddaert 1785","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EEquus caballus przewalskii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94611,"full_name":"Calidris pygmaea","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Spoonbill Sandpiper, Spoon-billed Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau spatule","convention_language":true,"id":null},{"lang":"Russian","names":"Kulik-lopaten","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos cuchareta","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Thompson, P. M. and Johnson, D. L. 1996. Birding in Bangladesh: a guide to birdwatching sites and a checklist of birds. Dhakar. ","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tomkovich, P. S. 1992. Migration of the Spoon-billed Sandpiper \u003Ci\u003EEurynorhynchus pygmeus\u003C/i\u003E in the Far East of the Russian Federation. In: Stilt: 21: 29-33.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.; Lim, K. S. 1994. Birds to watch: threatened birds in Singapore. In: Oriental Bird Club Bull.: 19: 52-54.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; AOU ( American Ornithologists' Union ). 1998. Checklist of North American birds.7th edition. American Ornithologists' Union. Washington D.C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Calidris pygmea","author_year":"(Linnaeus, 1758)"},{"full_name":"Eurynorhynchus pygmeus","author_year":"Linnaeus, 1758"},{"full_name":"Platalea pygmea","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EEurynorhynchus pygmeus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94614,"full_name":"Calidris subruficollis","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Prærieløber","convention_language":false,"id":null},{"lang":"Dutch","names":"Blonde Ruiter","convention_language":false,"id":null},{"lang":"English","names":"Buff-breasted Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau roussâtre","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus płowy","convention_language":false,"id":null},{"lang":"Russian","names":"Zheltozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos canelo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Tringa subruficollis","author_year":"Vieillot, 1819"},{"full_name":"Tryngites subruficollis","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ETryngites subruficollis\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":94617,"full_name":"Saundersilarus saundersi","author_year":"Swinhoe, 1871","common_names":[{"lang":"English","names":"Saunders's Gull, Chinese Black-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Saundersilarus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Chroicocephalus saundersi","author_year":"Swinhoe, 1871"},{"full_name":"Larus saundersi","author_year":"Swinhoe, 1871"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ELarus saundersi\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94619,"full_name":"Sternula lorata","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Peruvian tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne du Pérou","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ESterna lorata\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94620,"full_name":"Thalasseus bernsteini","author_year":"(Schlegel, 1863)","common_names":[{"lang":"English","names":"Chinese Crested Tern, Chinese Crested-tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne d'Orient","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán Chino","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Sterna bernsteini","author_year":"(Schlegel, 1863)"},{"full_name":"Sterna zimmermanni","author_year":"Reichenow, 1903"},{"full_name":"Thalasseus zimmermanni","author_year":"(Reichenow, 1903)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ESterna bernsteini\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94622,"full_name":"Clanga clanga","author_year":"Pallas, 1811","common_names":[{"lang":"Czech","names":"Orel volavý","convention_language":false,"id":null},{"lang":"Danish","names":"Stor skrigeørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Bastaardarend","convention_language":false,"id":null},{"lang":"English","names":"Greater Spotted Eagle, Spotted Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiljukotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle criard","convention_language":true,"id":null},{"lang":"German","names":"Schelladler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila anatraia maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Orlik grubodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-gritadeira","convention_language":false,"id":null},{"lang":"Russian","names":"Bolshoy Podorlik","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila moteada","convention_language":true,"id":null},{"lang":"Swedish","names":"Större skrikörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Clanga","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Aquila clanga","author_year":"Pallas, 1811"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAquila clanga\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":94623,"full_name":"Brotogeris pyrrhoptera","author_year":"(Latham, 1801)","common_names":[],"distributions":[{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Psittaciformes","class_name":"Aves","family_name":"Psittacidae","genus_name":"Brotogeris","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Brotogeris pyrrhopterus","author_year":"(Latham, 1801)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EBrotogeris pyrrhopterus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94672,"full_name":"Setophaga kirtlandii","author_year":"Baird, 1852","common_names":[{"lang":"English","names":"Kirtland's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Paruline de Kirtland","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Setophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Dendroica kirtlandii","author_year":"Baird, 1852"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EDendroica kirtlandii\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94674,"full_name":"Setophaga cerulea","author_year":"Wilson, 1810","common_names":[{"lang":"English","names":"Cerulean Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Setophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Dendroica cerulea","author_year":"Wilson, 1810"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDendroica cerulea\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94677,"full_name":"Sibirionetta formosa","author_year":"Georgi, 1775","common_names":[{"lang":"Danish","names":"Sibirisk Krikand","convention_language":false,"id":null},{"lang":"Dutch","names":"Baikal-Taling, Siberische Taling","convention_language":false,"id":null},{"lang":"English","names":"Baikal Teal","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiantavi","convention_language":false,"id":null},{"lang":"French","names":"Sarcelle élégante, Sarcelle formose","convention_language":true,"id":null},{"lang":"German","names":"Pfeifente, Baikalente","convention_language":false,"id":null},{"lang":"Polish","names":"Cyranka bajkalska","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta del Baikal","convention_language":true,"id":null},{"lang":"Swedish","names":"Gulkindad kricka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Sibirionetta","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Anas formosa","author_year":"Georgi, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAnas formosa\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94679,"full_name":"Phoenicoparrus andinus","author_year":"Philippi, 1854","common_names":[{"lang":"English","names":"Andean Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Flamenco Andino, Parina Grande","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicoparrus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Phoenicopterus andinus","author_year":"Philippi, 1854"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPhoenicopterus andinus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"High Andean Flamingos"}]},{"id":94680,"full_name":"Phoenicoparrus jamesi","author_year":"Sclater, 1886","common_names":[{"lang":"English","names":"Puna Flamingo, James's Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Parina Chica, Flamenco Andino Chico","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicoparrus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Phoenicopterus jamesi","author_year":"P. L. Sclater, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPhoenicopterus jamesi\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"High Andean Flamingos"}]},{"id":94682,"full_name":"Antigone vipio","author_year":"(Pallas, 1811)","common_names":[{"lang":"Danish","names":"Hvidhalset trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Withalskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"White-necked Crane, White-naped Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Silmälasikurki","convention_language":false,"id":null},{"lang":"French","names":"Grue à cou blanc","convention_language":true,"id":null},{"lang":"German","names":"Weißnackenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru dal collo bianco","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla cuelliblanca","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögontrana, vithalsad trana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Grus vipio","author_year":"Pallas, 1811"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EGrus vipio\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94684,"full_name":"Ardenna creatopus","author_year":"(Coues, 1864)","common_names":[{"lang":"English","names":"Pink-footed Shearwater","convention_language":true,"id":null},{"lang":"French","names":"Puffin à pieds roses","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela blanca, Pardela de ventre blanco, Pardela patirrosa","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Ardenna","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPuffinus creatopus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"08/09/2015","name":"ACAP"}]},{"id":94685,"full_name":"Anser cygnoid","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Swan Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie cygnoïde","convention_language":true,"id":null},{"lang":"German","names":"Schwanengans","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar cisnal","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Anser cygnoides","author_year":"Linnaeus, 1758"},{"full_name":"Cygnopsis cygnoides","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAnser cygnoides\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94687,"full_name":"Geokichla guttata","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Natal Thrush, Spotted Forest Thrush, Spotted Ground-thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive tachetée","convention_language":true,"id":null}],"distributions":[{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Turdus fischeri","author_year":"Hellmayr, 1901"},{"full_name":"Zoothera guttata","author_year":"Vigors, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EZoothera guttata\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94689,"full_name":"Xanthopsar flavus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Saffron-cowled Blackbird","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Icteridae","genus_name":"Xanthopsar","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Agelaius flavus","author_year":"Gmelin, 1788"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAgelaius flavus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAgelaius flavus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":94704,"full_name":"Spatula discors","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Blåvinget And","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwvleugeltaling","convention_language":false,"id":null},{"lang":"English","names":"Blue-winged Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle à ailes bleues, Sarcelle soucrourou","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta aliazul","convention_language":true,"id":null},{"lang":"Swedish","names":"blåvingad årta","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas discors","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94705,"full_name":"Calidris pugnax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák bojovný","convention_language":false,"id":null},{"lang":"Danish","names":"Brushane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kemphaan","convention_language":false,"id":null},{"lang":"English","names":"Ruff","convention_language":true,"id":null},{"lang":"Finnish","names":"Suokukko","convention_language":false,"id":null},{"lang":"French","names":"Combattant varié, Chevalier combattant","convention_language":true,"id":null},{"lang":"German","names":"Kampfläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pajzsoscankó","convention_language":false,"id":null},{"lang":"Italian","names":"Combattente","convention_language":false,"id":null},{"lang":"Polish","names":"Batalion","convention_language":false,"id":null},{"lang":"Portuguese","names":"Combatente","convention_language":false,"id":null},{"lang":"Russian","names":"Turukhtan","convention_language":false,"id":null},{"lang":"Spanish","names":"Combatiente","convention_language":true,"id":null},{"lang":"Swedish","names":"Brushane","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Philomachus pugnax","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa pugnax","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94706,"full_name":"Netta peposaca","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Rosy-billed Pochard","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94708,"full_name":"Spatula querquedula","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Garganey, Garganey Teal","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas querquedula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94709,"full_name":"Mareca penelope","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Eurasian Wigeon, Wigeon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas penelope","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94710,"full_name":"Neochen jubata","author_year":"Spix, 1825","common_names":[{"lang":"English","names":"Orinoco Goose","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Neochen","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94711,"full_name":"Mareca sibilatrix","author_year":"Poeppig, 1829","common_names":[{"lang":"English","names":"Chiloe Wigeon","convention_language":true,"id":null},{"lang":"French","names":"Canard de Chiloé","convention_language":true,"id":null},{"lang":"Spanish","names":"Silbón overo","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas sibilatrix","author_year":"Poeppig, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94712,"full_name":"Pseudocolopteryx dinelliana","author_year":"Lillo, 1905 ","common_names":[{"lang":"English","names":"Dinelli's Doradito","convention_language":true,"id":null},{"lang":"French","names":"Doradite de Dinelli","convention_language":true,"id":null},{"lang":"Spanish","names":"Doradito pardo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1996. Nuevos registros o aves poco citadas para las provincias de Santa Fe y Entre Rios, Argentina. El Hornero: 14: 87-89.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Pseudocolopteryx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Pseudocolopteryx dinellianus","author_year":"Lillo, 1905"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPseudocolopteryx dinellianus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94713,"full_name":"Melanitta deglandi","author_year":"Bonaparte, 1850","common_names":[{"lang":"English","names":"White-winged Scoter","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94714,"full_name":"Speculanas specularis","author_year":"King, 1828","common_names":[{"lang":"English","names":"Spectacled Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à lunettes","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade anteojillo","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Speculanas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas specularis","author_year":"P. P. King, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94715,"full_name":"Mareca falcata","author_year":"Georgi, 1775","common_names":[{"lang":"Danish","names":"Segland","convention_language":false,"id":null},{"lang":"Dutch","names":"Bronskopeend","convention_language":false,"id":null},{"lang":"English","names":"Falcated Duck, Falcated Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard à faucilles","convention_language":true,"id":null},{"lang":"Polish","names":"Czuprynka","convention_language":false,"id":null},{"lang":"Russian","names":"Kasatka","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta de Alfanjes","convention_language":true,"id":null},{"lang":"Swedish","names":"praktand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas falcata","author_year":"Georgi, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94716,"full_name":"Falco cuvierii","author_year":"Smith, 1830","common_names":[{"lang":"English","names":"African Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94717,"full_name":"Anas superciliosa","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Pacific Black Duck","convention_language":true,"id":null}],"distributions":[{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94718,"full_name":"Anas zonorhyncha","author_year":"Swinhoe, 1866","common_names":[{"lang":"English","names":"Chinese Spot-billed Duck","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94719,"full_name":"Mareca americana","author_year":"Gmelin, 1789 ","common_names":[{"lang":"Danish","names":"Amerikansk Pibeand","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Smient","convention_language":false,"id":null},{"lang":"English","names":"American Wigeon, Baldpate","convention_language":true,"id":null},{"lang":"French","names":"Canard à front blanc, Canard d'Amérique, Canard siffleur américain","convention_language":true,"id":null},{"lang":"Spanish","names":"Silbón Americano","convention_language":true,"id":null},{"lang":"Swedish","names":"amerikansk bläsand","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas americana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94720,"full_name":"Nettapus coromandelianus","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Cotton Pygmy-goose","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Nettapus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94721,"full_name":"Actitis hypoleucos","author_year":"Linnaeus, 1758 ","common_names":[{"lang":"Danish","names":"Mudderklire","convention_language":false,"id":null},{"lang":"English","names":"Common Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier guignette","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos chico","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Actitis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Tringa hypoleucos","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94722,"full_name":"Sarcoramphus papa","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"King Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Sarcoramphus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94723,"full_name":"Heteronetta atricapilla","author_year":"Merrem, 1841","common_names":[{"lang":"English","names":"Black-headed Duck","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Heteronetta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94724,"full_name":"Hieraaetus wahlbergi","author_year":"Sundevall, 1851","common_names":[{"lang":"English","names":"Wahlberg's Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aquila wahlbergi","author_year":"Sundevall, 1851"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94725,"full_name":"Melanitta stejnegeri","author_year":"Ridgway, 1887","common_names":[{"lang":"English","names":"Siberian Scoter","convention_language":true,"id":null}],"distributions":[{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94726,"full_name":"Spatula versicolor","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Silver Teal","convention_language":true,"id":null}],"distributions":[{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94727,"full_name":"Nisaetus nipalensis","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Mountain Hawk-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Nisaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Spizaetus nipalensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94728,"full_name":"Anas bahamensis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"White-cheeked Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94729,"full_name":"Xenus cinereus","author_year":"(Güldenstädt, 1775)","common_names":[{"lang":"English","names":"Terek Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier bargette","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos del Terek","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Xenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Scolopax cinerea","author_year":"Güldenstädt, 1775"},{"full_name":"Tringa cinerea","author_year":"(Güldenstädt, 1775)"},{"full_name":"Tringa terek","author_year":"(Latham, 1790)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94730,"full_name":"Mareca strepera","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Knarand","convention_language":false,"id":null},{"lang":"English","names":"Gadwall","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaasorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard chipeau","convention_language":true,"id":null},{"lang":"German","names":"Schnatterente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kendermagos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Canapiglia","convention_language":false,"id":null},{"lang":"Polish","names":"Krakwa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Frisada","convention_language":false,"id":null},{"lang":"Spanish","names":"Anade friso","convention_language":true,"id":null},{"lang":"Swedish","names":"Snatterand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas strepera","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94731,"full_name":"Melanitta americana","author_year":"Swainson, 1832","common_names":[{"lang":"English","names":"Black Scoter","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94732,"full_name":"Vultur gryphus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Andean Condor","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Vultur","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":94733,"full_name":"Dendrocygna autumnalis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Black-bellied Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94734,"full_name":"Anas georgica","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Yellow-billed Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94735,"full_name":"Spatula puna","author_year":"Tschudi, 1844","common_names":[{"lang":"English","names":"Puna Teal","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94736,"full_name":"Spatula cyanoptera","author_year":"Vieillot, 1816","common_names":[{"lang":"Dutch","names":"Kaneeltaling","convention_language":false,"id":null},{"lang":"English","names":"Cinnamon Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle cannelle","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta colorada","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas cyanoptera","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94737,"full_name":"Anser canagicus","author_year":"(Sevastianov, 1802)","common_names":[{"lang":"English","names":"Emperor Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie empereur","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar emperador","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas canagica","author_year":"Sevastianov, 1802"},{"full_name":"Anser canagica","author_year":"(Sevastianov, 1802)"},{"full_name":"Chen canagica","author_year":"(Sevastianov, 1802)"},{"full_name":"Philacte canagica","author_year":"(Sevastionov, 1802)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94738,"full_name":"Alopochen aegyptiaca","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Egyptian Goose","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain,introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced (?),introduced","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sutherland, W. J. and Allport, G. 1991. The distribution and ecology of naturalised Egyptian Geese \u003Ci\u003EAlopochen aegyptiacus\u003C/i\u003E in Britain. Bird Study: 38: 128-134.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Alopochen","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Alopochen aegyptiacus","author_year":"(Linnaeus, 1766)"},{"full_name":"Anas aegyptiaca","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94739,"full_name":"Spatula smithii","author_year":"(Hartert, 1891) ","common_names":[{"lang":"English","names":"Cape Shoveler","convention_language":true,"id":null},{"lang":"French","names":"Canard de Smith","convention_language":true,"id":null},{"lang":"Spanish","names":"Cuchara del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas smithii","author_year":"(Hartert, 1891)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94740,"full_name":"Anseranas semipalmata","author_year":"(Latham, 1798)","common_names":[{"lang":"English","names":"Magpie Goose","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anseranatidae","genus_name":"Anseranas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Anatidae","auto_note":"FAMILY ADDITION Anseranatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94741,"full_name":"Spatula clypeata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northern Shoveler, Shoveler","convention_language":true,"id":null},{"lang":"French","names":"Canard souchet","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas clypeata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94742,"full_name":"Dendrocygna javanica","author_year":"Horsfield, 1821","common_names":[{"lang":"English","names":"Lesser Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94743,"full_name":"Chlamydotis macqueenii","author_year":"J.E. Gray, 1832","common_names":[{"lang":"English","names":"Asian Houbara","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Chlamydotis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EChlamydotis undulata\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94744,"full_name":"Spatula platalea","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Red Shoveler","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94745,"full_name":"Calidris falcinellus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Dutch","names":"Breedbekstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Broad-billed Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Jänkäsirriäinen","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau falcinelle","convention_language":true,"id":null},{"lang":"German","names":"Sumpfläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárjáró","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio frullino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fjellmyrløper","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-falcinelo","convention_language":false,"id":null},{"lang":"Russian","names":"Gryazovik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Falcinelo","convention_language":true,"id":null},{"lang":"Swedish","names":"Myrsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Limicola falcinellus","author_year":"(Pontoppidan, 1763)"},{"full_name":"Scolopax falcinellus","author_year":"Pontopiddan, 1763"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94746,"full_name":"Cygnus melancoryphus","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Black-necked Swan","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cygnus melanocorypha","author_year":"(Molina) 1782"},{"full_name":"Cygnus melanocoryphus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94747,"full_name":"Clanga pomarina","author_year":"(Brehm, 1831)","common_names":[{"lang":"English","names":"Lesser Spotted Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Clanga","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aquila pomarina","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94748,"full_name":"Spatula hottentota","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Hottentot Teal, Spotted Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle hottentote","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta hotentote","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas hottentota","author_year":"(Eyton, 1838)"},{"full_name":"Anas punctata","author_year":"Burchell, 1822"},{"full_name":"Querquedula hottentota","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94749,"full_name":"Branta hutchinsii","author_year":"(Richardson, 1832)","common_names":[{"lang":"English","names":"Cackling Goose","convention_language":true,"id":null}],"distributions":[{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94871,"full_name":"Acrocephalus orinus","author_year":"Oberholser, 1905","common_names":[{"lang":"English","names":"Large-billed Reed-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94872,"full_name":"Locustella pryeri","author_year":"Seebohm, 1884","common_names":[{"lang":"English","names":"Marsh Grassbird","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Megalurus pryeri","author_year":"Seebohm, 1884"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94875,"full_name":"Calidris himantopus","author_year":"(Bonaparte, 1826)","common_names":[{"lang":"Danish","names":"Langbenet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Steltstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Stilt Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à échasses","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos zancolín","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Micropalama himantopus","author_year":"(Bonaparte, 1826)"},{"full_name":"Tringa himantopus","author_year":"Bonaparte, 1826"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94876,"full_name":"Eumyias thalassinus","author_year":"Swainson, 1838","common_names":[{"lang":"English","names":"Verditer Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Eumyias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eumyias thalassina","author_year":"Swainson, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94877,"full_name":"Ficedula albicilla","author_year":"Pallas, 1811","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94878,"full_name":"Phoenicurus erythronotus","author_year":"Eversmann, 1841","common_names":[{"lang":"English","names":"Eversmann’s Redstart","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phoenicurus erythronota","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94879,"full_name":"Phylloscopus claudiae","author_year":"(La Touche, 1922)","common_names":[{"lang":"English","names":"Claudia's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94880,"full_name":"Phylloscopus humei","author_year":"(Brooks, 1878)","common_names":[{"lang":"English","names":"Hume's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94881,"full_name":"Turdus eunomus","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Dusky Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94882,"full_name":"Saxicola torquatus","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Common Stonechat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Saxicola torquata","author_year":"(Linnaeus, 1766)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94883,"full_name":"Saxicola ferreus","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Grey Bushchat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Saxicola ferrea","author_year":"Gray, 1846"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94884,"full_name":"Regulus ignicapilla","author_year":"Temminck, 1820","common_names":[{"lang":"English","names":"Common Firecrest","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Regulus ignicapillus","author_year":"(Temminck, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94885,"full_name":"Phylloscopus yunnanensis","author_year":"La Touche, 1922","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phylloscopus sichuanensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94886,"full_name":"Phylloscopus xanthoschistos","author_year":"G. E. Gray \u0026 G. R. Gray, 1847","common_names":[{"lang":"English","names":"Grey-hooded Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus xanthoschistos","author_year":"(Gray, 1846)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95073,"full_name":"Anthus hoeschi","author_year":"Stresemann, 1938","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95074,"full_name":"Anthus pratensis","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95075,"full_name":"Antigone antigone","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Sarus Crane","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Grus antigone","author_year":"(Linnaeus) 1758 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95076,"full_name":"Asarcornis scutulata","author_year":"(S. Müller, 1842)","common_names":[{"lang":"English","names":"White-winged Duck, White-winged Wood Duck","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato Almizclero Aliblanco, Pato de Jungla","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Asarcornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cairina scutulata","author_year":"(Müller) 1842"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95077,"full_name":"Brachypteryx hyperythra","author_year":"Jerdon \u0026 Blyth, 1861","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Brachypteryx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95078,"full_name":"Calliope pectardens","author_year":"David, 1871","common_names":[{"lang":"English","names":"Firethroat","convention_language":true,"id":null},{"lang":"French","names":"Rossignol de David","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus pectardens","author_year":"(David, 1871)"},{"full_name":"Luscinia pectardens","author_year":"(David, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95079,"full_name":"Catharus bicknelli","author_year":"(Ridgway, 1882)","common_names":[{"lang":"English","names":"Bicknell's Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95080,"full_name":"Chaetops aurantius","author_year":"Layard, 1867","common_names":[{"lang":"English","names":"Drakensberg Rockjumper, Orange-breasted Rock-jumper","convention_language":true,"id":null}],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Chaetopidae","genus_name":"Chaetops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Chaetopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95081,"full_name":"Chaetornis striata","author_year":"(Jerdon, 1841)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Chaetornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95082,"full_name":"Charadrius dealbatus","author_year":"(Swinhoe, 1870)","common_names":[{"lang":"English","names":"White-faced Plover","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95083,"full_name":"Charadrius nivosus","author_year":"(Cassin, 1858)","common_names":[{"lang":"English","names":"Snowy Plover","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95084,"full_name":"Circaetus beaudouini","author_year":"Verreaux and Des Murs, 1862","common_names":[{"lang":"English","names":"Beaudouin's Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":95085,"full_name":"Cyanoptila cumatilis","author_year":"Thayer \u0026 Bangs, 1909","common_names":[{"lang":"English","names":"Zappey's Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanoptila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95086,"full_name":"Falco chicquera","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Red-headed Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95087,"full_name":"Gallinago stricklandii","author_year":"(Gray, 1845)","common_names":[{"lang":"English","names":"Fuegian Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95096,"full_name":"Hemimacronyx chloris","author_year":"Lichtenstein, 1842","common_names":[],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Hemimacronyx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95103,"full_name":"Hylocichla mustelina","author_year":"Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Amerikaanse Boslijster","convention_language":false,"id":null},{"lang":"English","names":"Wood Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive des bois","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Hylocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Catharus mustelinus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95104,"full_name":"Icthyophaga humilis","author_year":"(Müller and Schlegel, 1841)","common_names":[{"lang":"English","names":"Lesser Fish-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Icthyophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ichthyophaga humilis","author_year":"Müller and Schlegel, 1841"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95105,"full_name":"Laticilla burnesii","author_year":"Blyth, 1844","common_names":[],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Pellorneidae","genus_name":"Laticilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Pellorneidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95106,"full_name":"Locustella major","author_year":"W. E. Brooks, 1871","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95107,"full_name":"Monticola explorator","author_year":"Vieillot, 1818","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95108,"full_name":"Oenanthe dubia","author_year":"Blundell and Lovat, 1899","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95110,"full_name":"Phegornis mitchellii","author_year":"(Fraser, 1845)","common_names":[{"lang":"English","names":"Diademed Plover, Diademed Sandpiper-Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Phegornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95112,"full_name":"Pluvianellus socialis","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Magellanic Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Pluvianellidae","genus_name":"Pluvianellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Scolopacidae","auto_note":"FAMILY ADDITION Pluvianellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95113,"full_name":"Saxicola macrorhynchus","author_year":"Stoliczka, 1872","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95114,"full_name":"Sylvia nigricapillus","author_year":"Vieillot, 1818","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95115,"full_name":"Sylvia undata","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Dartford Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95161,"full_name":"Calidris virgata","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Surfbird","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau du ressac","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aphriza virgata","author_year":"(Gmelin, 1789) "},{"full_name":"Tringa virgata","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95163,"full_name":"Geokichla wardii","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Pied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Ward","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera wardii","author_year":"(Blyth, 1842) "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95212,"full_name":"Geokichla sibirica","author_year":"Pallas, 1776","common_names":[{"lang":"Danish","names":"Siberisk Drossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Lijster","convention_language":false,"id":null},{"lang":"English","names":"Siberian Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Sibérie","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera sibirica","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95214,"full_name":"Ixoreus naevius","author_year":"J. F. Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Bonte Lijster","convention_language":false,"id":null},{"lang":"English","names":"Varied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à collier","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Ixoreus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera naevia","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95217,"full_name":"Hemitesia pallidipes","author_year":"Blanford, 1872","common_names":[{"lang":"English","names":"Pale-footed Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle à pattes claires","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Hemitesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia pallidipes","author_year":"(Blanford, 1872)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95240,"full_name":"Iduna rama","author_year":"Sykes, 1832","common_names":[{"lang":"English","names":"Sykes's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hippolais rama","author_year":"(Sykes, 1832)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95245,"full_name":"Monticola rufocinereus","author_year":"(Rüppell, 1837)","common_names":[],"distributions":[{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95248,"full_name":"Iduna opaca","author_year":"(Cabanis, 1850)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95250,"full_name":"Ictinaetus malaiensis","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Black Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ictinaetus malayensis","author_year":"(Temminck) 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95255,"full_name":"Gallinago delicata","author_year":"(Ord, 1825)","common_names":[{"lang":"English","names":"Wilson's Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95258,"full_name":"Fraseria caerulescens","author_year":"(Hartlaub, 1865)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Fraseria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95260,"full_name":"Phylloscopus castaniceps","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Chestnut-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus castaniceps","author_year":"(Hodgson, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95262,"full_name":"Vanellus tectus","author_year":"(Boddaert, 1783)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95263,"full_name":"Larvivora sibilans","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Rufous-tailed Robin","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus sibilans","author_year":"(Swinhoe, 1863)"},{"full_name":"Luscinia sibilans","author_year":"(Swinhoe, 1863)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95265,"full_name":"Anthus lineiventris","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95271,"full_name":"Turdus dissimilis","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Black-breasted Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95287,"full_name":"Turdus viscivorus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Mistle Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95297,"full_name":"Monticola rupestris","author_year":"(Vieillot, 1818)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95299,"full_name":"Vanellus armatus","author_year":"(Burchell, 1822)","common_names":[{"lang":"English","names":"Blacksmith Lapwing, Blacksmith Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau armé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95302,"full_name":"Catharus swainsoni","author_year":"(Tschudi, 1845)","common_names":[{"lang":"English","names":"Swainson's Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95308,"full_name":"Turdus libonyana","author_year":"(Smith, 1836)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95339,"full_name":"Enicurus scouleri","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Little Forktail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Enicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95343,"full_name":"Abroscopus superciliaris","author_year":"(Blyth, 1859)","common_names":[{"lang":"English","names":"Yellow-bellied Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Abroscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95346,"full_name":"Grandala coelicolor","author_year":"Hodgson, 1843","common_names":[{"lang":"English","names":"Grandala","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Grandala","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95357,"full_name":"Sylvietta brachyura","author_year":"Lafresnaye, 1839","common_names":[{"lang":"English","names":"Northern Crombec","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Macrosphenidae","genus_name":"Sylvietta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Macrosphenidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95363,"full_name":"Locustella mandelli","author_year":"(W.E. Brooks, 1875)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95372,"full_name":"Tringa semipalmata","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Willet","convention_language":true,"id":null},{"lang":"French","names":"Chevalier semipalmé","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero aliblanco","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Catoptrophorus semipalmatus","author_year":"(Gmelin, 1789)"},{"full_name":"Scolopax semipalmata","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95395,"full_name":"Sialia sialis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eastern Bluebird","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95398,"full_name":"Oenanthe lugens","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95406,"full_name":"Prionops plumatus","author_year":"(Shaw, 1809)","common_names":[{"lang":"English","names":"White-crested Helmetshrike","convention_language":true,"id":null},{"lang":"French","names":"Bagadais casqué","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vangidae","genus_name":"Prionops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vangidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95415,"full_name":"Cyornis banyumas","author_year":"(Horsfield, 1821)","common_names":[{"lang":"English","names":"Hill Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95430,"full_name":"Rhipidura rufifrons","author_year":"(Latham, 1801)","common_names":[{"lang":"English","names":"Rufous Fantail","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Rhipiduridae","genus_name":"Rhipidura","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Rhipiduridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95431,"full_name":"Muscicapa aquatica","author_year":"Heuglin, 1864","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95438,"full_name":"Anthus hellmayri","author_year":"Hartert, 1909","common_names":[{"lang":"English","names":"Hellmayr's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95439,"full_name":"Locustella thoracica","author_year":"Blyth, 1845","common_names":[{"lang":"English","names":"Spotted Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Bradypterus davidi","author_year":"(La Touche, 1923)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95442,"full_name":"Gallinago andina","author_year":"Taczanowski, 1875","common_names":[{"lang":"English","names":"Puna Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95455,"full_name":"Oriolus oriolus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eurasian Golden Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95456,"full_name":"Cercotrichas podobe","author_year":"(Müller, 1776)","common_names":[],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cercotrichas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95464,"full_name":"Motacilla citreola","author_year":"Pallas, 1776","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95493,"full_name":"Oenanthe chrysopygia","author_year":"(de Filippi, 1863)","common_names":[{"lang":"English","names":"Red-tailed Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95496,"full_name":"Ficedula ruficauda","author_year":"(Swainson, 1838)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Muscicapa ruficauda","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95506,"full_name":"Turdus subalaris","author_year":"(Seebohm, 1887)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95515,"full_name":"Tarsiger rufilatus","author_year":"(Hodgson, 1845)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95531,"full_name":"Phylloscopus poliogenys","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Grey-cheeked Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus poliogenys","author_year":"(Blyth, 1847)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95532,"full_name":"Psophocichla litsitsirupa","author_year":"(Smith, 1836)","common_names":[{"lang":"English","names":"Groundscraper Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Psophocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95540,"full_name":"Motacilla maderaspatensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"White-browed Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95554,"full_name":"Lophaetus occipitalis","author_year":"(Daudin, 1800)","common_names":[{"lang":"English","names":"Long-crested Eagle","convention_language":true,"id":null},{"lang":"French","names":"Aigle huppé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Lophaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95557,"full_name":"Charadrius collaris","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Collared Plover","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95561,"full_name":"Oriolus tenuirostris","author_year":"Blyth, 1846","common_names":[{"lang":"English","names":"Slender-billed Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95562,"full_name":"Anthus rubescens","author_year":"(Tunstall, 1771)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95575,"full_name":"Phylloscopus valentini","author_year":"E. Hartert, 1907","common_names":[{"lang":"English","names":"Bianchi's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus valentini","author_year":"(Hartert, 1907)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95586,"full_name":"Oenanthe familiaris","author_year":"(Wilkes, 1817)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95587,"full_name":"Haematopus palliatus","author_year":"Temminck, 1820","common_names":[{"lang":"English","names":"American Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95589,"full_name":"Motacilla capensis","author_year":"Linnaeus, 1766","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95599,"full_name":"Antigone canadensis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Sandhill Crane","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Grus canadensis","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95622,"full_name":"Vireo olivaceus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Red-eyed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95637,"full_name":"Oenanthe heuglinii","author_year":"(Finsch \u0026 Hartlaub, 1870)","common_names":[{"lang":"English","names":"Heuglin's Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95650,"full_name":"Agricola pallidus","author_year":"(von Müller, 1851)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Agricola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95658,"full_name":"Enicurus leschenaulti","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-crowned Forktail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Enicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95665,"full_name":"Phylloscopus intermedius","author_year":"La Touche, 1898","common_names":[{"lang":"English","names":"White-spectacled Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus affinis","author_year":"(Hodgson, 1854)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95671,"full_name":"Calliope pectoralis","author_year":"(Gould, 1837)","common_names":[{"lang":"English","names":"Himalayan Rubythroat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus pectoralis","author_year":"(Gould, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95674,"full_name":"Anthus campestris","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95675,"full_name":"Anthus brachyurus","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95698,"full_name":"Cyornis magnirostris","author_year":"Blyth, 1849","common_names":[{"lang":"English","names":"Large Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95700,"full_name":"Oriolus xanthornus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Black-hooded Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95701,"full_name":"Scotocerca inquieta","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Streaked Scrub-warbler","convention_language":true,"id":null},{"lang":"French","names":"Dromoïque du désert,","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Scotocerca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95702,"full_name":"Horornis fortipes","author_year":"Hodgson, 1845","common_names":[{"lang":"English","names":"Brownish-flanked Bush-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia fortipes","author_year":"(Hodgson, 1845)"},{"full_name":"Cettia robustipes","author_year":"(Swinhoe, 1866)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95707,"full_name":"Horornis flavolivaceus","author_year":"(Blyth, 1845)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95722,"full_name":"Anthus cervinus","author_year":"(Pallas, 1811)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95729,"full_name":"Cochoa viridis","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Green Cochoa","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Cochoa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95740,"full_name":"Bradornis microrhynchus","author_year":"(Reichenow, 1887)","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Bradornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95747,"full_name":"Chelidorhynx hypoxanthus","author_year":"(Blyth, 1843)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Chelidorhynx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95761,"full_name":"Calliope calliope","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"Siberian Rubythroat","convention_language":true,"id":null},{"lang":"French","names":"Calliope sibèrienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Ruiseñor Calíope","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus calliope","author_year":"(Pallas, 1776)"},{"full_name":"Luscinia calliope","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95763,"full_name":"Falco berigora","author_year":"Vigors \u0026 Horsfield, 1827","common_names":[{"lang":"English","names":"Brown Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95765,"full_name":"Vireo altiloquus","author_year":"(Vieillot, 1808)","common_names":[{"lang":"English","names":"Black-whiskered Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95766,"full_name":"Micronisus gabar","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Gabar Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Micronisus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Melierax gabar","author_year":"(Daudin) 1800"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95767,"full_name":"Tesia cyaniventer","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Grey-bellied Tesia","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Tesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95769,"full_name":"Haematopus ater","author_year":"Vieillot \u0026 Oudart, 1825","common_names":[{"lang":"English","names":"Blackish Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Haematopus bachmani","author_year":"Audubon, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95799,"full_name":"Sylvia subalpina","author_year":"Orlando, 1937","common_names":[{"lang":"English","names":"Moltoni's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95802,"full_name":"Anthus correndera","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Correndera Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95805,"full_name":"Terpsiphone affinis","author_year":"(Blyth, 1846)","common_names":[{"lang":"English","names":"Oriental Paradise-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95806,"full_name":"Cisticola cinnamomeus","author_year":"Reichenow, 1904","common_names":[{"lang":"English","names":"Pale-crowned Cisticola","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Cisticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95810,"full_name":"Vireo flavoviridis","author_year":"(Cassin, 1851)","common_names":[{"lang":"English","names":"Yellow-green Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95815,"full_name":"Turdus pelios","author_year":"Bonaparte, 1850","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95819,"full_name":"Motacilla cinerea","author_year":"Tunstall, 1771","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95831,"full_name":"Vanellus malabaricus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Yellow-wattled Lapwing","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95836,"full_name":"Myrmecocichla aethiops","author_year":"Cabanis, 1850","common_names":[],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Myrmecocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95843,"full_name":"Niltava oatesi","author_year":"Salvadori, 1887","common_names":[{"lang":"English","names":"Large Vivid Niltava","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95848,"full_name":"Phoenicurus fuliginosus","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Plumbeous Water-redstart","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Rhyacornis fuliginosus","author_year":"Vigors, 1831 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95850,"full_name":"Phoenicurus coeruleocephala","author_year":"Vigors, 1831","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95868,"full_name":"Falco ardosiaceus","author_year":"Vieillot, 1823","common_names":[{"lang":"English","names":"Grey Kestrel","convention_language":true,"id":null},{"lang":"French","names":"Faucon ardoisé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95876,"full_name":"Cyornis unicolor","author_year":"Blyth, 1843","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95892,"full_name":"Pogonocichla stellata","author_year":"(Vieillot, 1818)","common_names":[],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Pogonocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95901,"full_name":"Turdus olivaceus","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Olive Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95916,"full_name":"Cyanecula svecica","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Bluethroat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanecula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Luscinia svecica","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95925,"full_name":"Buteo japonicus","author_year":"Temminck \u0026 Schlegel, 1844","common_names":[{"lang":"English","names":"Japanese Buzzard, Eastern Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":95931,"full_name":"Locustella davidi","author_year":"(La Touche, 1923)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95943,"full_name":"Oriolus auratus","author_year":"Vieillot, 1817","common_names":[{"lang":"English","names":"African Golden Oriole","convention_language":true,"id":null},{"lang":"French","names":"Loriot doré","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95945,"full_name":"Calliope tschebaiewi","author_year":"(Przevalski, 1876)","common_names":[{"lang":"English","names":"Chinese Rubythroat","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95952,"full_name":"Motacilla alba","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95958,"full_name":"Phyllergates cucullatus","author_year":"(Temminck, 1836)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Phyllergates","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95968,"full_name":"Recurvirostra andina","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Andean Avocet","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95980,"full_name":"Cossypha natalensis","author_year":"Smith, 1840","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cossypha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95986,"full_name":"Vireo huttoni","author_year":"Cassin, 1851","common_names":[{"lang":"English","names":"Hutton's Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95991,"full_name":"Vireo griseus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"White-eyed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95993,"full_name":"Oenanthe pileata","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96005,"full_name":"Ficedula hyperythra","author_year":"(Blyth, 1843)","common_names":[{"lang":"English","names":"Snowy-browed Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96026,"full_name":"Oenanthe melanura","author_year":"(Temminck, 1824)","common_names":[],"distributions":[{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96031,"full_name":"Vanellus crassirostris","author_year":"(Hartlaub, 1855)","common_names":[{"lang":"English","names":"Long-toed Lapwing, Long-toed Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à ailes blanches","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96035,"full_name":"Aegithalos caudatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Long-tailed Tit, Long-tailed Bushtit","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Aegithalidae","genus_name":"Aegithalos","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Aegithalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96039,"full_name":"Tesia olivea","author_year":"(McClelland, 1840)","common_names":[{"lang":"English","names":"Slaty-bellied Tesia","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Tesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96043,"full_name":"Circus hudsonius","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Northern Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96046,"full_name":"Cochoa purpurea","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Purple Cochoa","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Cochoa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96051,"full_name":"Motacilla tschutschensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Eastern Yellow Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96062,"full_name":"Oenanthe leucura","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96063,"full_name":"Phylloscopus examinandus","author_year":"Stresemann, 1913","common_names":[{"lang":"English","names":"Kamchatka Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96071,"full_name":"Iduna caligata","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96077,"full_name":"Cyornis tickelliae","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Tickell's Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96085,"full_name":"Phyllolais pulchella","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Buff-bellied Warbler","convention_language":true,"id":null},{"lang":"French","names":"Apalis à ventre jaune","convention_language":true,"id":null}],"distributions":[{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Phyllolais","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96090,"full_name":"Zoothera salimalii","author_year":"Alström, Rasmussen, Zhao, Xu, Dalvi, Cai, Guan, Zhang, Kalyakin, Lei \u0026 Olsson, 2016","common_names":[{"lang":"English","names":"Himalayan Forest Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96098,"full_name":"Anthus hodgsoni","author_year":"Richmond, 1907","common_names":[{"lang":"English","names":"Olive-backed Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96108,"full_name":"Larvivora brunnea","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Indian Blue Robin","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus brunneus","author_year":"(Hodgson, 1837)"},{"full_name":"Luscinia brunnea","author_year":"(Hodgson, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96117,"full_name":"Anthus cinnamomeus","author_year":"Rüppell, 1840","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96141,"full_name":"Sylvia crassirostris","author_year":"Cretzschmar, 1827","common_names":[{"lang":"English","names":"Eastern Orphean Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96159,"full_name":"Oenanthe monacha","author_year":"(Temminck, 1825)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96161,"full_name":"Zoothera marginata","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Dark-sided Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96162,"full_name":"Phylloscopus tristis","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Siberian Chiffchaff","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96176,"full_name":"Vireo gilvus","author_year":"(Vieillot, 1808)","common_names":[{"lang":"English","names":"Warbling Vireo, Eastern Warbling-Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96181,"full_name":"Tmetothylacus tenellus","author_year":"(Cabanis, 1878)","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Tmetothylacus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96184,"full_name":"Cisticola ayresii","author_year":"Hartlaub, 1863","common_names":[{"lang":"English","names":"Wing-snapping Cisticola","convention_language":true,"id":null},{"lang":"French","names":"Cisticole gratte-nuage","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Cisticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96192,"full_name":"Vireo flavifrons","author_year":"Vieillot, 1808","common_names":[{"lang":"English","names":"Yellow-throated Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96208,"full_name":"Charadrius alticola","author_year":"(Berlepsch \u0026 Stolzmann, 1902)","common_names":[{"lang":"English","names":"Puna Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96210,"full_name":"Vireo solitarius","author_year":"(Wilson, 1810)","common_names":[{"lang":"English","names":"Blue-headed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96214,"full_name":"Prinia erythroptera","author_year":"(Jardine, 1849)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Prinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96224,"full_name":"Prinia subflava","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Tawny-flanked Prinia","convention_language":true,"id":null},{"lang":"French","names":"Prinia commune","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Prinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96226,"full_name":"Iduna pallida","author_year":"(Ehrenberg, 1833)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96238,"full_name":"Ibidorhyncha struthersii","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Ibisbill","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Ibidorhynchidae","genus_name":"Ibidorhyncha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Ibidorhynchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96246,"full_name":"Rhinopomastus aterrimus","author_year":"(Stephens, 1826)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Bucerotiformes","class_name":"Aves","family_name":"Phoeniculidae","genus_name":"Rhinopomastus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":96250,"full_name":"Oenanthe albonigra","author_year":"(Hume, 1872)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96261,"full_name":"Cettia castaneocoronata","author_year":"(Burton, 1836)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96264,"full_name":"Motacilla flava","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Western Yellow Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96267,"full_name":"Eremomela icteropygialis","author_year":"(Lafresnaye, 1839)","common_names":[{"lang":"English","names":"Yellow-bellied Eremomela","convention_language":true,"id":null},{"lang":"French","names":"Erémomèle gris-jaune","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Eremomela","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96268,"full_name":"Emarginata sinuata","author_year":"(Sundevall, 1858)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Emarginata","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96289,"full_name":"Oenanthe albifrons","author_year":"(Rüppell, 1837)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96297,"full_name":"Otocichla mupinensis","author_year":"(Laubmann, 1920)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Otocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96303,"full_name":"Polyboroides typus","author_year":"Smith, 1829","common_names":[{"lang":"English","names":"African Harrier-hawk, Gymnogene","convention_language":true,"id":null},{"lang":"French","names":"Gymnogène d'Afrique","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Polyboroides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96310,"full_name":"Leptopoecile sophiae","author_year":"Severtsov, 1873","common_names":[{"lang":"English","names":"White-browed Tit-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Aegithalidae","genus_name":"Leptopoecile","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Aegithalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96314,"full_name":"Phylloscopus xanthodryas","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Japanese Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96329,"full_name":"Sheppardia polioptera","author_year":"Reichenow, 1892","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Sheppardia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96331,"full_name":"Catharus mexicanus","author_year":"(Bonaparte, 1856)","common_names":[],"distributions":[{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96338,"full_name":"Vireo bellii","author_year":"Audubon, 1844","common_names":[{"lang":"English","names":"Bell's Vireo","convention_language":true,"id":null}],"distributions":[{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96345,"full_name":"Anthus caffer","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96348,"full_name":"Symposiachrus trivirgatus","author_year":"Temminck, 1826","common_names":[{"lang":"English","names":"Spectacled Monarch","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Symposiachrus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Monarcha trivirgatus","author_year":"(Temminck, 1826)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96353,"full_name":"Phoenicurus leucocephalus","author_year":"(Vigors, 1831)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Chaimarrornis leucocephalus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96356,"full_name":"Cathartes burrovianus","author_year":"Cassin, 1845","common_names":[{"lang":"English","names":"Lesser Yellow-headed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Cathartes","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96357,"full_name":"Anthus roseatus","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Rosy Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96360,"full_name":"Phalcoboenus chimango","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Chimango Caracara","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Phalcoboenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Milvago chimango","author_year":"(Vieillot) 1816 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96367,"full_name":"Anthus petrosus","author_year":"(Montagu, 1798)","common_names":[],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96377,"full_name":"Megabyas flammulatus","author_year":"(Verreaux \u0026 Verreaux, 1855)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vangidae","genus_name":"Megabyas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vangidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96395,"full_name":"Thamnolaea cinnamomeiventris","author_year":"(Lafresnaye, 1836)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Thamnolaea","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96400,"full_name":"Arundinax aedon","author_year":"(Pallas, 1776)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Arundinax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Acrocephalus aedon","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96422,"full_name":"Horornis diphone","author_year":"(Kittlitz, 1830)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96428,"full_name":"Cossypha dichroa","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cossypha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96439,"full_name":"Phoenicurus erythrogastrus","author_year":"(Güldenstädt, 1775)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96443,"full_name":"Oenanthe seebohmi","author_year":"(Dixon, 1882)","common_names":[{"lang":"English","names":"Black-throated Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96444,"full_name":"Anthus gustavi","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Pechora Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96445,"full_name":"Monticola cinclorhyncha","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Blue-capped Rock-thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Monticola cinclorhynchus","author_year":"(Vigors, 1832)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96453,"full_name":"Anthus trivialis","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96454,"full_name":"Oriolus kundoo","author_year":"Sykes, 1832","common_names":[{"lang":"English","names":"Indian Golden Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96455,"full_name":"Horornis brunnescens","author_year":"(Hume, 1872)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96460,"full_name":"Phylloscopus burkii","author_year":"E. Burton, 1836","common_names":[{"lang":"English","names":"Green-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus burkii","author_year":"(Burton, 1836)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96461,"full_name":"Melaenornis silens","author_year":"(Shaw, 1809)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Melaenornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96469,"full_name":"Anthus chacoensis","author_year":"Zimmer, 1952","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96483,"full_name":"Falco longipennis","author_year":"Swainson, 1837","common_names":[{"lang":"English","names":"Australian Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96487,"full_name":"Geranoaetus polyosoma","author_year":"(Quoy \u0026 Gaimard, 1824)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Geranoaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Buteo polyosoma","author_year":"(Quoy and Gaimard) 1824"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96488,"full_name":"Sylvia ruppeli","author_year":"Temminck, 1823","common_names":[{"lang":"English","names":"Rüppell's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette masquée","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96500,"full_name":"Muscicapa gambagae","author_year":"(Alexander, 1901)","common_names":[],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96503,"full_name":"Anthus godlewskii","author_year":"(Taczanowski, 1876)","common_names":[{"lang":"English","names":"Blyth's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96517,"full_name":"Anthus vaalensis","author_year":"Shelley, 1900","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96519,"full_name":"Terpsiphone incei","author_year":"(Gould, 1852)","common_names":[{"lang":"English","names":"Chinese Paradise-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96526,"full_name":"Turdus mandarinus","author_year":"Bonaparte, 1850","common_names":[{"lang":"English","names":"Chinese Blackbird","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96527,"full_name":"Phylloscopus tephrocephalus","author_year":"J. Anderson, 1871","common_names":[{"lang":"English","names":"Grey-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus tephrocephalus","author_year":"(Anderson, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96529,"full_name":"Gallinago undulata","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Giant Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96531,"full_name":"Oriolus chinensis","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Black-naped Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96542,"full_name":"Locustella tacsanowskia","author_year":"Swinhoe, 1871","common_names":[{"lang":"English","names":"Chinese Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Bradypterus tacsanowskius","author_year":"(Swinhoe, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96544,"full_name":"Sylvia leucomelaena","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"English","names":"Arabian Warbler, Red Sea Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de la Mer Rouge","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96547,"full_name":"Geokichla citrina","author_year":"(Latham, 1790)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96553,"full_name":"Zoothera aurea","author_year":"(Holandre, 1825)","common_names":[],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96555,"full_name":"Niltava sundara","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Rufous-bellied Niltava","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96593,"full_name":"Dendronanthus indicus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Forest Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Dendronanthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96595,"full_name":"Abroscopus schisticeps","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Black-faced Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Abroscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96606,"full_name":"Vireo philadelphicus","author_year":"(Cassin, 1851)","common_names":[{"lang":"English","names":"Philadelphia Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96616,"full_name":"Aquila fasciata","author_year":"(Vieillot, 1822)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hieraaetus fasciatus","author_year":"(Vieillot) 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96623,"full_name":"Polioptila caerulea","author_year":"(Linnaeus, 1766)","common_names":[],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Polioptilidae","genus_name":"Polioptila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Polioptilidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96627,"full_name":"Bradypterus barratti","author_year":"Sharpe, 1876","common_names":[{"lang":"English","names":"Barratt's Warbler, African Scrub-warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de Barratt","convention_language":true,"id":null}],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Bradypterus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96642,"full_name":"Haematopus leucopodus","author_year":"Garnot, 1826","common_names":[{"lang":"English","names":"Magellanic Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96648,"full_name":"Buteo plagiatus","author_year":"(Schlegel, 1862)","common_names":[{"lang":"English","names":"Grey Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96653,"full_name":"Anthus spinoletta","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96656,"full_name":"Terpsiphone viridis","author_year":"(Müller, 1776)","common_names":[{"lang":"English","names":"African Paradise-flycatcher, Gobemouche paradis","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96659,"full_name":"Falco femoralis","author_year":"Temminck, 1822","common_names":[{"lang":"English","names":"Aplomado Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96665,"full_name":"Ficedula westermanni","author_year":"(Sharpe, 1888)","common_names":[{"lang":"English","names":"Little Pied Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96681,"full_name":"Cinclidium frontale","author_year":"Blyth, 1842","common_names":[{"lang":"English","names":"Blue-fronted Robin","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cinclidium","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96690,"full_name":"Turdus atrogularis","author_year":"Jarocki, 1819","common_names":[{"lang":"English","names":"Black-throated Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96698,"full_name":"Ficedula erithacus","author_year":"(Jerdon and Blyth, 1861)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96699,"full_name":"Vireo plumbeus","author_year":"Coues, 1866","common_names":[{"lang":"English","names":"Plumbeous Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96707,"full_name":"Horornis canturians","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Korean Bush-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia canturians","author_year":"(Swinhoe, 1860)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96719,"full_name":"Sylvia deserti","author_year":"(Loche, 1858)","common_names":[{"lang":"English","names":"African Desert Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96722,"full_name":"Anthus richardi","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Richard's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96724,"full_name":"Falco cenchroides","author_year":"Vigors \u0026 Horsfield, 1827","common_names":[{"lang":"English","names":"Nankeen Kestrel, Australian Kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96730,"full_name":"Larvivora cyane","author_year":"Pallas, 1776","common_names":[{"lang":"English","names":"Siberian Blue Robin","convention_language":true,"id":null},{"lang":"French","names":"Rossignol bleu","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus cyane","author_year":"(Pallas, 1776)"},{"full_name":"Luscinia cyane","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96739,"full_name":"Monarcha frater","author_year":"Sclater, 1874","common_names":[{"lang":"English","names":"Black-winged Monarch","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Monarcha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96742,"full_name":"Oenanthe moesta","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96750,"full_name":"Anthus furcatus","author_year":"Lafresnaye \u0026 d'Orbigny, 1837","common_names":[{"lang":"English","names":"Short-billed Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96751,"full_name":"Zosterops erythropleurus","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Chestnut-flanked White-eye","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Zosteropidae","genus_name":"Zosterops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Zosteropidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96756,"full_name":"Myophonus caeruleus","author_year":"(Scopoli, 1786)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Myophonus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96764,"full_name":"Actitis macularius","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Plettet Mudderklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Oeverloper","convention_language":false,"id":null},{"lang":"English","names":"Spotted Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier grivelé","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos maculado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Actitis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Actitis macularia","author_year":"(Linnaeus, 1766)"},{"full_name":"Tringa macularia","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96822,"full_name":"Rhipidura albicollis","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-throated Fantail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Rhipiduridae","genus_name":"Rhipidura","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Rhipiduridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96823,"full_name":"Falco mexicanus","author_year":"Schlegel, 1850","common_names":[{"lang":"English","names":"Prairie Falcon","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96824,"full_name":"Oriolus mellianus","author_year":"Stresemann, 1922","common_names":[{"lang":"English","names":"Silver Oriole","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96825,"full_name":"Vireo vicinior","author_year":"Coues, 1866","common_names":[{"lang":"English","names":"Grey Vireo","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96826,"full_name":"Vireo cassinii","author_year":"Xántus de Vesey, 1858","common_names":[{"lang":"English","names":"Cassin's Vireo","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96827,"full_name":"Vireo atricapilla","author_year":"Woodhouse, 1852","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96828,"full_name":"Locustella amnicola","author_year":"Stepanyan, 1972","common_names":[{"lang":"English","names":"Sakhalin Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96829,"full_name":"Phylloscopus forresti","author_year":"Rothschild, 1921","common_names":[{"lang":"English","names":"Sichuan Leaf-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96830,"full_name":"Phylloscopus omeiensis","author_year":"(Martens, Eck, Päckert \u0026 Sun, 1999)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96831,"full_name":"Phylloscopus soror","author_year":"(Alström \u0026 Olsson, 1999)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96833,"full_name":"Phylloscopus intensior","author_year":"Deignan, 1956","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96834,"full_name":"Phylloscopus ogilviegranti","author_year":"(La Touche, 1922)","common_names":[{"lang":"English","names":"Kloss's Leaf-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96835,"full_name":"Zosterops japonicus","author_year":"Temminck \u0026 Schlegel, 1845","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Zosteropidae","genus_name":"Zosterops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Zosteropidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96836,"full_name":"Sialia mexicana","author_year":"Swainson, 1832","common_names":[{"lang":"English","names":"Western Bluebird","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96837,"full_name":"Zoothera griseiceps","author_year":"(Delacour, 1930)","common_names":[{"lang":"English","names":"Sichuan Forest Thrush","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96838,"full_name":"Cyornis brunneatus","author_year":"(Slater, 1897)","common_names":[{"lang":"English","names":"Brown-chested Jungle-flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96839,"full_name":"Cyornis glaucicomans","author_year":"(Thayer \u0026 Bangs, 1909)","common_names":[{"lang":"English","names":"Chinese Blue-flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96840,"full_name":"Larvivora ruficeps","author_year":"Hartert, 1907","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96841,"full_name":"Larvivora akahige","author_year":"(Temminck, 1835)","common_names":[{"lang":"English","names":"Japanese Robin","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96842,"full_name":"Calliope obscura","author_year":"(Berezowski \u0026 Bianchi, 1891)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96843,"full_name":"Ficedula elisae","author_year":"(Weigold, 1922)","common_names":[{"lang":"English","names":"Green-backed Flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96844,"full_name":"Anthus spragueii","author_year":"(Audubon, 1844)","common_names":[{"lang":"English","names":"Sprague's Pipit","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96845,"full_name":"Motacilla samveasnae","author_year":"Duckworth, Alström, Davidson, Evans, et al., 2001","common_names":[{"lang":"English","names":"Mekong Wagtail","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96846,"full_name":"Motacilla grandis","author_year":"Sharpe, 1885","common_names":[{"lang":"English","names":"Japanese Wagtail","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99276,"full_name":"Elephas maximus","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Elephas","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99279,"full_name":"Panthera onca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Jaguar","convention_language":true,"id":null},{"lang":"French","names":"Jaguar","convention_language":true,"id":null},{"lang":"German","names":"Jaguar","convention_language":false,"id":null},{"lang":"Spanish","names":"Tigre, Tigre Americano, Tigre mariposo, Tigre Real, Yaguar, Yaguareté, Otorongo, Jaguar","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"extinct","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"extinct (?)","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Felis onca","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99280,"full_name":"Ovis vignei","author_year":"Blyth, 1841","common_names":[{"lang":"English","names":"Urial","convention_language":true,"id":null},{"lang":"French","names":"Urial","convention_language":true,"id":null},{"lang":"German","names":"Urial","convention_language":false,"id":null},{"lang":"Spanish","names":"Urial","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Michel, S. 2010. Conservation of Tajik markhor (\u003Ci\u003ECapra falconeri heptneri\u003C/i\u003E) and urial (\u003Ci\u003EOvis vignei\u003C/i\u003E) in Tajikistan and adjacent Afghanistan. Galemys: 22: 407-419.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Farhadinia, M.S., Moqanaki, E.M. and Hosseini-Zavarei, F. 2014. Predator–prey relationships in a middle Asian Montane steppe: Persian leopard versus urial wild sheep in Northeastern Iran. European journal of wildlife research: 60(2): 341-349.; Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Sanna, D., Barbato, M., Hadjisterkotis, E., Cossu, P., Decandia, L., Trova, S., Pirastru, M., Leoni, G.G., Naitana, S., Francalacci, P. and Masala, B. 2015. The first mitogenome of the Cyprus Mouflon (\u003Ci\u003EOvis gmelini ophion\u003C/i\u003E): new insights into the phylogeny of the genus \u003Ci\u003EOvis\u003C/i\u003E. PloS one: 10(12): e0144257.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Michel, S. 2010. Conservation of Tajik markhor (\u003Ci\u003ECapra falconeri heptneri\u003C/i\u003E) and urial (\u003Ci\u003EOvis vignei\u003C/i\u003E) in Tajikistan and adjacent Afghanistan. Galemys: 22: 407-419.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ovis","name_status":"A","nomenclature_note_en":"","cms_listing":"II/NC","synonyms":[{"full_name":"Eupodotis edwardsi","author_year":""},{"full_name":"Ovis aries arkal","author_year":""},{"full_name":"Ovis aries cycloceros","author_year":""},{"full_name":"Ovis aries vignei","author_year":""},{"full_name":"Ovis orientalis arabica","author_year":""},{"full_name":"Ovis orientalis arkal","author_year":""},{"full_name":"Ovis orientalis blanfordi","author_year":""},{"full_name":"Ovis orientalis bochariensis","author_year":""},{"full_name":"Ovis orientalis cycloceros","author_year":""},{"full_name":"Ovis orientalis punjabensis","author_year":""},{"full_name":"Ovis orientalis vignei","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EOvis aries\u003C/i\u003E in Wilson and Reeder 2005, and applies only to wild populations in Afghanistan,\r\nIndia, Iran, Kazakhstan, Pakistan, Tajikistan, Turkmenistan and Uzbekistan, except for hybrid populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99282,"full_name":"Ardeotis nigriceps","author_year":"(Vigors, 1831)","common_names":[{"lang":"English","names":"Great Indian Bustard","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Ardeotis","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Choriotis nigriceps","author_year":""},{"full_name":"Otis nigriceps","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99284,"full_name":"Houbaropsis bengalensis","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Houbaropsis","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Eupodotis bengalensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99287,"full_name":"Tetrax tetrax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Little Bustard","convention_language":true,"id":null},{"lang":"French","names":"Outarde Canepetière","convention_language":true,"id":null},{"lang":"Spanish","names":"Sisón Común","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"Palac’n, C. and Alonso, J.C. 2009. Probable population decline of the Little Bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in north-west Africa. Ostrich: 80(3): 165-170.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.; Heiss, M. 2016. Migratory behaviour of bird species occurring in critical numbers at Besh Barmag bottleneck in Azerbaijan. Bird Conservation International: 26(2): 243-255.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kralj, J. 2005. Rare Birds in Croatia (2nd Report of Croatian Rarities Committee). Larus-Godišnjak Zavoda za ornitologiju Hrvatske akademije znanosti i umjetnosti: 49(1): 37-50.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"Gauger; Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Salim, M.A., Al-Sheikhly, O.F., Majeed, K.A. and Porter, R.F. 2012. An annotated checklist of the birds of Iraq. Sandgrouse: 34(1): 3-44.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.; Harrison, I. and Grieve, A. 2012. Around the region. Sandgrouse: 34: 93-110.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Okabe, H. Yamashita, M. Yamashita, M. Ikenaga, H. 2015. The second record of a Little Bustard from Japan: rescued in Koga, Fukuoka Prefecture, Kyushu in 2011. Japan Journal of Ornithology: 64: 87–90.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.; Osborne, P.E. and Suárez-Seoane, S. 2007. Identifying core areas in a species’ range using temporal suitability analysis: an example using little bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E L. in spain. Biodiversity and conservation: 16(12): 3505-3518.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G., Itani, F. and Serhal, A. 2017. Interesting bird records from Lebanon. Sandgrouse: 39: 187–192.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Palac’n, C. and Alonso, J.C. 2009. Probable population decline of the Little Bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in north-west Africa. Ostrich: 80(3): 165-170.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Velevski, M. and Vasić, V. 2017. Annotated check-list of the birds of the Republic of Macedonia. Acta Musei Macedonici Scientiarum Naturalium: 20(1): 54-76.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, I. and Grieve, A. 2012. Around the region. Sandgrouse: 34: 93-110.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dickinson, E.C. and Christidis, L. (Eds. ). 2014. The Howard and Moore complete checklist of the birds of the world, 4th. edition, Vol. 2. Aves Press, Eastbourne, United Kingdom.; Ghalib, S.A., Jabbar, A., Wind, J., Zehra, A. and Abbas, D. 2008. Avifauna of hingol national park, Balochistan. Pakistan Journal of Zoology: 40(5): 317-330.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.; Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct","country_references":"Amidzic, L., Bartula, M. and Cvetkovic, D. 2014. The state of biodiversity in Serbia. \u003Ci\u003ENatural Areas Journal\u003C/i\u003E, 34(2): 222-226.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Serra, G., Mirreh, M., Kaddour, H., Razzouk, T., Al Jundi, A., Kanani, A., Batello, C. and Williamson, D. 2009. Assessment and characterization of Al Talila Reserve and surrounding Palmyrean desert. Damascus, Syria: IUCN/DGCS (Italian Development Cooperation Programme).","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.; Osborne, P.E. and Suárez-Seoane, S. 2007. Identifying core areas in a species’ range using temporal suitability analysis: an example using little bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E L. in spain. Biodiversity and conservation: 16(12): 3505-3518.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Tetrax","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Otis tetrax","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99288,"full_name":"Carcharhinus longimanus","author_year":"(Poey, 1861)","common_names":[{"lang":"English","names":"Oceanic white-tip shark","convention_language":true,"id":null},{"lang":"French","names":"requin blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburon Oceanico","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Gilligan, J. J. and Otway, N. M. 2011. Comparison of dorsal and pectoral fin denudes for grey nurse, great white, and six whaler sharks from east Australian waters. Journal and Proceedings of the Royal Society of New South Wales: 144(3-4): Supplement 441-442: 66-82.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Winterbottom, R. and Anderson, R. C. 1997. A revised checklist of the epipelagic and shore fishes of the Chagos Archipelago, central Indian Ocean. Ichthyological Bulletin of the J.L.B. Smith Institute of Ichthyology 66: 1-28.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Bromhead, D., Clarke, S., Hoyle, S., Muller, B., Sharples, P. and Harley, S. 2012. Identification of factors influencing shark catch and mortality in the Marshall Islands tuna longline fishery and management implications. Journal of Fish Biology: 80(5): S1: 1870-1894.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Francis, M. P., Worthington, C. J., Saul, P. and Clements, K. D. 1999. New and rare tropical and subtropical fishes from northern New Zealand. Journal of Marine and Freshwater Research: 33(4): 571-586.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"D’Alberto, B.M., Chin, A., Smart, J.J., Baje, L., White, W.T. and Simpfendorfer, C.A. 2017. Age, growth and maturity of oceanic whitetip shark (\u003Ci\u003ECarcharhinus longimanus\u003C/i\u003E) from Papua New Guinea. Marine and Freshwater Research 68:(6) 1118-1129.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99289,"full_name":"Sphyrna zygaena","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Smooth hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Requin-marteau commun","convention_language":true,"id":null},{"lang":"German","names":"Glatter Hammerhai","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo martello comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-martelo-liso, Cambevato","convention_language":false,"id":null},{"lang":"Spanish","names":"Tiburón martillo liso, Cambeva-preta, Panam","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Zaera, D. and Alcalá, A. 2005. First record of \u003Ci\u003ESphyrna zygaena\u003C/i\u003E (Chondrichthyes: Sphyrnidae) from Angola. Cybium: 29(4): 417-418.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Schembri, T., Fergusson. I. K. and Schembri, P. J. 2003. Revision of the records of shark and ray species from the Maltese Islands (Chordata: Chondrichthyes). The Central Mediterranean Naturalist: 4(1): 71-104.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lipej. L., De Maddalena, A. and Soldo, A. 2004. Sharks of the Adriatic Sea. Knjiznica Annales Majora. Koper, Slovenia.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Henderson, A. C. and Reeve, A. J. 2011. Noteworthy elasmobranch records from Oman. African Journal of Marine Science: 33(1): 171-175.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Diemer, K. M., Mann, B. Q. and Hussey, N. E. 2011. Distribution and movement of scalloped hammerhead \u003Ci\u003ESphyrna lewini\u003C/i\u003E and smooth hammerhead \u003Ci\u003ESphyrna zygaena\u003C/i\u003E sharks along the east coast of southern Africa. African Journal of Marine Science: 33(2): 229-238.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99292,"full_name":"Galeorhinus galeus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Tope","convention_language":true,"id":null},{"lang":"French","names":"Cagnot","convention_language":true,"id":null},{"lang":"German","names":"Hundshai","convention_language":false,"id":null},{"lang":"Spanish","names":"Bosti","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Elias, I., Rodriguez, A., Hasan, E., Reyna, M.V. and Amoroso, R.O. 2004. Biological observations of the tope shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, in the northern Patagonian gulfs of Argentina. Journal of Northwest Atlantic Fishery Science: 35: 261–265.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Knijn, R.J., Boon, T.W., Heessen, H.J. and Hislop, J.R. 1993. Atlas of North Sea fishes. ICES cooperative research report: 194: 268.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.; Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.; Lucifora, L.O., García, V.B., Menni, R.C. and Escalante, A.H. 2006. Food habits, selectivity, and foraging modes of the school shark \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E. Marine Ecology Progress Series: 315: 259-270.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.; Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Elias, I., Rodriguez, A., Hasan, E., Reyna, M.V. and Amoroso, R.O. 2004. Biological observations of the tope shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, in the northern Patagonian gulfs of Argentina. Journal of Northwest Atlantic Fishery Science: 35: 261–265.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Triakidae","genus_name":"Galeorhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99519,"full_name":"Asio capensis","author_year":"(Smith, 1834)","common_names":[{"lang":"English","names":"Marsh Owl","convention_language":true,"id":null},{"lang":"French","names":"Hibou du Cap","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":99520,"full_name":"Rhynchobatus laevis","author_year":"Bloch \u0026 Schneider 1801","common_names":[{"lang":"English","names":"Smoothnose Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99521,"full_name":"Rhynchobatus djiddensis","author_year":"Forsskål 1775","common_names":[{"lang":"English","names":"Giant Guitarfish, Whitespotted Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99523,"full_name":"Bubo scandiacus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Snowy Owl","convention_language":true,"id":null},{"lang":"French","names":"Harfang des neiges","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Bubo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":99525,"full_name":"Buteo trizonatus","author_year":"(Rudebeck, 1957)","common_names":[{"lang":"English","names":"Forest Buzzard","convention_language":true,"id":null},{"lang":"French","names":"Buse forestière","convention_language":true,"id":null},{"lang":"Spanish","names":"Busardo de El Cabo","convention_language":true,"id":null}],"distributions":[{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":99526,"full_name":"Phalacrocorax aristotelis","author_year":"","common_names":[{"lang":"English","names":"European Shag","convention_language":true,"id":null},{"lang":"French","names":"Cormoran huppé","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"08/03/2019","name":"AEWA"}]},{"id":99527,"full_name":"Crex egregia","author_year":"(Peters, 1854)","common_names":[{"lang":"English","names":"African Crake","convention_language":true,"id":null},{"lang":"French","names":"Râle des prés","convention_language":true,"id":null},{"lang":"Spanish","names":"Guión africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Crex","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Crecopsis egregia","author_year":"(Peters, 1854)"},{"full_name":"Ortygometra egregia","author_year":"Peters, 1854"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99529,"full_name":"Zapornia flavirostra","author_year":"(Swainson, 1837)","common_names":[{"lang":"Dutch","names":"Zwart Porseleimhoen","convention_language":false,"id":null},{"lang":"English","names":"Black Crake","convention_language":true,"id":null},{"lang":"French","names":"Marouette à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela negra africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hald-Mortensen, P. 1971. A collection of birds from Liberia and Guinea (Aves). Steenstrupia: 1: 115-125.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Amaurornis flavirostra","author_year":"(Swainson, 1837)"},{"full_name":"Gallinula flavirostra","author_year":"Swainson, 1837"},{"full_name":"Limnocorax flavirostra","author_year":"(Swainson, 1837)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99531,"full_name":"Leptoptilos crumenifer","author_year":"(Lesson, 1831)","common_names":[{"lang":"English","names":"Marabou","convention_language":true,"id":null},{"lang":"French","names":"Marabout d'Afrique","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1988. Birds of Swaziland. Bokmakierie: 40: 77-79.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Brooke, R. K. 1984. South African Red Data Book: birds. South African National Scientific Programmes Report .; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, A. C. 1980. The importance of the Kruger National Park for bird conservation in the Republic of South Africa. Koedoe: 23: 99-122.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mlingwa, C. 1989. Notes on Marabou Storks \u003Ci\u003ELeptoptilos crumeniferus\u003C/i\u003E at Shinyanga, Tanzania. East African Natural History Society Bulletin: 19: 34.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Leptoptilos","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Ciconia crumenifera","author_year":"Lesson, 1831"},{"full_name":"Leptoptilos crumeniferus","author_year":"(Lesson, 1831)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99536,"full_name":"Ardea brachyrhyncha","author_year":"(Brehm, 1854)","common_names":[{"lang":"English","names":"Yellow-billed Egret","convention_language":true,"id":null},{"lang":"French","names":"Héron à bec jaune","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Fossé, A. 1997. L'Aigrette intermédiaire \u003Ci\u003EEgretta intermedia\u003C/i\u003E au Cameroon. Malimbus: 19: 38.; Martinez, I., Elliott, V. A. and Field, G. D. 1996. Yellow-billed Egret \u003Ci\u003EEgretta intermedia\u003C/i\u003E on the coast of Cameroon. Malimbus: 18: 58.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Ardea intermedia","author_year":"Wagler, 1829"},{"full_name":"Egretta intermedia","author_year":"(Wagler, 1829)"},{"full_name":"Mesophoyx intermedia","author_year":"(Brehm, 1854)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99565,"full_name":"Pontoporia blainvillei","author_year":"(Gervais \u0026 d'Orbigny, 1844)","common_names":[{"lang":"English","names":"La Plata River Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de la Plata","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de la Plata","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Crespo, E.A., Pedraza, S.N., Grandi, M.F., Dans, S.L. and Garaffo, G.V. 2010. Abundance and distribution of endangered Franciscana dolphins in Argentine waters and conservation implications. Marine Mammal Science: 26: 17-35.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Pontoporiidae","genus_name":"Pontoporia","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99583,"full_name":"Hydrocoloeus minutus","author_year":"Pallas, 1776","common_names":[{"lang":"English","names":"Little Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette pygmée","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Norton, R. 1999. West Indies region. North American Birds: 53: 214-215.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Quantrill, B. and Quantrill, R. 1995. First record of Little Gull \u003Ci\u003ELarus minutus\u003C/i\u003E in Cameroon. Malimbus: 17: 103.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1999. Little Gull: the first record for Hong Kong. Hong Kong Bird Report 1999: 118-119.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Hydrocoloeus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Larus minutus","author_year":"Pallas 1776"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99588,"full_name":"Fregata andrewsi","author_year":"Mathews, 1914","common_names":[{"lang":"English","names":"Andrews' Frigatebird, Christmas Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate d'Andrews","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99589,"full_name":"Fregata ariel","author_year":"(Gray, 1845)","common_names":[{"lang":"English","names":"Lesser Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate ariel","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabihorcado chico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Atagen ariel","author_year":"G. R. Gray, 1845"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99590,"full_name":"Fregata minor","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Great Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate du Pacifique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabihorcado grande","convention_language":true,"id":null}],"distributions":[{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2007. First records of Great Frigatebird (\u003Ci\u003EFregata minor\u003C/i\u003E), Ring-necked Duck (\u003Ci\u003EAythya collaris\u003C/i\u003E), Greater Ani (\u003Ci\u003ECrotophaga major\u003C/i\u003E), Red-eyed Vireo (\u003Ci\u003EVireo olivaceus\u003C/i\u003E), and Indigo Bunting (\u003Ci\u003EPasserina cyanea\u003C/i\u003E) for Aruba, with notes on other significant sightings Journal of Caribbean Ornithology: 19: 31.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Hustler, K. 2001. Greater Frigatebird - new for Zimbabwe. Honeyguide: 47: 91.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Pelecanus minor","author_year":"Gmelin, 1789"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99614,"full_name":"Barbastella caspica","author_year":"Satunin, 1908","common_names":[{"lang":"English","names":"Caspian Barbastelle Bat","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99615,"full_name":"Eptesicus ognevi","author_year":"Bobrinskii, 1918","common_names":[{"lang":"English","names":"Ognev's serotine bat","convention_language":true,"id":null},{"lang":"French","names":"Sérotine de Ognev","convention_language":true,"id":null},{"lang":"German","names":"Kaukasische Breitflügelfledermaus","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99616,"full_name":"Miniopterus pallidus","author_year":"Thomas, 1907","common_names":[{"lang":"English","names":"Pale Bent-wing Bat","convention_language":true,"id":null}],"distributions":[{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"16/11/2014","name":"EUROBATS"}]},{"id":99617,"full_name":"Myotis davidii","author_year":"Peters, 1869","common_names":[{"lang":"English","names":"David's mouse-eared bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99619,"full_name":"Onychoprion anaethetus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Bridled Tern","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Onychoprion","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Sterna anaethetus","author_year":"Scopoli, 1786"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99621,"full_name":"Microcarbo coronatus","author_year":"(Wahlberg, 1855)","common_names":[{"lang":"English","names":"Crowned Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran couronné","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Microcarbo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Graculus coronatus","author_year":"Wahlberg, 1855"},{"full_name":"Phalacrocorax africanus coronatus","author_year":"(Gmelin, 1789)"},{"full_name":"Phalacrocorax coronatus","author_year":"(Wahlberg, 1855)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99623,"full_name":"Larus michahellis","author_year":"J. F. Naumann, 1840","common_names":[{"lang":"English","names":"Yellow-legged Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland leucophée","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99624,"full_name":"Onychoprion fuscatus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Sooty Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne fuligineuse","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Onychoprion","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Sterna fuscata","author_year":"Linnaeus, 1766"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99626,"full_name":"Chlidonias hybrida","author_year":"(Pallas, 1811)","common_names":[{"lang":"English","names":"Whiskered Tern","convention_language":true,"id":null},{"lang":"French","names":"Guifette moustac","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Chlidonias hybridus","author_year":"(Pallas, 1811)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":100051,"full_name":"Locustella kashmirensis","author_year":"(Sushkin, 1925)","common_names":[{"lang":"English","names":"Himalayan Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100052,"full_name":"Phylloscopus emeiensis","author_year":"Alström \u0026 Olsson, 1995","common_names":[{"lang":"English","names":"Emei Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100053,"full_name":"Phylloscopus goodsoni","author_year":"E. Hartert, 1910","common_names":[{"lang":"English","names":"Hartert's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100054,"full_name":"Motacilla flaviventris","author_year":"Hartlaub, 1860","common_names":[{"lang":"English","names":"Madagascar Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100055,"full_name":"Charadrius bicinctus","author_year":"Jardine \u0026 Selby, 1827","common_names":[{"lang":"English","names":"Double-banded Plover","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100207,"full_name":"Eschrichtius robustus","author_year":"(Lilljeborg 1861)","common_names":[{"lang":"English","names":"Grey whale","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Eschrichtiidae","genus_name":"Eschrichtius","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":100210,"full_name":"Mesoplodon grayi","author_year":"von Haast, 1876","common_names":[{"lang":"English","names":"Grey’s Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]}]} \ No newline at end of file diff --git a/spec/models/cites_captivity_process_spec.rb b/spec/models/cites_captivity_process_spec.rb index 86395716e..7652619f4 100644 --- a/spec/models/cites_captivity_process_spec.rb +++ b/spec/models/cites_captivity_process_spec.rb @@ -1,4 +1,4 @@ -require 'rails_helper' +require 'spec_helper' RSpec.describe CitesCaptivityProcess, :type => :model do pending "add some examples to (or delete) #{__FILE__}" From c9fda6a576984d4b04048944904b644107f34069 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 30 Sep 2022 16:36:05 +0100 Subject: [PATCH 015/109] gem: add httparty gem for api call --- Gemfile | 1 + Gemfile.lock | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 4c808b06e..2672939ca 100644 --- a/Gemfile +++ b/Gemfile @@ -38,6 +38,7 @@ gem 'sidekiq-unique-jobs', '~> 4.0.17' gem 'redis-rails', '~> 4.0.0' gem 'whenever', :require => false +gem 'httparty' gem 'sprockets', '~> 2.12.5' # upgrading to 3 breaks handlebars/tilt gem 'ember-rails', '~> 0.14.1' diff --git a/Gemfile.lock b/Gemfile.lock index ee8d13fa1..a0fef66ec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -232,6 +232,8 @@ GEM http-cookie (1.0.2) domain_name (~> 0.5) http_parser.rb (0.5.3) + httparty (0.16.2) + multi_xml (>= 0.5.2) i18n (0.9.5) concurrent-ruby (~> 1.0) immigrant (0.1.4) @@ -277,6 +279,7 @@ GEM mini_portile2 (2.4.0) minitest (4.7.5) multi_json (1.15.0) + multi_xml (0.6.0) nested-hstore (0.0.5) activerecord activerecord-postgres-hstore @@ -554,6 +557,7 @@ DEPENDENCIES guard-bundler guard-livereload handlebars-source (= 1.0.12) + httparty immigrant inherited_resources (~> 1.7.0) jquery-cookie-rails (~> 1.3.1.1) From e3ed57f1f96ef982694526a4bb5e79ab8dd520a9 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 30 Sep 2022 16:36:38 +0100 Subject: [PATCH 016/109] feat: add rst base url to secrets --- config/secrets.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/config/secrets.yml b/config/secrets.yml index 1e66dbe33..ccaf687f7 100644 --- a/config/secrets.yml +++ b/config/secrets.yml @@ -16,6 +16,7 @@ common: &defaults secret_access_key: <%= ENV["AWS_SECRET_ACCESS_KEY"] %> shipments_api_token: <%= ENV["SHIPMENTS_API_TOKEN"] %> cites_trade_full_download: <%= ENV["CITES_TRADE_FULL_DOWNLOAD_LINK"] %> + rst_api_base_url: <%= ENV["RST_API_BASE_URL"] %> development: <<: *defaults From 12b019cf969059ae547aeef946fb4dec0920a1d7 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 30 Sep 2022 16:38:06 +0100 Subject: [PATCH 017/109] feat: add rst api caller --- lib/modules/api_clients/rst_api.rb | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/modules/api_clients/rst_api.rb diff --git a/lib/modules/api_clients/rst_api.rb b/lib/modules/api_clients/rst_api.rb new file mode 100644 index 000000000..ad46666d0 --- /dev/null +++ b/lib/modules/api_clients/rst_api.rb @@ -0,0 +1,29 @@ +module ApiClients::RstApi + class << self + include HTTParty + + BASE_URI = Rails.application.secrets[:rst_api_base_url] + PUBLIC_CASES_ENDPOINT = 'case/publicData/getCases' + COUNTRY_ENDPOINT = '/countries/countryId' + RETRIES = 3 + + # @see https://api-cites-rst.leman.un-icc.cloud/api/#/case/CaseController_readCases + def get_cases(page = 1, per_page = 25) + RETRIES.times do |i| + res = HTTParty.post("#{BASE_URI}/#{PUBLIC_CASES_ENDPOINT}?page=#{page}&limit=#{per_page}&sortBy=id&sortOrder=ASC&relationalData=yes", {}) + break res if res.created? + # data['items'] => cases + # data['links']['next'] -> next page + end + end + + # @see https://api-cites-rst.leman.un-icc.cloud/api/#/countries/CountriesController_getCountry + def get_country(country_id) + RETRIES.times do |i| + res = HTTParty.get("#{BASE_URI}/#{COUNTRY_ENDPOINT}?countryId=#{country_id}") + break res if res.ok? + # country_name -> data['nicname'] + end + end + end +end From 4c5d5563349b75b6d99a2a3fc6a5fdcce854ed18 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 30 Sep 2022 16:39:05 +0100 Subject: [PATCH 018/109] WIP: add rst importers module --- lib/modules/import/rst_cases.rb | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lib/modules/import/rst_cases.rb diff --git a/lib/modules/import/rst_cases.rb b/lib/modules/import/rst_cases.rb new file mode 100644 index 000000000..dfe0b4353 --- /dev/null +++ b/lib/modules/import/rst_cases.rb @@ -0,0 +1,40 @@ +module Import::RstCases + class << self + def import_cases + # RstCase.create_all(list of items) + end + + def get_all_cases + responses = [] + page = 1 + + loop do + # Iterate through paginated API and store responses + res = ApiClients::RstApi.get_cases(page) + responses << res + + break if res['data']['links']['next'].blank? + page += 1 + end + + # Merge responses + responses.flat_map {|r| r['data']['items'] } + format_data(responses) + merge_country_data(responses) + end + + private + + def format_data(data) + data.map do |item| + item.slice(:id, :countryId, :status, :startDate, :species, ) + end + end + + def merge_country_data(data) + data.map do |item| + country = ApiClients::RstApi.get_country(item['country_id']) + data.merge(country_name: country['data']['nicname']) + end + end +end From 2f19c98fa78f58043be4d08384ad6eb1943b20d5 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Mon, 3 Oct 2022 10:16:47 +0100 Subject: [PATCH 019/109] fix: spec helper --- .../admin/cites_captivity_processes_controller_spec.rb | 2 +- spec/helpers/admin/cites_captivity_processes_helper_spec.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/controllers/admin/cites_captivity_processes_controller_spec.rb b/spec/controllers/admin/cites_captivity_processes_controller_spec.rb index 3439f126b..b027021c5 100644 --- a/spec/controllers/admin/cites_captivity_processes_controller_spec.rb +++ b/spec/controllers/admin/cites_captivity_processes_controller_spec.rb @@ -1,4 +1,4 @@ -require 'rails_helper' +require 'spec_helper' RSpec.describe Admin::CitesCaptivityProcessesController, :type => :controller do diff --git a/spec/helpers/admin/cites_captivity_processes_helper_spec.rb b/spec/helpers/admin/cites_captivity_processes_helper_spec.rb index 5b2b3e4f6..80f9cbe40 100644 --- a/spec/helpers/admin/cites_captivity_processes_helper_spec.rb +++ b/spec/helpers/admin/cites_captivity_processes_helper_spec.rb @@ -1,4 +1,4 @@ -require 'rails_helper' +require 'spec_helper' # Specs in this file have access to a helper object that includes # the Admin::CitesCaptivityProcessesHelper. For example: From fbe0d7aa9e6bd3e61a31151b9d54ab999394cf92 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Tue, 4 Oct 2022 15:34:40 +0100 Subject: [PATCH 020/109] feature: public interface for cites process --- .../taxon_concept_controller.js.coffee | 25 +++++++++ .../species/models/taxon_concept.js.coffee | 1 + .../taxon_concept/_cites_processes.handlebars | 51 +++++++++++++++++++ .../templates/taxon_concept/legal.handlebars | 6 +++ .../api/v1/taxon_concepts_controller.rb | 2 +- .../show_taxon_concept_serializer_cites.rb | 5 ++ 6 files changed, 89 insertions(+), 1 deletion(-) create mode 100644 app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars diff --git a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee index 0484540e4..ac651a2f7 100644 --- a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee +++ b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee @@ -73,6 +73,13 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon else "" ).property('citesSuspensions') + anyHistoricCitesProcesses: ( -> + if @get('citesProcesses') != undefined && @get('citesProcesses') + .findProperty('status', 'Closed') != undefined + "show_more" + else + "" + ).property('citesProcesses') anyHistoricEuDecisions: ( -> if @get('euDecisions') != undefined && @get('euDecisions') .findProperty('is_current', false) != undefined @@ -135,6 +142,18 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon else null ).property('citesSuspensions') + currentCitesProcesses: (-> + if @get('citesProcesses') != undefined + @get('citesProcesses').filterProperty('status', 'Ongoing') + else + null + ).property('citesProcesses') + historicCitesProcesses: (-> + if @get('citesProcesses') != undefined + @get('citesProcesses').filterProperty('status', 'Closed') + else + null + ).property('citesProcesses') currentEuListings: (-> if @get('euListings') != undefined @get('euListings').filterProperty('is_current', true) @@ -185,6 +204,12 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon else return yes ).property('citesSuspensions') + citesProcessesIsLoading: ( -> + if @get('citesProcesses') != undefined + return no + else + return yes + ).property('citesProcesses') contentObserver: ( -> matchedOnSelf = true diff --git a/app/assets/javascripts/species/models/taxon_concept.js.coffee b/app/assets/javascripts/species/models/taxon_concept.js.coffee index 4459fa23e..daeeee9d2 100644 --- a/app/assets/javascripts/species/models/taxon_concept.js.coffee +++ b/app/assets/javascripts/species/models/taxon_concept.js.coffee @@ -20,6 +20,7 @@ Species.TaxonConcept = DS.Model.extend citesQuotas: DS.attr("array") citesSuspensions: DS.attr("array") citesListings: DS.attr("array") + citesProcesses: DS.attr("array") cmsListings: DS.attr("array") cmsInstruments: DS.attr("array") euListings: DS.attr("array") diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars new file mode 100644 index 000000000..90917eb5b --- /dev/null +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -0,0 +1,51 @@ +CITES PROCESSES +{{#unless citesProcesses}} + {{#if citesProcessesIsLoading}} + {{ partial 'species/spinner'}} + {{else}} +

    This {{#tolower rankName}}{{/tolower}} is not currently listed in the CITES Appendices.

    + {{/if}} +{{else}} + + + + + + + + + + + + + {{#each process in currentCitesProcesses}} + + + + + + + + + {{else}} + + + + {{/each}} + + +
    RESOLUTIONCOUNTRYDATE ENTRYDOCUMENTCASE STATUSNOTES
    + {{process.resolution}} + + {{process.geo_entity_id}} + + {{process.start_event_id}} + {{process.start_date}} + + + {{process.status}} + + {{process.notes}} +
    There are no current suspensions in place for this {{#tolower controllers.taxonConcept.rankName}}{{/tolower}}.
    + +{{/unless}} diff --git a/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars b/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars index 50d8a18ed..896373a2e 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars @@ -35,6 +35,12 @@ {{/with}}
    +
    + {{#with controllers.taxonConcept}} + {{ partial 'species/taxon_concept/cites_processes' }} + {{/with}} +
    +
    diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index aa7350f13..dbc335b56 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -24,7 +24,7 @@ def show :distributions => :geo_entity, :quotas => :geo_entity, :cites_suspensions => :geo_entity). - includes(:taxonomy).find(params[:id]) + includes(:taxonomy, :cites_captivity_processes).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS s = Species::ShowTaxonConceptSerializerCms else diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 09059bd85..fa7b9a944 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -8,6 +8,11 @@ class Species::ShowTaxonConceptSerializerCites < Species::ShowTaxonConceptSerial has_many :eu_listing_changes, :serializer => Species::EuListingChangeSerializer, :key => :eu_listings has_many :eu_decisions, :serializer => Species::EuDecisionSerializer + has_many :processes, :key => :cites_processes + + def processes + CitesCaptivityProcess.all + end def quotas Quota.from('api_cites_quotas_view trade_restrictions'). From 6ae6ac0b2c7306a885b0ab51c1a00ee582d8ff73 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Tue, 4 Oct 2022 18:55:31 +0100 Subject: [PATCH 021/109] fix: code review changes --- .../cites_captivity_processes_controller.rb | 6 +-- .../admin/cites_captivity_processes_helper.rb | 2 - app/models/cites_captivity_process.rb | 2 +- .../_current_opinions_form.html.erb | 54 ------------------- .../cites_captivity_processes/_form.html.erb | 9 ++-- .../cites_captivity_processes/_list.html.erb | 22 ++++---- .../cites_captivity_processes_helper_spec.rb | 15 ------ 7 files changed, 16 insertions(+), 94 deletions(-) delete mode 100644 app/helpers/admin/cites_captivity_processes_helper.rb delete mode 100644 app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb delete mode 100644 spec/helpers/admin/cites_captivity_processes_helper_spec.rb diff --git a/app/controllers/admin/cites_captivity_processes_controller.rb b/app/controllers/admin/cites_captivity_processes_controller.rb index 92591ae1f..9acc46e47 100644 --- a/app/controllers/admin/cites_captivity_processes_controller.rb +++ b/app/controllers/admin/cites_captivity_processes_controller.rb @@ -34,15 +34,11 @@ def create protected def load_lib_objects - @units = Unit.order(:code) - @terms = Term.order(:code) - @sources = Source.order(:code) - @purposes = Purpose.order(:code) @geo_entities = GeoEntity.order(:name_en).joins(:geo_entity_type). where(:geo_entity_types => { :name => GeoEntityType::SETS[GeoEntityType::DEFAULT_SET] }) @resolution = CitesCaptivityProcess::RESOLUTION @status = CitesCaptivityProcess::STATUS - @meetings = Event.where("type IN ('CitesAc','CitesPc')" + @events = Event.where("type IN ('CitesAc','CitesPc')" ).order("effective_at DESC") end diff --git a/app/helpers/admin/cites_captivity_processes_helper.rb b/app/helpers/admin/cites_captivity_processes_helper.rb deleted file mode 100644 index dadea7caf..000000000 --- a/app/helpers/admin/cites_captivity_processes_helper.rb +++ /dev/null @@ -1,2 +0,0 @@ -module Admin::CitesCaptivityProcessesHelper -end diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index 23389611b..ac08d5c41 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -28,7 +28,7 @@ def year end def start_date_formatted - start_date ? start_date.strftime("%d/%m/%Y") : "" + start_date ? start_date.strftime('%d/%m/%Y') : '' end private diff --git a/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb b/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb deleted file mode 100644 index d11d5b290..000000000 --- a/app/views/admin/cites_captivity_processes/_current_opinions_form.html.erb +++ /dev/null @@ -1,54 +0,0 @@ -<% if @taxon_concept.current_eu_opinions.count > 0 %> - - - - - - - - - - - - - - - - <% @taxon_concept.current_eu_opinions. - order("start_date DESC").each do |opinion| %> - - - - - - - - - - - - - - - <% end %> - -
    YearRegulationCountry or TerritoryTypeSRG historyTermSourceNotesInternal notes
    <%= opinion.year %><%= opinion.start_event && opinion.start_event.name %><%= opinion.geo_entity && opinion.geo_entity.name_en %> - <% if opinion.eu_decision_type %> - <%= opinion.eu_decision_type.name %> - <%= '(' + opinion.eu_decision_type.tooltip + ')' if opinion. - eu_decision_type.tooltip.present? %> - <% end %> - - <% if opinion.srg_history %> - <%= opinion.srg_history.name %> - <%= '(' + opinion.srg_history.tooltip + ')' if opinion. - srg_history.tooltip.present? %> - <% end %> - <%= opinion.term && opinion.term.code %><%= opinion.source && opinion.source.code %><%= opinion.notes %><%= opinion.internal_notes %> - <%= form_for [:admin, @taxon_concept, opinion], :remote => true do |f| %> - <%= f.check_box :is_current %> - <% end %> -
    -<% else %> - There are no current EU opinions for this Taxon Concept. -<% end %> diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index d8d1fd908..cf902cbe2 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -1,5 +1,3 @@ -<%= admin_new_modal({:title => "Current "}) { render "current_opinions_form" } %> - <%= form_for [:admin, @taxon_concept, @cites_captivity_process], :html => {:class => 'form-horizontal'} do |f| %> <%= error_messages_for(@cites_captivity_process) %> @@ -21,7 +19,6 @@ :name_en, @cites_captivity_process.geo_entity_id ), - { :include_blank => true }, {:class => 'eu_opinion select2', :style => 'width: 220px' } %>
    @@ -30,8 +27,8 @@ <%= f.label :start_event_id, "Date Entry", :class => 'control-label' %>
    <%= f.select :start_event_id, - options_from_collection_for_select(@meetings, :id, :name, @cites_captivity_process.start_event_id), - { :include_blank => true }, :class => "select2" + options_from_collection_for_select(@events, :id, :name, @cites_captivity_process.start_event_id), + :class => "select2" %> <%= f.text_field :start_date, :class => "eu_opinion datepicker", :value => @cites_captivity_process.start_date && @cites_captivity_process.start_date.strftime('%d/%m/%Y'), placeholder: 'Effective from'%>
    @@ -43,7 +40,7 @@
    <%= f.select :status, options_for_select(@status, @cites_captivity_process.status), - { :include_blank => true }, :class => "select2" + :class => "select2" %>
    diff --git a/app/views/admin/cites_captivity_processes/_list.html.erb b/app/views/admin/cites_captivity_processes/_list.html.erb index cc80fa43e..14573d268 100644 --- a/app/views/admin/cites_captivity_processes/_list.html.erb +++ b/app/views/admin/cites_captivity_processes/_list.html.erb @@ -9,26 +9,26 @@ Info - <% collection.each do |opinion| -%> - "> - <%= opinion.resolution %> - <%= opinion.geo_entity && opinion.geo_entity.name_en %> - <%= opinion.start_event.try(:name) %> + <% collection.each do |process| -%> + "> + <%= process.resolution %> + <%= process.geo_entity && process.geo_entity.name_en %> + <%= process.start_event.try(:name) %> - <%= opinion.start_date_formatted %> - <%= opinion.status %> - <%= opinion.notes %> + <%= process.start_date_formatted %> + <%= process.status %> + <%= process.notes %> <%= link_to edit_icon, - edit_admin_taxon_concept_cites_captivity_process_path(@taxon_concept, opinion) + edit_admin_taxon_concept_cites_captivity_process_path(@taxon_concept, process) %> <%= link_to delete_icon, - admin_taxon_concept_cites_captivity_process_path(@taxon_concept, opinion), + admin_taxon_concept_cites_captivity_process_path(@taxon_concept, process), data: { confirm: "Warning: you are about to delete data. Are you sure?" }, :method => :delete %> - <%= tracking_info(opinion) %> + <%= tracking_info(process) %> <% end -%> diff --git a/spec/helpers/admin/cites_captivity_processes_helper_spec.rb b/spec/helpers/admin/cites_captivity_processes_helper_spec.rb deleted file mode 100644 index 80f9cbe40..000000000 --- a/spec/helpers/admin/cites_captivity_processes_helper_spec.rb +++ /dev/null @@ -1,15 +0,0 @@ -require 'spec_helper' - -# Specs in this file have access to a helper object that includes -# the Admin::CitesCaptivityProcessesHelper. For example: -# -# describe Admin::CitesCaptivityProcessesHelper do -# describe "string concat" do -# it "concats two strings with spaces" do -# expect(helper.concat_strings("this","that")).to eq("this that") -# end -# end -# end -RSpec.describe Admin::CitesCaptivityProcessesHelper, :type => :helper do - pending "add some examples to (or delete) #{__FILE__}" -end From 3b0b95e1039f69803b1699d3553c3656d41ff39c Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 5 Oct 2022 16:22:04 +0100 Subject: [PATCH 022/109] feature: public interface --- .../taxon_concept/_cites_processes.handlebars | 56 +++++++++++++++++-- .../api/v1/taxon_concepts_controller.rb | 5 +- .../species/cites_process_serializer.rb | 10 ++++ .../show_taxon_concept_serializer_cites.rb | 4 +- 4 files changed, 65 insertions(+), 10 deletions(-) create mode 100644 app/serializers/species/cites_process_serializer.rb diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 90917eb5b..773b4e33a 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -3,7 +3,7 @@ {{#if citesProcessesIsLoading}} {{ partial 'species/spinner'}} {{else}} -

    This {{#tolower rankName}}{{/tolower}} is not currently listed in the CITES Appendices.

    +

    There are no current cases for this species.

    {{/if}} {{else}} @@ -24,11 +24,10 @@ {{process.resolution}} @@ -41,11 +40,56 @@ {{else}} - + {{/each}} -
    - {{process.geo_entity_id}} + {{process.geo_entity.name}} - {{process.start_event_id}} - {{process.start_date}} + {{process.start_event_name}} ({{process.start_date}})
    There are no current suspensions in place for this {{#tolower controllers.taxonConcept.rankName}}{{/tolower}}.There are no current cases for this species.
    + {{#if historicCitesProcesses}} +
    + + + + + + + + + + + + + {{#each process in historicCitesProcesses}} + + + + + + + + + {{/each}} + +
          
    + {{process.resolution}} + + {{process.geo_entity.name}} + + {{process.start_event_name}} ({{process.start_date}}) + + + {{process.status}} + + {{process.notes}} +
    +
    +
    + {{#if controller.citesProcessesExpanded}} + HIDE HISTORY + {{else}} + SHOW HISTORY + {{/if}} +
    + {{/if}} {{/unless}} diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index dbc335b56..ded18957e 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -23,8 +23,9 @@ def show includes(:common_names => :language, :distributions => :geo_entity, :quotas => :geo_entity, - :cites_suspensions => :geo_entity). - includes(:taxonomy, :cites_captivity_processes).find(params[:id]) + :cites_suspensions => :geo_entity, + :cites_captivity_processes => :geo_entity). + includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS s = Species::ShowTaxonConceptSerializerCms else diff --git a/app/serializers/species/cites_process_serializer.rb b/app/serializers/species/cites_process_serializer.rb new file mode 100644 index 000000000..baacb925b --- /dev/null +++ b/app/serializers/species/cites_process_serializer.rb @@ -0,0 +1,10 @@ +class Species::CitesProcessSerializer < ActiveModel::Serializer + attributes :resolution, { :start_date_formatted => :start_date }, + :notes, :geo_entity, :status, :start_event_name + + + def start_event_name + object.start_event.name + end + +end diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index fa7b9a944..295288ae1 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -8,10 +8,10 @@ class Species::ShowTaxonConceptSerializerCites < Species::ShowTaxonConceptSerial has_many :eu_listing_changes, :serializer => Species::EuListingChangeSerializer, :key => :eu_listings has_many :eu_decisions, :serializer => Species::EuDecisionSerializer - has_many :processes, :key => :cites_processes + has_many :processes, :serializer => Species::CitesProcessSerializer, :key => :cites_processes def processes - CitesCaptivityProcess.all + CitesCaptivityProcess.includes(:geo_entity,:start_event).where(taxon_concept_id: object.id) end def quotas From 80ff11ec18c6ea5f61012dae286ccaa5f8ea5e1a Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 5 Oct 2022 16:28:47 +0100 Subject: [PATCH 023/109] fix: remove accidentally commited cms.json file --- data/cms.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 data/cms.json diff --git a/data/cms.json b/data/cms.json deleted file mode 100644 index f43937f6c..000000000 --- a/data/cms.json +++ /dev/null @@ -1 +0,0 @@ -{"taxon_concepts":[{"id":11289,"full_name":"Phylloscopus griseolus","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Sulphur-bellied Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot griséole","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11292,"full_name":"Podiceps grisegena","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Czech","names":"Potápka rudokrká","convention_language":false,"id":null},{"lang":"Danish","names":"Gråstrubet Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodhalsfuut","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Härkälintu","convention_language":false,"id":null},{"lang":"French","names":"Grèbe jougris","convention_language":true,"id":null},{"lang":"German","names":"Rothalstaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösnyakú vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso collorosso","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz rdzawoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Somormujo Cuellirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråhakedopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus grisegena","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11293,"full_name":"Limnodromus semipalmatus","author_year":"(Blyth, 1848)","common_names":[{"lang":"English","names":"Asiatic Dowitcher, Asian Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin d'Asie","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta Asiática","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Deighton, D. 2005. First record of Asiatic Dowitcher \u003Ci\u003ELimnodromus semipalmatus\u003C/i\u003E for Africa. Bulletin of the African Bird Club: 12: 156-157.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Macrorhamphus semiplamatus","author_year":"Blyth, 1848"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11294,"full_name":"Larus cachinnans","author_year":"J. F. Naumann, 1840","common_names":[{"lang":"Danish","names":"Kaspisk Sølvmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Geelpootmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Caspian Gull, Yellow-legged Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkopäälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland Leucophée","convention_language":true,"id":null},{"lang":"German","names":"Weißkopfmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárgalábú sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano reale mediterraneo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-patas-amarelas","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Ptiamarilla, Gaviota Patiamarilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråtrut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Larus argentatus cachinnans","author_year":"Pontoppidan, 1763"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11295,"full_name":"Sylvia curruca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Gærdesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Braamsluiper","convention_language":false,"id":null},{"lang":"English","names":"Lesser Whitethroat","convention_language":true,"id":null},{"lang":"Finnish","names":"Harnekerttu, Hernekerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette babillarde, Frauvette babillarde","convention_language":true,"id":null},{"lang":"German","names":"Klappergrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigiarella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-amoras-cinzento","convention_language":false,"id":null},{"lang":"Russian","names":"Slavka-melnichek","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Zarcerilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Ärtsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11296,"full_name":"Calidris pusilla","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Tyknæbbet Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijze Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Semipalmated Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau semipalmé","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus tundrowy","convention_language":false,"id":null},{"lang":"Spanish","names":"Playerito Semipalmeado, Playerito Escudado, Correlimos semipalmeado","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Williams, R. S. R., and Jacoby, M. C. 1996. Semipalmated Sandpiper \u003Ci\u003ECalidris pusilla\u003C/i\u003E in the Banc d'Arguin National Park, Mauritania: a new species for Africa. Bull. Afr. Bird Club: 3: 132--133.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Andrews, M. 1997. Semipalmated Sandpiper \u003Ci\u003ECalidris pusilla\u003C/i\u003E and Spotted Sandpiper \u003Ci\u003EActitis macularia\u003C/i\u003E in Morocco. Bull. Afr. Bird Club: 4: 45--46.; Bergier, P., Franchimont, J., Thévenot, M. and the Moroccan Rare Birds Committee. 2002. Rare birds in Morocco: report of the Moroccan Rare Birds Committee (1998-2000). Bulletin of the African Bird Club: 9: 122-133.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Ereunetes pusillus","author_year":"(Linnaeus, 1766)"},{"full_name":"Tringa pusilla","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11297,"full_name":"Pluvialis dominica","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Amerikansk Hjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"American Golden Plover, American Golden-Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier bronzé","convention_language":true,"id":null},{"lang":"Russian","names":"Burokrylaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado Americano","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.; Strewe, R. and Navarro, C. 2004. New and noteworthy records of birds from the Sierra Nevada de Santa Marta region, north-eastern Colombia. Bulletin of the British Ornithologists' Club: 124: 38-51.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Schmaljohann, H. and Thoma, M. 2005. First record of American Golden Plover \u003Ci\u003EPluvialis dominica\u003C/i\u003E for Mauritania, and its status in western Africa. Bulletin of the African Bird Club: 12: 158-161.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Grieve, A., Hill, B. J. N., Lassey, P. A. and Wallace, D. I. M. 2005. The first American Golden Plover \u003Ci\u003EPluvialis dominica\u003C/i\u003E in Oman and Arabia. Sandgrouse: 27: 75-76.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Frade, F. and Vieira dos Santos, J. 1977. Aves de São Tomé e Príncipe (colecção do Centro de Zoologia). Garcia de Orta, Sér. Zool.: 6: 3-18.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G. M. and Martins, R. P. 2000. Turkey Bird Report 1992-1996. Sandgrouse: 22: 13-35.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":"","cms_listing":"","synonyms":[{"full_name":"Charadrius dominicus","author_year":"P. L. S. Müller, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11298,"full_name":"Acrocephalus schoenobaenus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sivsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Rietzanger","convention_language":false,"id":null},{"lang":"English","names":"Sedge Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokokerttunen","convention_language":false,"id":null},{"lang":"French","names":"Phragmite des joncs","convention_language":true,"id":null},{"lang":"German","names":"Schilfrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Foltos nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie","convention_language":false,"id":null},{"lang":"Polish","names":"Rokitniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-dos-juncos","convention_language":false,"id":null},{"lang":"Russian","names":"Kamyshovka-barsuchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sävsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Dickerman, R. W., Cane, W. P., Carter, M. F., Chapman, A. and Schmitt, C. G. 1994. Report on three collections of birds from Liberia. Bulletin of the British Ornithologists' Club: 114: 267-274.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11299,"full_name":"Gazella leptoceros","author_year":"(F. Cuvier, 1842)","common_names":[{"lang":"Danish","names":"Tyndhornet gazelle eller Loders gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Duingazel","convention_language":false,"id":null},{"lang":"English","names":"Slender-horned Gazelle, Rhim Gazelle, Sand Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkogaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle leptocère, Rhim, Gazelle à cornes fines","convention_language":true,"id":null},{"lang":"German","names":"Afrikanische Dünengazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella bianca","convention_language":false,"id":null},{"lang":"Spanish","names":"Rhim","convention_language":true,"id":null},{"lang":"Swedish","names":"sandgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Heim de Balsac, H. 1936. Biogéographie des mammifères et des oiseaux de l'Afrique du Nord. Bulletin Biologique de France et de Belgique (Suppl.): 21: 447 pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Edmond-Blanc, F., Rothschild, A. de and Rothschild, E. de. 1962. Contribution à l'étude des grandes ongules dans le nord du Bourkou (Tchad). Mammalia: 26: 489-493.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Saleh, M. A. 1987. The decline of gazelles in Egypt. Biological Conservation: 39: 83-95.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"IEA (Institute of Applied Ecology). 1998. African Mammals Databank. A databank for the conservation of the African mammals. European Commission Directorate-General for Development Division VIII/A/1 .; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Schomber, H.-W. and Kock, D. 1960. The wildlife of Tunisia, part 2: some larger mammals. African Wildlife: 14: 277-282.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11300,"full_name":"Gallinago paraguaiae","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"South American Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine de Magellan","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Suramericana","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella paraguaiae","author_year":"(Vieillot, 1816)"},{"full_name":"Scolopax paraguaiae","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11301,"full_name":"Clangula hyemalis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Hoholka lední","convention_language":false,"id":null},{"lang":"Danish","names":"Havlit","convention_language":false,"id":null},{"lang":"Dutch","names":"Ijseend","convention_language":false,"id":null},{"lang":"English","names":"Long-tailed Duck, Oldsquaw","convention_language":true,"id":null},{"lang":"Finnish","names":"Alli","convention_language":false,"id":null},{"lang":"French","names":"Harelde de Miquelon, Harelde Boréale, Harelde kakawi","convention_language":true,"id":null},{"lang":"German","names":"Eisente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jegesréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta codona","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havelle","convention_language":false,"id":null},{"lang":"Polish","names":"Lodówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-de-cauda-afilada","convention_language":false,"id":null},{"lang":"Russian","names":"Морянка","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato Havelda","convention_language":true,"id":null},{"lang":"Swedish","names":"Alfågel","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Ananian, V. and de Rouw, P. 2003. The first Long-tailed Duck \u003Ci\u003EClangula hyemalis\u003C/i\u003E in Armenia. Sandgrouse: 25: 65-67.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"extinct","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Clangula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas hyemalis","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11302,"full_name":"Stenella longirostris","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Long-beaked Dolphin, Spinner Dolphin, Long-snouted Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin longirostre","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín tornillón","convention_language":true,"id":null},{"lang":"Swedish","names":"skruvdelfin, spinndelfin, långnosad delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Anon. 2004. Blue Ventures Conservation Andavadoaka, Madagascar Research update, March 2004. http://www.blueventures.org/BVUpdate0304.pdf . ; Anon. 2006. Monitoring the marine environment in Andavadoaka, southwest Madagascar. http://www.blueventures.org/BV%20Reef%20Monitoring.pdf . ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. and Barros, N. B. 1994. Additional cetacean records for the Leeward Dutch Antilles. Marine Mammal Science: 10: 359-368.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Gladstone, W. and Fisher, P. R. 1999. Status of cetaceans in the Farasan Islands Marine Protected Area (Red Sea). European Research on Cetaceans: 13: 232-235.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Howell, K. M. and Pearson, D. M. 1977. Two records of dolphins from Tanzania. East Afr. Wildl. J.: 15: 167-168.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Perrin, W. F. and Gilpatrick, J. W., Jr. 1994. Spinner Dolphin \u003Ci\u003EStenella longirostris\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Southeast Asia populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical Pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11303,"full_name":"Phylloscopus trochilus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Willow Warbler","convention_language":false,"id":null},{"lang":"Dutch","names":"Fitis","convention_language":false,"id":null},{"lang":"English","names":"Willow Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pajulintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot fitis","convention_language":true,"id":null},{"lang":"German","names":"Fitis","convention_language":false,"id":null},{"lang":"Hungarian","names":"fitiszfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí grosso","convention_language":false,"id":null},{"lang":"Polish","names":"Piecuszek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-musical","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Musical","convention_language":true,"id":null},{"lang":"Swedish","names":"Lövsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. 1958. Étude d'une collection d'oiseaux de Guinée française. Bulletin du Muséum Nationale d'Histoire Naturelle : 30: 490-497.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11304,"full_name":"Botaurus stellaris","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rørdrum","convention_language":false,"id":null},{"lang":"Dutch","names":"Roerdomp","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Bittern, Great Bittern, Bittern","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaulushaikara","convention_language":false,"id":null},{"lang":"French","names":"Butor étoilé, Grand Butor","convention_language":true,"id":null},{"lang":"German","names":"Rohrdommel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bölömbika","convention_language":false,"id":null},{"lang":"Italian","names":"Tarabuso","convention_language":false,"id":null},{"lang":"Polish","names":"bak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abetouro-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Avetoro, Avetoro Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rördrom","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lopez-Luna, M. A., Vogt, R. C., Angel de la Torre-Loranca, M. 1999. A new species of montane pitviper from Veracruz, Mexico. Herpetologica: 55: 382-389.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Campbell, J. A. 1998. A review of the frogs of the genus \u003Ci\u003EOtophryne\u003C/i\u003E (Microhylidae) with the description of a new species. Herpetologica: 54: 301-317.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Botaurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea stellaris","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11305,"full_name":"Diomedea dabbenena","author_year":"Mathews, 1929","common_names":[{"lang":"English","names":"Tristan Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea exulans\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11306,"full_name":"Charadrius melodus","author_year":"Ord, 1824","common_names":[{"lang":"English","names":"Piping Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier siffleur","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo silbador","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11307,"full_name":"Myotis bechsteinii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"English","names":"Bechstein's Bat","convention_language":true,"id":null},{"lang":"French","names":"Vespertilion de Bechstein","convention_language":true,"id":null},{"lang":"Portuguese","names":"Morcego de Bechstein","convention_language":false,"id":null},{"lang":"Swedish","names":"Bechsteins fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. and Weid, R. 1990. Der Verbreitung einiger Fledermausarten in Griechenland. Bonner Zoologische Beiträge: 41: 9-22.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Cerveny, J. 1997. New and noteworthy records of bats in Slovenia. Myotis: 35: 89-93.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pokynchereda, V. F., Zagorodniuk, I. V., Postawa, T., Labocha, M. and Pokynchereda, V. V. 1999. [\u003Ci\u003EMyotis bechsteini\u003C/i\u003E and \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Mammalia, Chiroptera) in the west of Ukraine.]. Vestnik Zoologii: 33: 115-120.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis bechsteini","author_year":"(Kuhl, 1817)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11308,"full_name":"Phoebastria albatrus","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Korthalet albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Stellers albatros","convention_language":false,"id":null},{"lang":"English","names":"Short-tailed Albatross, Black-footed Albatross, Steller's Albatross","convention_language":true,"id":null},{"lang":"Finnish","names":"Japaninalbatrossi","convention_language":false,"id":null},{"lang":"French","names":"Albatros à queue courte, Albatros de Steller, Albatros à pieds noirs","convention_language":true,"id":null},{"lang":"German","names":"Kurzschwanzalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatro di Steller","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros, Albatros colicorto, Albatros patinegro, Albatros rabón","convention_language":true,"id":null},{"lang":"Swedish","names":"gulnackad albatross, kortstjärtad albatross, vitryggad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Cheng Tso-hsin. 1987. A synopsis of the avifauna of China. Science Press. Beijing.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea albatrus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11309,"full_name":"Vanellus coronatus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Crowned Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau couronné","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría coronada","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius coronatus","author_year":"Boddaert, 1783"},{"full_name":"Stephanibyx coronatus","author_year":"(Boddaert, 1783)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11311,"full_name":"Porzana porzana","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Plettet rørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Porseleinhoen","convention_language":false,"id":null},{"lang":"English","names":"Spotted Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtahuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette ponctuée","convention_language":true,"id":null},{"lang":"German","names":"Tüpfelsumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pettyes vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Voltolino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Myrrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Kropiatka, Kropiatka (kureczka nakrapiana)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela pintoja","convention_language":true,"id":null},{"lang":"Swedish","names":"Småfläckig sumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Porzana","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Rallus porzana","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11312,"full_name":"Phoenicurus frontalis","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Blue-fronted Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue à front bleu","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11314,"full_name":"Recurvirostra americana","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"American Avocet","convention_language":true,"id":null},{"lang":"French","names":"Avocette d'Amérique","convention_language":true,"id":null},{"lang":"Spanish","names":"Avoceta Americana","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Hernández, O., Kirkconnell, A., Alfaro, E. and Reyes, E. 2006. American Avocet \u003Ci\u003ERecurvirostra americana\u003C/i\u003E wintering in Birama swamp, Granma province, Cuba. Cotinga: 25: 81.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11315,"full_name":"Serinus syriacus","author_year":"Bonaparte, 1851","common_names":[{"lang":"Danish","names":"Syrisk Gulirisk","convention_language":false,"id":null},{"lang":"Dutch","names":"Syrische Kanarie","convention_language":false,"id":null},{"lang":"English","names":"Syrian Serin, Tristram's Serin","convention_language":true,"id":null},{"lang":"French","names":"Serin syriaque","convention_language":true,"id":null}],"distributions":[{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Fringillidae","genus_name":"Serinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11316,"full_name":"Phylloscopus inornatus","author_year":"(Blyth, 1842)","common_names":[{"lang":"Danish","names":"Hvidbrynet Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bladkoninkje, Bladkoning","convention_language":false,"id":null},{"lang":"English","names":"Yellow-browed Warbler, Inornate Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjosiipiuunilintu","convention_language":false,"id":null},{"lang":"German","names":"Gelbbrauen-Laubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándorfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí forestiero","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-bilistada","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Bilistado","convention_language":true,"id":null},{"lang":"Swedish","names":"Taigasångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. R. 2007. First record of Yellow-browed Warbler \u003Ci\u003EPhylloscopus inornatus\u003C/i\u003E for The Gambia. Bulletin of the African Bird Club: 14: 74-75.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Cruse, R. 2004. Yellow-browed Warbler \u003Ci\u003EPhylloscopus inornatus\u003C/i\u003E in Senegal in December 2003. Bulletin of the African Bird Club: 11: 147-148.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11317,"full_name":"Lamna nasus","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"Afrikaans","names":"Haringhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Tonil","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb","convention_language":false,"id":null},{"lang":"Catalan","names":"Marraix","convention_language":false,"id":null},{"lang":"Danish","names":"Sildehaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Haringhaai, Neushaai","convention_language":false,"id":null},{"lang":"English","names":"Mackerel shark, Blue dog, Porbeagle, Beaumaris shark, Porbeagle shark, Porbeale shark","convention_language":true,"id":null},{"lang":"Faroese","names":"Hemari","convention_language":false,"id":null},{"lang":"Finnish","names":"Sillihai","convention_language":false,"id":null},{"lang":"French","names":"Requin-taupe commun","convention_language":true,"id":null},{"lang":"German","names":"Kalbfisch, Heringshai","convention_language":false,"id":null},{"lang":"Icelandic","names":"Hámeri","convention_language":false,"id":null},{"lang":"Italian","names":"Smeriglio","convention_language":false,"id":null},{"lang":"Japanese","names":"Môka-zame","convention_language":false,"id":null},{"lang":"Maltese","names":"Pixxiplamptu","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Lamia, Skylopsaro, Karharías","convention_language":false,"id":null},{"lang":"Norwegian","names":"Håbrann, Håbrand","convention_language":false,"id":null},{"lang":"Polish","names":"Zarlacz sledziowy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão, Peixe-cão, Tubarâo-sardo, Tubarão-sardo, Arrequim, Anequim, Sardo, Marracho","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechinul scrumbiilor","convention_language":false,"id":null},{"lang":"Serbian","names":"Psina atlantska, Kucina","convention_language":false,"id":null},{"lang":"Spanish","names":"Cailón marrajo, Marrajo sardinero, Cailón, Marrajo","convention_language":true,"id":null},{"lang":"Swedish","names":"Sillhaj, Håbrandshaj, Håbrand","convention_language":false,"id":null},{"lang":"Turkish","names":"Dikburun karkarias","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Luciflora, L. O. and Menni, R. C. 1998. First record of a porbeagle shark, \u003Ci\u003ELamna nasus\u003C/i\u003E, in brackish waters of Mar Chiquita Lagoon, Argentina. Cybium: 22(1): 87-88.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Quigley, D. and Flannery, K. 1995. Porbeagle shark \u003Ci\u003ELamna nasus\u003C/i\u003E (Bonnaterre, 1788). \u003Ci\u003EIrish Naturalists’ Journal\u003C/i\u003E: 25: 153.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"Dulcic, J. and Lipej, L. 2002. Rare and little-known fishes in the Eastern Adriatic during last two decades (1980-2001). Periodicum Biologorum: 104: 185-194.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Francis, M. P. 1979. Checklist of the marine fishes of Kaikoura, New Zealand. Mauri Ora: 7: 63-71.; Francis, M. P. and Duffy, C. 2005. Length at maturity in three pelagic sharks (\u003Ci\u003ELamna nasus\u003C/i\u003E, \u003Ci\u003EIsurus oxyrinchus\u003C/i\u003E, and \u003Ci\u003EPrionace glauca\u003C/i\u003E) from New Zealand. Fishery Bulletin: 103: 489-500.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Kohler, N. E. Turner, P. A. Hoey, J. J. Natanson, L. J. and Briggs, R. (2002. Tag and recapture data for three pelagic shark species: Blue Shark, (\u003Ci\u003EPrionace glauca\u003C/i\u003E), Shortfin Mako (\u003Ci\u003EIsurus xyrinchus\u003C/i\u003E), and Porbeagle (\u003Ci\u003ELamna nasus\u003C/i\u003E) in the north Atlantic Ocean. \u003Ci\u003ECollective Volume of Scientific Papers ICCAT\u003C/i\u003E: 54: 1231–1260.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Lamna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11318,"full_name":"Stenella clymene","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Clymene Dolphin, Helmet Dolphin, Atlantic Spinner Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Clymène","convention_language":true,"id":null},{"lang":"Swedish","names":"hjälmdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Simoes-Lopes, P. C., Praderi, P. and Paula, G. d. S. 1994. The Clymene Dolphin, \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846), in the southwestern south Atlantic Ocean. Marine Mammal Science: 10: 213-217.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F. and Mead, J. G. 1994. Clymene Dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fertl, D., Jefferson, T. A., Moreno, I. B., Zerbini, A. N. and Mullin, K. D. 2003. Distribution of the Clymene dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E. Mammal Review: 33: 253-271.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Perrin, W. F. and Mead, J. G. 1994. Clymene Dolphin \u003Ci\u003EStenella clymene\u003C/i\u003E (Gray, 1846). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"West African population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11319,"full_name":"Sotalia guianensis","author_year":"(van Bénéden, 1864)","common_names":[{"lang":"English","names":"Guianian River Dolphin, Guiana dolphin","convention_language":true,"id":null},{"lang":"Swedish","names":"guyanadelfin","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Caballero, S., Trujillo, F., Vianna, J.A., Barrios-Garrido, H., Montiel, M. G., Beltrán-Pedreros, S., Marmontel, M., Santos, M.C., Rossi-Santos, M.,. 2007. Taxonomic status of the genus Sotalia: species level ranking for \"tucuxi\" (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) and \"costero\" (\u003Ci\u003ESotalia guianensis\u003C/i\u003E) dolphins. Marine Mammal Science: 23: 358-386.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Caballero, S., Trujillo, F., Vianna, J.A., Barrios-Garrido, H., Montiel, M. G., Beltrán-Pedreros, S., Marmontel, M., Santos, M.C., Rossi-Santos, M.,. 2007. Taxonomic status of the genus Sotalia: species level ranking for \"tucuxi\" (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) and \"costero\" (\u003Ci\u003ESotalia guianensis\u003C/i\u003E) dolphins. Marine Mammal Science: 23: 358-386.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sotalia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESotalia fluviatilis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11320,"full_name":"Charadrius semipalmatus","author_year":"Bonaparte, 1825","common_names":[{"lang":"Dutch","names":"Amerikaanse Bontbekplevier","convention_language":false,"id":null},{"lang":"English","names":"Semipalmated Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier semipalmé","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo semipalmeado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2005. Fifty-first Irish Bird Report 2003. Irish Birds: 7: 549-574.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius hiaticula semipalmatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11321,"full_name":"Ficedula subrubra","author_year":"(Hartert \u0026 Steinbacher, 1934)","common_names":[{"lang":"English","names":"Kashmir Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche du Cachemire","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11322,"full_name":"Gazella subgutturosa","author_year":"(Güldenstädt, 1780)","common_names":[{"lang":"English","names":"Goitred Gazelle, Black-tailed Gazelle, Sand Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Gazelle à goitre","convention_language":true,"id":null},{"lang":"German","names":"Persische Kropfgazelle","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"extinct","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Karami, M., Hemami, M. R. and Groves, C. P. 2002. Taxonomic, distributional and ecological data on gazelles in Iran. Zoology in the Middle East: 26: 29-36.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Safadi, M. M. 2000. On the status of artiodactyles in the Republic of Yemen. Zoology in the Middle East: 20(1): 5-8.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11323,"full_name":"Sylvia cantillans","author_year":"(Pallas, 1764)","common_names":[{"lang":"Danish","names":"Hvidskægget Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Subalpine Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rusorintakerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette passerinette","convention_language":true,"id":null},{"lang":"German","names":"Weissbart-Grasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörhenyes poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzolina","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-carrasqueira","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Carrasqueña","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödstrupig sångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11324,"full_name":"Microcarbo pygmaeus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Kormorán malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgskarv","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwergaalscholver","convention_language":false,"id":null},{"lang":"English","names":"Pygmy Cormorant","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkumerimetso, Kääpiömerimetso","convention_language":false,"id":null},{"lang":"French","names":"Cormoran pygmée, Cormoran pygmé, Corvo-marinho-pigmeu","convention_language":true,"id":null},{"lang":"German","names":"Zwergscharbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis kárókatona","convention_language":false,"id":null},{"lang":"Italian","names":"Marangone minore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pikkumerimetso, Corvo-marinho-pigmeu","convention_language":false,"id":null},{"lang":"Spanish","names":"Cormorán Pigmeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgskarv","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Crivelli, A.J., Nazirides, T. and Jerrentrup, H. 1996. Action plan for the Pygmy Cormorant \u003Ci\u003EPhalacrocorax pygmeus\u003C/i\u003E in Europe. BirdLife International. 23","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Microcarbo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Halietor pygmeus","author_year":"(Pallas, 1773)"},{"full_name":"Pelecanus pygmeus","author_year":"Pallas, 1773"},{"full_name":"Phalacrocorax pygmeus","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPhalacrocorax pygmaeus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11325,"full_name":"Tadarida latouchei","author_year":"Thomas, 1920","common_names":[{"lang":"English","names":"La Touche's Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Yoshiyuki, M., Hattori, S. and Tsuchiya, K. 1989. Taxonomic analysis of two rare bats from the Amami Islands (Chiroptera, Molossidae and Rhinolophidae). Mem. Natl. Sci. Mus. (Tokyo): 22: 215-225.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.; Helgen, K. M. and Wilson, D. E. 2002. The bats of Flores, Indonesia, with remarks on Asian \u003Ci\u003ETadarida\u003C/i\u003E. Breviora: 511: 12.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kock, D. 1999. \u003Ci\u003ETadarida\u003C/i\u003E (\u003Ci\u003ETadarida\u003C/i\u003E) \u003Ci\u003Elatouchei\u003C/i\u003E, a separate species recorded from Thailand with remarks on related Asian taxa (Mammalia, Chiroptera, Molossidae). Senckenbergiana Biologica: 78: 237-240.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ETadarida teniotis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11326,"full_name":"Plecotus sardus","author_year":"Mucedda, Kiefer, Pidinchedda \u0026 Veith, 2002","common_names":[{"lang":"English","names":"Sardinian Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mucedda, M., Kiefer, A., Pidinchedda, E. and Veith, M. 2002. A new species of long-eared bat (Chiroptera, Vespertilionidae) from Sardinia (Italy). Acta Chiropterologica: 4: 121-135.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11327,"full_name":"Ficedula albicollis","author_year":"(Temminck, 1815)","common_names":[{"lang":"Danish","names":"Hvidhalset fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Withalsvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Collared Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelsieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobe-mouche à collier, Gobemouche à collier","convention_language":true,"id":null},{"lang":"German","names":"Halsbandschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-de-colar","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas collarino, Papamoscas albicollis","convention_language":true,"id":null},{"lang":"Swedish","names":"Halsbandsflugsnäppare, Halsbandsflugsnappare, Halsbandsflugsnappar","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. and Matrozis, R. 2005. Latvijas Putni. http://www.putni.lv . ","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11328,"full_name":"Dugong dugon","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Dugong","convention_language":false,"id":null},{"lang":"English","names":"Dugong, Sea Cow","convention_language":true,"id":null},{"lang":"Finnish","names":"Dugongi","convention_language":false,"id":null},{"lang":"French","names":"Dugong","convention_language":true,"id":null},{"lang":"German","names":"Dugong oder Pazifische Seekuh","convention_language":false,"id":null},{"lang":"Italian","names":"Dugongo","convention_language":false,"id":null},{"lang":"Spanish","names":"Dugon, Dugong, Dugongo","convention_language":true,"id":null},{"lang":"Swedish","names":"sjöko, dugong","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Sheppard, J.K., Marsh, H., Jones, R.E. and Lawler, I.R. 2010. Dugong habitat use in relation to seagrass nutrients, tides, and diel cycles. Marine Mammal Science: 26: 855-879.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Gallagher, M. D. 1975. The dugong \u003Ci\u003EDugong dugon\u003C/i\u003E (Sirenia) at Bahrain, Persian (Arabian) Gulf. Journal of the Bombay Natural History Society: 73: 211-212.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Robineau, D. and Rose, J. M. 1982. Le Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Muller 1776, Sirenia, Dugongidae) en République de Djibouti. Biological Conservation: 24: 233-238.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; D'souza, E. and Patankar, V. 2009. First underwater sighting and preliminary behavioural observations of Dugongs (\u003Ci\u003EDugong dugon\u003C/i\u003E) in the wild from Indian waters, Andaman Islands. Journal of Threatened Taxa: 1: 49-53.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Robinson, H. C. and Kloss, C. B. 1917. List of the mammals of Sumatra. Journal of the Federated Malay States Museums: 8: 73-80.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Ligon, S. 1976. Aerial survey of the Dugong in Kenya. FAO ACMRR/MM/SC/107. Scientific Consultation on Marine Mammals, Bergen, Norway, 31 August - 9 September 1976 . ; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Bertram, G. C. L. and Ricardo Bertram, C. K. 1973. The modern Sirenia: their distribution and status. Biological Journal of the Linnean Society: 5: 297-338.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Maldives","country":"Maldives","tags_list":"extinct","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ilangakoon, A. D. and Tun, T. 2007. Rediscovering the Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E) in Myanmar and capacity building for research and conservation. Raffles Bulletin of Zoology: 55: 195-199.; Salter, R. E. 1983. Summary of currently available information on internationally threatened wildlife species in Burma. Nature Conservation and National Parks Project, Burma. Report for Food and Agriculture Organization of the United Nations . ; Tun Yin. 1970. The Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Müller) in Burmese waters. Journal of the Bombay Natural History Society: 67: 326-327.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C., Patenaude, N. and Marsh, H. 2007. Distribution and abundance of the dugong in New Caledonia, southwest Pacific. Marine Mammal Science: 24(1): 81-90.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Ho Hua Chew. 1988. The Dugong in Singapore waters. Malaysian Nat.: 42: 22-25.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Bertram, G. C. L. and Ricardo Bertram, C. K. 1973. The modern Sirenia: their distribution and status. Biological Journal of the Linnean Society: 5: 297-338.; Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Santiapillai, C. 1981. On the ecology and conservation of the Dugong, \u003Ci\u003EDugong dugon\u003C/i\u003E (Muller 1776) in Sri Lanka. Tigerpaper: 8: 2-6.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Marsh, H. 2001. Dugong: status report and action plans for countries and territories. IUCN/SSC Sirenia Specialist Group. 172","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Bain, J. R. and Humphrey, S. R. 1980. A profile of the endangered species of Thailand. Report No. 4 Office of Ecological Services, Florida State Museum.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1971. East African mammals. An atlas of evolution in Africa. Vol. 1. Academic Press. London.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Davies, G. and Payne, J. 1982. A faunal survey of Sabah. IUCN/WWF Project No. 1692. WWF Malaysia . ; Marsh, H. 1983. Conserving the Dugong (cowfish) in Vanuatu. Naika: 9: 1-5.; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Mackinnon, J. 1983. Report on a visit to Hanoi, 18-25 November 1983, to participate in the workshop of the programme on natural resources and environmental research and protection. Unpublished. ; Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Marsh, H., Penrose, H., Eros, C. and Hugues, J. (comp.) 2001. The Dugong (\u003Ci\u003EDugong dugon\u003C/i\u003E). Status report and action plans for countries and territories in its range. IUCN/ SSC Sirenia Specialist Group. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Dugongidae","genus_name":"Dugong","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Dugong"}]},{"id":11329,"full_name":"Glareola pratincola","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Czech","names":"Ouhorlík stepní","convention_language":false,"id":null},{"lang":"Danish","names":"Braksvale","convention_language":false,"id":null},{"lang":"Dutch","names":"Vorkstaartplevier","convention_language":false,"id":null},{"lang":"English","names":"Collared Pratincole","convention_language":true,"id":null},{"lang":"Finnish","names":"Pääskykahlaaja","convention_language":false,"id":null},{"lang":"French","names":"Glaréole à collier","convention_language":true,"id":null},{"lang":"German","names":"Rotflügelbrachschwalbe, Brachschwalbe, Rotflügel-Brachschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Székicsér","convention_language":false,"id":null},{"lang":"Italian","names":"Pernice di mare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perdiz-do-mar","convention_language":false,"id":null},{"lang":"Spanish","names":"Canastera Común, Canastera","convention_language":true,"id":null},{"lang":"Swedish","names":"Vadarsvala, Rödvingad vadarsvala","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. L. 1997. West Indies Region. Field Notes: 51: 809-810.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct,distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hirundo pratincola","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11330,"full_name":"Histrionicus histrionicus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Strømand","convention_language":false,"id":null},{"lang":"Dutch","names":"Harlekijneend","convention_language":false,"id":null},{"lang":"English","names":"Harlequin Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Virta-alli","convention_language":false,"id":null},{"lang":"French","names":"Garrot arlequin, Arlequin plongeur","convention_language":true,"id":null},{"lang":"German","names":"Kragenente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tarka réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta arlecchino","convention_language":false,"id":null},{"lang":"Polish","names":"Kamieniuszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-arlequim","convention_language":false,"id":null},{"lang":"Russian","names":"Kamenushka","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato arlequin, Pato Arlequín","convention_language":true,"id":null},{"lang":"Swedish","names":"Strömand","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Histrionicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas histrionicus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11331,"full_name":"Streptopelia turtur","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Europæisk Turteldue","convention_language":false,"id":null},{"lang":"Dutch","names":"Zomertortel, Tortelduif","convention_language":false,"id":null},{"lang":"English","names":"European Turtle-Dove, Turtle Dove, Western Turtle-Dove","convention_language":true,"id":null},{"lang":"Finnish","names":"Turturikyyhky","convention_language":false,"id":null},{"lang":"French","names":"Tourterelle des bois","convention_language":true,"id":null},{"lang":"German","names":"Turteltaube","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vadgerle","convention_language":false,"id":null},{"lang":"Italian","names":"Tortora selvatica, Tortora","convention_language":false,"id":null},{"lang":"Polish","names":"Turkawka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rola-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya Gorlitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Tórtola común, Tórtola europea","convention_language":true,"id":null},{"lang":"Swedish","names":"Turturduva","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (3). Bulletin of the British Ornithologists' Club: 198: 112-120.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Ferreira, J. A. 1973. Bichos da Guiné: caça, fauna, natureza.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haas, V., Haussler, U. and Stick, R. 1981. Turtle Dove \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Kenya. Scopus: 5: 128.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Winterbottom, J. M. 1974. Turtle Dove \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in South West Africa. Bulletin of the British Ornithologists' Club: 94: 19.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Browne, S.J. and Aebischer, N.J. 2003. Habitat use, foraging ecology and diet of Turtle Doves \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Britain. Ibis: 145: 572-582.; Browne, S.J. and Aebischer, N.J. 2004. Temporal changes in the breeding ecology of European Turtle Doves \u003Ci\u003EStreptopelia turtur\u003C/i\u003E in Britain, and implications for conservation. Ibis: 146: 125-137.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Columbiformes","class_name":"Aves","family_name":"Columbidae","genus_name":"Streptopelia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11333,"full_name":"Oxyura maccoa","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Maccoa Duck","convention_language":true,"id":null},{"lang":"French","names":"Érismature maccoa","convention_language":true,"id":null},{"lang":"Spanish","names":"Malvasía maccoa","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zinner, D. 2001. Ornithological notes from a primate survey in Eritrea. Bulletin of the African Bird Club: 8: 95-106.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Erismatura maccoa","author_year":"Eyton, 1838"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11334,"full_name":"Calidris maritima","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Danish","names":"Sortgrå Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Paarse Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Purple Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Merisirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau violet","convention_language":true,"id":null},{"lang":"German","names":"Meerstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tengeri partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello violetto","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus morski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-escuro","convention_language":false,"id":null},{"lang":"Russian","names":"Morskoy Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Oscuro","convention_language":true,"id":null},{"lang":"Swedish","names":"Skärsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"distribution uncertain","country_references":"Matejev, S.D. and Vasic, V.F. 1973. Catalogus Faunae Jugoslaviae -Aves IV/3. Academia Scientiarium et Artium Slovenic, Lubljana (in Serbian) .","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia maritima","author_year":"(Brünnich, 1764)"},{"full_name":"Tringa maritima","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11335,"full_name":"Numenius arquata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Koliha velká","convention_language":false,"id":null},{"lang":"Danish","names":"Storspove (Stor Regnspove)","convention_language":false,"id":null},{"lang":"Dutch","names":"Wulp","convention_language":false,"id":null},{"lang":"English","names":"Curlew, Eurasian Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Isokuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis cendré","convention_language":true,"id":null},{"lang":"German","names":"Großer Brachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik wielki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Storspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax arquata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11336,"full_name":"Tursiops truncatus","author_year":"(Montagu, 1821)","common_names":[{"lang":"Danish","names":"Oresvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Tuimelaar","convention_language":false,"id":null},{"lang":"English","names":"Bottle-nosed Dolphin, Bottlenose Dolphin, Short-beaked Bottlenose Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Grand Dauphin, Souffleur, Tursiops","convention_language":true,"id":null},{"lang":"German","names":"Grosser Tümmler","convention_language":false,"id":null},{"lang":"Italian","names":"Tursiope troncato, Tursiope","convention_language":false,"id":null},{"lang":"Portuguese","names":"Roaz corvineiro","convention_language":false,"id":null},{"lang":"Spanish","names":"Tursión, Delfín mular, Pez mular","convention_language":true,"id":null},{"lang":"Swedish","names":"flasknosdelfin, öresvin","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mermoz, J. F. 1978. Sobre el varamiento de un delfín nariz de botella, \u003Ci\u003ETursiops truncatus\u003C/i\u003E, en la desembocadura del Rio de la Plata (Buenos Aires, Argentina). Physis, B. Aires (C): 37: 227-235.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Lear, R. J. and Bryden, M. M. 1980. A study of the Bottlenose Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E in eastern Australian waters. Canberra, ANPWS, Occasional Papers: 4: 1-25.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Baird, R. W., Waltes, E. L. and Stacey, R. J. 1993. Status of the Bottle-nosed Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E with special reference to Canada. Canadian Field Naturalist 107(4): 466-480: 107: 466-480.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Olavarría, C., Acevedo, J., Vester, H.I., Zamorano-Abramson, J., Viddi, F.A., Gibbons, J., Newcombe, E., Capella, J., Hoelzel, A.R., Flores, M. et al. 2010. Southernmost distribution of Common Bottlenose Dolphins (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in the Eastern South Pacific. Aquatic Mammals: 36: 288-293.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Newcomer, M. W. 1986. Observation of a bottlenose dolphin (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in Costa Rican waters. Brenesia: 24: 403-404.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Spaans, B. 1990. Dolphins in the coastal area of Guinea Bissau. Lutra: 33: 126-133.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; di Natale, A. 1983. Distribution of the bottlenosed dolphin, \u003Ci\u003ETursiops truncatus\u003C/i\u003E (Montagu) in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 193-194.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Aiken, K.A. and Pal, A.R. 2007. Interference with fish traps by dolphins (Delphinidae) in Jamaican waters. Proceedings of the 60th Gulf and Caribbean Fisheries Institute: 269-281.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Vella, A. 1999. Cetacean surveys around the Maltese Islands \u0026 Maltes [Maltese] sea-user cetacean questionnaire study. European Research on Cetaceans: 12: 66-73.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Valverde, J. A. 1957. Aves del Sahara Español. Instituto de Estudios Africanos, Consejo Superior de Investigaciones Cientificas. Madrid.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Cockcroft, V. G., Ross, G. J. B. and Peddemors, V. M. 1991. Distribution and status of Bottle-nosed Dolphin \u003Ci\u003ETursiops truncatus\u003C/i\u003E on the south coast of Natal, South Africa. South African Journal of Marine Science: 11: 203-209.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bearzi, G., Fortuna, C.M. and Reeves, R.R. 2008. Ecology and conservation of common bottlenose dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Mediterranean Sea. Mammal Review: 39: 92-123.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hammond, P. S. and Thompson, P. M. 1991. Minimum estimate of the Bottle-nose Dolphins \u003Ci\u003ETursiops truncatus\u003C/i\u003E in the Moray Firth, North-east Scotland. Biological Conservation: 56: 79-87.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baird, R.W., Gorgone, A.M., McSweeney, D.J., Lignon, A.D., Deakos, M.H., Webster, D.L., Schorr, G.S. and Martien, K.K. 2009. Population structure of island-associated dolphins: Evidence from photo-identification of common bottlenose dolphins (\u003Ci\u003ETursiops truncatus\u003C/i\u003E) in the main Hawaiian Islands. Marine Mammal Science: 25: 251-274.; Barros, N.B., Ostrom, P.H., Stricker, C.A. and Wells, R.S. 2010. Stable isotopes differentiate bottlenose dolphins off west-central Florida. Marine Mammal Science: 26: 324-336.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Tursiops","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Mediterranean population (replacing Western Mediterranean population)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Western Mediterranean, and Black Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Baltic and North Sea population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11337,"full_name":"Sylvia conspicillata","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Brillesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkupensaskerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette à lunettes","convention_language":true,"id":null},{"lang":"German","names":"Brillengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpeposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola di Sardegna","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka okularowa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-tomilheira","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Tomillera","convention_language":true,"id":null},{"lang":"Swedish","names":"Glasögonsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Sage, B. L. 1959. Some comments on autumn migration in eastern Iraq. Bulletin of the British Ornithologists' Club: 79: 132-135.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schmaljohann, H. and Salewski, V. 2005. Spectacled Warbler \u003Ci\u003ESylvia conspicillata\u003C/i\u003E in Mauritania: first breeding records. Bulletin of the African Bird Club: 12: 153-155.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11338,"full_name":"Trichechus senegalensis","author_year":"Link, 1795","common_names":[{"lang":"Dutch","names":"Westafikaanse Lamantijn","convention_language":false,"id":null},{"lang":"English","names":"African Manatee, West African Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin du Sénégal, Lamantin ouest-africain, Lamantin d'Afrique","convention_language":true,"id":null},{"lang":"German","names":"Westafrikanische Seekuh","convention_language":false,"id":null},{"lang":"Spanish","names":"Manatí de Senegal","convention_language":true,"id":null},{"lang":"Swedish","names":"afrikansk manat, senegalmanat","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hatt, R. T. 1934. A manatee collected by the American Museum Congo expedition, with observations on the recent manatees. Bulletin of the American Museum of Natural History: 66: 533-566.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Verschuren, J., Heymans, J. C. and Delvingt, W. 1989. Conservation in Benin - with the help of the European Economic Community. Oryx: 23: 22-26.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Grigione, M. M. 1996. Observations on the status and distribution of the West African Manatee in Cameroon. African Journal of Ecology: 34: 189-195.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Spinage, C. A. 1980. Parks and reserves in Congo Brazzaville. Oryx: 15: 292-295.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Cansdale, G. S. 1964. The Volta dam may help wildlife in Ghana. Oryx: 7: 168-171.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.; Verschuren, J. 1983. Conservation of tropical rain forest in Liberia. IUCN. Gland.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dupuy, A. 1971. SOS pour la conservation de la nature en Mauretanie. Science et Nature: 108: 31-34.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Haywood, A. H. W. 1932. Sierra Leone, the preservation of wildlife. Journal of the Society for the Preservation of the Fauna of the Empire: 19: 21-33.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Nishiwaki, M., Yamaguchi, M., Shokita, S., Uchida, S. and Kataoka, T. 1983. Recent survey on the distribution of the African Manatee. The Scientific Reports of the Whales Research Institute: 34: 137-147.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11339,"full_name":"Myotis myotis","author_year":"(Borkhausen, 1797)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i madh","convention_language":false,"id":null},{"lang":"Croatian","names":"Veliki šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor museøre","convention_language":false,"id":null},{"lang":"Dutch","names":"Vale vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Greater Mouse-eared Bat, Large Mouse-eared Bat, Mouse-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurlendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläissiippa","convention_language":false,"id":null},{"lang":"French","names":"Grand murin","convention_language":true,"id":null},{"lang":"German","names":"Großes Mausohr","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Músablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio maggiore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stor musøre","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rato-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago ratonero grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Stort musöra, Större musöra","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Gerell, R. and Lundberg, K. 1985. [The mouse-eared bat (\u003Ci\u003EMyotis myotis\u003C/i\u003E Borkhausen, 1797) - a new bat species for Sweden.]. Fauna och Flora: 80: 144-146.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M. 1985. The mouse-eared bat in Britain. Bat News: 4.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11340,"full_name":"Limosa haemastica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Rode Grutto","convention_language":false,"id":null},{"lang":"English","names":"Hudsonian Godwit","convention_language":true,"id":null},{"lang":"French","names":"Barge hudsonienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Aguja café","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Rasmussen, P. C. and López H., N. 1988. Notes on the status of some birds of Region X, Chile. Bulletin of the British Ornithologists' Club: 108: 154-159.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax haemastica","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11341,"full_name":"Pterodroma sandwichensis","author_year":"(Ridgway, 1884)","common_names":[{"lang":"English","names":"Hawaiian Petrel","convention_language":true,"id":null}],"distributions":[{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Oestrelata sandwichensis","author_year":"Ridgway, 1884"},{"full_name":"Pterodroma phaeopygia sandwichensis","author_year":"(Salvin, 1876)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EPterodroma phaeopygia\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E). ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11344,"full_name":"Otomops madagascariensis","author_year":"Dorst, 1953","common_names":[{"lang":"English","names":"Malagasy Giant Mastiff Bat, Madagascar Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Garbutt, N. 1999. Mammals of Madagascar. Pica Press. East Sussex, U.K.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Otomops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EOtomops martiensseni\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11346,"full_name":"Acipenser stellatus","author_year":"Pallas, 1771","common_names":[{"lang":"Albanian","names":"Bli turigjate","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Czech","names":"Jester hvezdnaty","convention_language":false,"id":null},{"lang":"English","names":"Starry Sturgeon, Star Sturgeon, Stellate Sturgeon, Sevruga","convention_language":true,"id":null},{"lang":"Finnish","names":"Tähtisampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon étoilé, Sevruga","convention_language":true,"id":null},{"lang":"German","names":"Sternhausen, Sterhausen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Söregtok","convention_language":false,"id":null},{"lang":"Italian","names":"Storione stellato","convention_language":false,"id":null},{"lang":"Polish","names":"Siewruga","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjâo estrelado, Esturjão-estrelado","convention_language":false,"id":null},{"lang":"Romanian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Russian","names":"Sevryuga, Sevrjuga","convention_language":false,"id":null},{"lang":"Serbian","names":"Pastruga","convention_language":false,"id":null},{"lang":"Slovenian","names":"Jeseter hviezdnaty","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión estrellado","convention_language":true,"id":null},{"lang":"Swedish","names":"sevrugastör, Stjärnstör","convention_language":false,"id":null},{"lang":"Turkish","names":"Mersin, Mersin baligi","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Economidis, P.S., Koutrakis, E. T., Bobori, D.C. 2000. Distribution and conservation of \u003Ci\u003EAcipenser sturio\u003C/i\u003E L.,1758 and related species in Greek waters. Boletín Instituto Español de Oceanografía: 16: 81-88.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Pinter, K. 1991. Sturgeon in Hungary, past and present situation. Bordeaux. ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .; DEG. 2003. Regional Touristic Masterplan Ulcinj. ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Bacalbasa-Dobrovici, N. 1997. Endangered migratory sturgeons of the lower Danube River and its delta. Environmental Biology of Fishes: 48: 201-207.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Holcik, J. 1995. 2.druh Acipenser (Gladostomus) stellatus Pallas, 1771. In. V. Barus and O. Oliva (eds.) Mihulovci Petromyzontes a ryby Osteichthyes. 1. Fauna CR a SR 28/1. Academia. Praha.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11348,"full_name":"Acipenser baerii","author_year":"Brandt, 1869","common_names":[{"lang":"English","names":"Siberian Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon sibérien","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk stör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Ruban, G. I. 1996. The Siberian Sturgeon, \u003Ci\u003EAcipenser baerii baerii\u003C/i\u003E: population status in the Ob River. The Sturgeon Quarterly: 4: 8-9.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11349,"full_name":"Netta erythrophthalma","author_year":"(Wied, 1832)","common_names":[{"lang":"English","names":"Southern Pochard","convention_language":true,"id":null},{"lang":"French","names":"Nette brune","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato morado","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 2000. The first Southern Pochard \u003Ci\u003ENetta erythrophthalma\u003C/i\u003E in Israel and the Western Palearctic. Sandgrouse: 22: 131-133.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas erythrophthalma","author_year":"Wied, 1832"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11350,"full_name":"Acipenser sturio","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Blini, Blini turigjate","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Nemska essetra, Moruna, Atlantichka esetra","convention_language":false,"id":null},{"lang":"Catalan","names":"Esturió","convention_language":false,"id":null},{"lang":"Croatian","names":"Strljun, Storijun, Jesetric","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter valky, Jeseter velky, Jeseter velký","convention_language":false,"id":null},{"lang":"Danish","names":"Haastor, Selstor, Store, Stør","convention_language":false,"id":null},{"lang":"Dutch","names":"Steur, Gewone steur, Stent","convention_language":false,"id":null},{"lang":"English","names":"Baltic Sturgeon, Sea Sturgeon, European Sturgeon, Common Sturgeon, Sturgeon","convention_language":true,"id":null},{"lang":"Faroese","names":"Styrja","convention_language":false,"id":null},{"lang":"Finnish","names":"Storjer, Sampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon atlantique, Créa, Créach, Esturgeon atlantique d'Europe, Esturgeon commun, Esturgeon, Étrugeon, Esturgeon européen occidentale, Créac, Estourioun, Esturgeon de la Baltique, Esturgeon européen","convention_language":true,"id":null},{"lang":"German","names":"Stierl, Stohr, Schirk, Baltischer Stör, Stör, Gemeiner Stör, Sturo","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kestchecke, Ketschegi, Szintok, Közönséges tok","convention_language":false,"id":null},{"lang":"Icelandic","names":"Rodmage, Styrja, Graa-stepa","convention_language":false,"id":null},{"lang":"Italian","names":"Storione reale, Porcelleto, Storione comune, Attilus, Storione, Porcello, Porcelette","convention_language":false,"id":null},{"lang":"Japanese","names":"Chôzame","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Sturys, Atlanto ersketas, Ersketras, Atlantinis ersketas","convention_language":false,"id":null},{"lang":"Macedonian","names":"Közönseges tok","convention_language":false,"id":null},{"lang":"Maltese","names":"Sturjun","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Mouroúna Stourióni, Stourioni, Mourouna","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stør, Storje","convention_language":false,"id":null},{"lang":"Polish","names":"Czezuga, Jesiotr zachodni, jesziotr, Czetzugi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão, Sôlho, Peixe rei, Creal, Esturjao solho, Esturjao","convention_language":false,"id":null},{"lang":"Romanian","names":"Sipul, Sip, Viza galbena, Sturion","convention_language":false,"id":null},{"lang":"Russian","names":"Atlanticheskii osetr, Baltiyskiy osetr, Nemetskij osetr, Atlantiskÿ osetr, Baltiskÿ osetr, Tanna, Baltiiskii osetr, Obiknovenÿ osetr, Osstrina, Sülime","convention_language":false,"id":null},{"lang":"Serbian","names":"Jesetra, Moruna, Atlantska jesetra","convention_language":false,"id":null},{"lang":"Slovak","names":"Jeseter vel'ky","convention_language":false,"id":null},{"lang":"Slovenian","names":"Atlantski jeseter, Atlantski jesetar","convention_language":false,"id":null},{"lang":"Spanish","names":"Sulio, Sollo, Sollo real, Esturión, Esturión común","convention_language":true,"id":null},{"lang":"Swedish","names":"Europeisk stör, Stör, vanlig stör","convention_language":false,"id":null},{"lang":"Turkish","names":"Kolan, Surack, Mersin, Kolan baligi, Syrick, Açl mersine, Mersin baligi","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Poll, M. 1947. Faune de Belgique - poissons marins. Musèe Royal d'Histoire Naturelle de Belgique. Bruxelles.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Botev, S. B. and Peshev, T (eds.) 1985. [The Red Data Book of Bulgaria. Vol. 2. Animals.].","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct","country_references":"Lojtnant, B. and Gregersen, J. 1986. Truede Planter og dyr i Danmark. (Threatened plants and animals in Denmark - a collection of red lists). Fredningsstyrelsen and Lanbrugsministeriets Vildt for Valtning.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Paaver, T. 1999. Historic and recent records of native and exotic sturgeon species in Estonia. Journal of Applied Icthyology: 15: 129-132.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kiener, A. NULL. Espèces en voie de disparition ou menacées dans le Midi Méditerranéen.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Spillmann, C. J. 1961. Faune de France. 65, Poissons d'eau douce. Fédération Française des Sociétés de Sciences Naturelles. Paris.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J., Nowak, E., Kreft, E., Lelek, A. and Tesch, F.-W. 1977. Rote Liste der Fische (Pisces) und Rundmäuler (Cyclostomata). 2. Fassungi. Stand: 15. 3. 1977.; Dehus, P. 1982. Rote Liste der Süsswasserfische Schleswig-Holsteins. 1. Fassung. In: Rote Listen der Pflanzen und Tiere Schleswig-Holsteins. Schriftenreihe des Landesamtes für Naturschutz und Landschaftspflege Schleswig-Holstein, Kiel .; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Terofal, F. 1977. Das Artenspektrum der Fische Bayerns in den letzten 50 Jahren. Ber. ANL: 1: 9-22.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Economidis, P. S. 1973. Catalogue des poissons de la Grèce. Hellenic Oceanology and Limnology: 11: 421-598.; Economidis, P.S., Koutrakis, E. T., Bobori, D.C. 2000. Distribution and conservation of \u003Ci\u003EAcipenser sturio\u003C/i\u003E L.,1758 and related species in Greek waters. Boletín Instituto Español de Oceanografía: 16: 81-88.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Wilson, J. P. F. and Flower, R. J. 1980. A large sturgeon \u003Ci\u003EA. sturio\u003C/i\u003E from Ardglass, Co. Down. Irish Naturalists' Journal: 20: 1-43.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Alesio, G. and Gandolfi, G. 1983. Censimiento e distribuzione attuale delle specie ittiche nel bacino del fiume Po. Instituto di Ricerca Sulle Acque Quaderni: 67: 1-92.; Delmastro, G. B. 1982. Guida ai pesci del Bacino del Po - e delle acque dolci d'Italia. Museo Civico di Storia Naturale di Carmagnola. CLESAV. Milano.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Plikss, M. 2002. Fish of Latvia. http://latvijas.daba.lv/scripts/db/saraksti/saraksti.cgi?d=zivis\u0026l=en . ","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Repecka, R. 2003. The species composition of the ichthyofauna in the Lithuanian economic zone of the Baltic Sea and the Curonian lagoon and its changes in recent years. Acta Zoologica Lituanica: 13(2): 149-157.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Nijsen, H. and de Groot, S. J. 1987. De Vissen van Nederland. KNNV. Utrecht.; Timmermans, G. and Melchers, M. 1994. [The Atlantic Sturgeon in the Netherlands.]. Natura (Hoogwoud): 91: 155-158.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Anon. 2003. Emerald Network Pilot Project in \"former Yugoslav Republic of Macedonia\". Report. http://www.coe.int/t/e/Cultural\u003Ci\u003ECooperation/Environment/Nature\u003C/i\u003Eand\u003Ci\u003Ebiological\u003C/i\u003Ediversity/Ecological\u003Ci\u003Enetworks/Agenda/tpvs\u003C/i\u003Eemerald03e_03.PDF?L=E Document presented at the meeting of the Convention on the Conservation of European Wildlife and Natural Habitats, Strasbourg, 14 February 2003. ","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Pethon, P. 1985. Aschehougs store fiskebok. Oslo.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Ferens, B. 1965. Animal species under protection in Poland (Ochrona gatunkowa zwierzat w Polsce). Translated from Polish. Sci. Pub. Forg. Coop. Center Central Instl Sci. Tech. and Economic Information .; Gtowacinski, Z., Bieniek, M., Dyduch, A., Gertychowa, R., Jakubiec, Z., Kosior, A. and ,Zemanek, M. 1980. Situation of all vertebrates and selected invertebrates in Poland - list of species, their occurrence, endangerment and status of protection. Polska Akademia Nauk. Warszawa-Krahow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Almaça, C. 1988. A lampreia e o esturjâo na Bacia do Douro. Actas 1? Congresso Internacional sobre o Rio Douro, Vila Nova de Gaiz . ; Almaça, C. 1988. On the sturgeon, \u003Ci\u003EAcipenser sturio\u003C/i\u003E Linnaeus, 1758, in the Portuguese rivers and sea. Folia Zoologica, Bratislava: 37: 183-191.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Vasiliu, G. D. and Sova, C. 1968. Fauna Vertebratica Romaniae (Index). Muzeul Judetean Bacau.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bannikov, A. G. and Sokolov, V. I (eds.) 1984. The Red Data Book of the U.S.S.R. Rare and Threatened Species of Animals and Plants. Lesuaya Promiishlyennost Press. Moscow.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Almodovar, A., Machordom, A. and Suarez, J. 2000. Preliminary results from Characterization of the Iberian Peninsula sturgeon based on analysis of the mtDNA cytochrome b. Boletin Instituto Espanol de Oceanografia: 16: 17-27.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hernando, J. A. 1975. Notas sobre distribucion de los peces fluviales en el sur-oeste de España. Doñana, Acta Vertebrata: 2: 263-264.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; ICONA. (ed.) 1986. Lista roja de los vertebrados de España. Publicaciones del Ministerio de Agricultura, Pesca y Alimentacion. Madrid.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Curry-Lindahl, K. 1985. Vara fiskar. Havs-och Sötvattensfiskar i Norden och övriga Europa. P.A. Norstedt and Söners Förlag. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kuru, M. 1980. Türkiye Tattisu Baliklari Katalogu. Türkiye Faunasi: 12: 1.; Ladiges, V. W. 1964. Süsswasserfische der Türkei. Mitteilungen aus den Hamburgischen Zoologischen Museum und Institut: 61: 203-220.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bannikov, A. G. and Sokolov, V. I (eds.) 1984. The Red Data Book of the U.S.S.R. Rare and Threatened Species of Animals and Plants. Lesuaya Promiishlyennost Press. Moscow.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Knight, A. 1997. Did sturgeon ever breed in British waters? Glaucus: 8: 29-33.; Maitland, P. S. 1985. Criteria for the selection of important sites for freshwater fish in the British Isles. Biological Conservation: 31: 335-353.; Wheeler, A. 1973. Leonard Jenyns's notes on Cambridgeshire fishes. Cambridgeshire and Isle of Ely Naturalists' Trust Annual Report 1973: 19-22.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11351,"full_name":"Procellaria conspicillata","author_year":"Gould, 1844","common_names":[{"lang":"English","names":"Spectacled Petrel","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Savigny, C. 2002. Observaciones sobre aves marinas en aguas argentinas, sudeste Bonarense y Patagonia. Cotinga: 18: 81-84.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria aequinoctialis conspicillata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EProcellaria aequinoctialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11353,"full_name":"Manta birostris","author_year":"(Walbaum, 1792)","common_names":[{"lang":"English","names":"Oceanic Manta Ray","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Luiz Jr, O. J., Balboni, A. P., Kodja, G., Andrade, M. and Marum, H. 2009. Seasonal occurrences of \u003Ci\u003EManta birostris\u003C/i\u003E (Chondrichthyes: Mobulidae) in southeastern Brazil. Ichthyological Research: 56(1): 96-99.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Mourier, J. 2012. Manta rays in the Marquesas Islands: first records of \u003Ci\u003EManta birostris\u003C/i\u003E in French Polynesia and most easterly location of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Pacific Ocean, with notes on their distribution. Journal of Fish Biology: 81(6): 2053-2058.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Graham, R. T., Witt, M. J., Castellanos, D. W., Remolina, F., Maxwell, S., Godley, B. J. and Hawkes, L. A. 2012. Satellite tracking of manta rays highlights challenges to their conservation. Plos One: 7(5): e36834.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Duffy, C. A. J. and Abbott, D. 2003. Sightings of mobulid rays from northern New Zealand, with confirmation of the occurrence of \u003Ci\u003EManta birostris\u003C/i\u003E in New Zealand\nwaters. New Zealand Journal of Marine and Freshwater Research: 37(4): 715-721.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Milessi, A. C. and Oddone, M. C. 2003. A new record of \u003Ci\u003EManta birostris\u003C/i\u003E (Donndorff 1798) (Batoidea: Mobulidae) in the Rio de la Plata, Uruguay. Gayana: 67(1): 127-130.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Manta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":11354,"full_name":"Eptesicus nilssonii","author_year":"(Keyserling \u0026 Blasius, 1839)","common_names":[{"lang":"English","names":"Northern Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"nordisk fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Cerveny, J. and Lecocq, Y. 1998. The northern bat (\u003Ci\u003EEptesicus nilssonii\u003C/i\u003E) - a new species for the bat fauna of Belgium. Lynx (Prague): 29: 97-98.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hanák, V. and Horacek, I. 1987. Zur Sudgrenze des Areals von \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Chiroptera: Vespertilionidae). Ann. Naturhist. Mus. Wien Ser. B. Bot. Zool.: 88: 377-388.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Pavlinic, I. and Tvrtkovic, N. 2003. The presence of \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E and \u003Ci\u003EVespertilio murinus\u003C/i\u003E in the Croatian bat fauna confirmed. Natura Croatica: 12(2): 55-62","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Sato, M., Maeda, K. and Akazawa, Y. 2001. [Distribution of bats in Toyatomi and Horonobe, northern Hokkaido.]. Rishiri Studies: 20: 23-28.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Boshamer, J. P. C. 1997. Noordse vleermuis \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E (Keyserling \u0026 Blasius, 1839). Natuurhistorische Bibliotheek van de KNNV: 65: 202-203.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Cerveny, J. and Krystufek, B. 1991. First record of \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E, Keyserling et Blasius, 1839 (Chiroptera, Mammalia) in Slovenia. Bioloski Vestnik: 39: 21-25.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Pokynchereda, V. F., Zagorodniuk, I. V., Postawa, T., Labocha, M. and Pokynchereda, V. V. 1999. [\u003Ci\u003EMyotis bechsteini\u003C/i\u003E and \u003Ci\u003EEptesicus nilssoni\u003C/i\u003E (Mammalia, Chiroptera) in the west of Ukraine.]. Vestnik Zoologii: 33: 115-120.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Racey, P. A. 1988. First British record of the northern bat (\u003Ci\u003EEptesicus nilssoni\u003C/i\u003E). Journal of Zoology (London): 215: 357-359.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11356,"full_name":"Monticola gularis","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"White-throated Rock-Thrush","convention_language":true,"id":null},{"lang":"French","names":"Monticole à gorge blanche","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11357,"full_name":"Rhinolophus euryale","author_year":"Blasius, 1853","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i mesdheut","convention_language":false,"id":null},{"lang":"Danish","names":"Middelhavshesteskonæse, Middelhavs hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Paarse hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Välimerenhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe euryale","convention_language":true,"id":null},{"lang":"German","names":"Mittelmeer-Hufeisennase","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo euriale","convention_language":false,"id":null},{"lang":"Norwegian","names":"Middelhavshesteskonese","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-mediterrânico","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago mediterráneo de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Mellanhästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.; Niazi, A. D. 1976. [On the Mediterranean horseshoe bat from Iraq.]. Bulletin nat. Hist. Res. Cent. Univ. Baghdad: 7: 167-176.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Goiti, U., Aihartza, J. R., Garin, I. and Zabala, J. 2003. Influence of habitat on the foraging behaviour of the Mediterranean horseshoe bat, \u003Ci\u003ERhinolophus euryale\u003C/i\u003E. Acta Chiropterologica: 5(1): 75-84; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11359,"full_name":"Muscicapa griseisticta","author_year":"(Swinhoe, 1861)","common_names":[{"lang":"English","names":"Grey-streaked Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à taches grises","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11360,"full_name":"Numenius borealis","author_year":"(Forster, 1772)","common_names":[{"lang":"Danish","names":"Eskimospove","convention_language":false,"id":null},{"lang":"Dutch","names":"Arctische wulp, Eskimowulp","convention_language":false,"id":null},{"lang":"English","names":"Eskimo Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Eskimokuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis esquimau","convention_language":true,"id":null},{"lang":"German","names":"Eskimobrachvogel, Eskimo-Brachvogel","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo boreale","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito polar, Zarapito esquimal, Chorlito esquimal, Zarapito boreal, Chorlo polar","convention_language":true,"id":null},{"lang":"Swedish","names":"eskimåspov","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"extinct (?)","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"extinct (?)","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"extinct (?)","country_references":"Anon. 1995. Lista de las aves de Bolivia. Asociación Armonía. Santa Cruz, Bolivia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"extinct (?)","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.; Gratto-Trevor, C. L. 2001. Current status of the Eskimo Curlew in Canada. Bird Trends: 8: 44-45.","id":null},{"name":"Chile","country":"Chile","tags_list":"extinct (?)","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"extinct (?)","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"extinct (?)","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"extinct (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11361,"full_name":"Anas undulata","author_year":"Dubois, 1839","common_names":[{"lang":"English","names":"Yellow-billed Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade picolimón","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11363,"full_name":"Phalacrocorax neglectus","author_year":"(Wahlberg, 1855)","common_names":[{"lang":"English","names":"Bank Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran des bancs","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán de Bajío","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Graculus neglectus","author_year":"Wahlberg, 1855"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11364,"full_name":"Charadrius marginatus","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"White-fronted Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à front blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo frentiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius alexandrinus marginatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11365,"full_name":"Phoebastria irrorata","author_year":"(Salvin, 1883)","common_names":[{"lang":"English","names":"Waved Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros des Galapagos","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de las Galápagos","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea irrorata","author_year":"Salvin, 1883 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea irrorata\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11366,"full_name":"Neophocaena phocaenoides","author_year":"(G. Cuvier, 1829)","common_names":[{"lang":"English","names":"Finless Porpoise, Black Finless Porpoise, Finless Black Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin sans nageoires, Marsouin aptère","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa negra","convention_language":true,"id":null},{"lang":"Swedish","names":"fenlös tumlare, asiatisk tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768–774.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Neophocaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11367,"full_name":"Charadrius falklandicus","author_year":"Latham, 1790","common_names":[{"lang":"English","names":"Two-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier des Falkland","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo Malvinero","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11368,"full_name":"Numenius tahitiensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Bristle-thighed Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis d'Alaska","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito del Pacífico","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennerley, P. R. and Bishop, K. D. 2001. Bristle-thighed Curlew \u003Ci\u003ENumenius tahitiensis\u003C/i\u003E on Manus, Admiralty Islands, Papua New Guinea. Stilt: 38: 54-55.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Scolopax tahitiensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11369,"full_name":"Phocoena spinipinnis","author_year":"Burmeister, 1865","common_names":[{"lang":"English","names":"Burmeister's Porpoise, Black Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Burmeister","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa espinosa","convention_language":true,"id":null},{"lang":"Swedish","names":"svart tumlare, sydamerikansk tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11370,"full_name":"Sarothrura ayresi","author_year":"(Gurney, 1877)","common_names":[{"lang":"English","names":"White-winged Flufftail, White-winged Crake","convention_language":true,"id":null},{"lang":"French","names":"Râle à miroir","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela especulada","convention_language":true,"id":null}],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Coturnicops ayresi","author_year":"Gurney, 1877"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11371,"full_name":"Aythya valisineria","author_year":"(Wilson, 1814)","common_names":[{"lang":"English","names":"Canvasback","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à dos blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón coacoxtle","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas valisineria","author_year":"Wilson, 1814"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11372,"full_name":"Threskiornis aethiopicus","author_year":"(Latham, 1790)","common_names":[{"lang":"Danish","names":"Hellig Ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Heilige Ibis","convention_language":false,"id":null},{"lang":"English","names":"African Sacred Ibis, Sacred Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Pyhäiibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis sacré","convention_language":true,"id":null},{"lang":"German","names":"Heiliger Ibis","convention_language":false,"id":null},{"lang":"Italian","names":"Ibis sacro","convention_language":false,"id":null},{"lang":"Spanish","names":"Ibis sagrado","convention_language":true,"id":null},{"lang":"Swedish","names":"helig ibis","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fremont, J. Y. 1995. [\u003Ci\u003EThreskiornis aethiopicus\u003C/i\u003E, a new breeding species for France.]. Ornithos: 2: 44-45.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; McLellan-Davidson, M.E. 1934. The Templeton Crocker expedition to Western Polynesian and Melanesian islands, 1933. Proceedings of the California academy of sciences: 21(16): 189-198.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Threskiornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Sub-Saharan Africa and Southwest Asia (Iran/Iraq) populations.\r\nFormerly listed as \u003Ci\u003EThreskiornis aethiopicus aethiopicus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11373,"full_name":"Diomedea amsterdamensis","author_year":"Roux, Jouventin, Mougin, Stahl \u0026 Weimerskirch, 1983","common_names":[{"lang":"English","names":"Amsterdam Island Albatross, Amsterdam Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros d'Amsterdam","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de la Amsterdam","convention_language":true,"id":null}],"distributions":[{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11374,"full_name":"Cervus elaphus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Dreri","convention_language":false,"id":null},{"lang":"Croatian","names":"Jelen","convention_language":false,"id":null},{"lang":"Czech","names":"Jelen lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Krondyr","convention_language":false,"id":null},{"lang":"English","names":"Elk, Red Deer, Wapiti","convention_language":true,"id":null},{"lang":"Estonian","names":"Punahirv","convention_language":false,"id":null},{"lang":"Finnish","names":"Saksanhirvi","convention_language":false,"id":null},{"lang":"French","names":"Cerf élaphe","convention_language":true,"id":null},{"lang":"German","names":"Rothirsch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gímszarvas","convention_language":false,"id":null},{"lang":"Icelandic","names":"Krónhjörtur","convention_language":false,"id":null},{"lang":"Italian","names":"Cervo nobile","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Taurusis elnias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hjort","convention_language":false,"id":null},{"lang":"Portuguese","names":"Veado","convention_language":false,"id":null},{"lang":"Romanian","names":"Cerb-nobil","convention_language":false,"id":null},{"lang":"Spanish","names":"Ciervo rojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kronhjort","convention_language":false,"id":null},{"lang":"Turkish","names":"Ulugeyik","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"","id":null},{"name":"Albania","country":"Albania","tags_list":"extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"introduced","country_references":"","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"extinct,reintroduced","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"extinct","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"introduced","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Mammals of Serbia - checklist. http://www.wild-serbia.com/pdf/Sisari\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bhat, B.A., Shah, G.M., Jan, U., Ahangar, F.A. and Fazili, M.F. 2009. Observations on rutting behaviour of Hangul Deer \u003Ci\u003ECervus elaphus hanglu\u003C/i\u003E (Cetartiodactyla: Cervidae) in Dachigam National Park, Kashmir, India. Journal of Threatened Taxa: 1: 355-357.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"reintroduced,extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"introduced","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"introduced","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct,reintroduced","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Cervidae","genus_name":"Cervus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Populations in Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan, Uzbekistan and Afghanistan. Formerly listed as \u003Ci\u003ECervus elaphus bactrianus\u003C/i\u003E. ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Populations in Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan, Uzbekistan and Afghanistan. Formerly listed as \u003Ci\u003ECervus elaphus bactrianus\u003C/i\u003E. ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11375,"full_name":"Numenius americanus","author_year":"Bechstein, 1812","common_names":[{"lang":"English","names":"Long-billed Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito Americano","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11376,"full_name":"Miniopterus schreibersii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Danish","names":"Schreibers Flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Schreiber's vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Schreiber's Long-fingered Bat, Common Long-fingered Bat, Common Bentwing Bat","convention_language":true,"id":null},{"lang":"Italian","names":"Minioterro","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de cueva","convention_language":true,"id":null},{"lang":"Swedish","names":"Schreibers fladdermus, vikvingad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Churchill, S. 1998. Australian bats. Reed New Holland. Sydney.; Dwyer, P. D. 1969. Population ranges of \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E (Chiroptera) in south-eastern Australia. Australian Journal of Zoology: 17: 665-686.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Monadjem, A. 2000. Checklist of mammals of Swaziland. http://www.sntc.org.sz/checklst/sdmamchk.html . ","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Metcalfe, K., Ffrench-Constant, R. and Gordon, I. 2010. Sacred sites as hotspots for biodiversity: the Three Sisters Cave complex in coastal Kenya. Oryx: 44: 118-123.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Robinson, M. F. and Webber, M. 2000. Survey of bats (Mammalia: Chiroptera) in the Khammouan Limestone National Biodiversity Conservation Area, Lao P.D.R. Natural History Bulletin of the Siam Society: 48: 21-45.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Lopes, F. J. and Crawford-Cabral, J. 1992. Catalogo dos Chiroptera em coleccao no Centro de Zoologia. Garcia de Orta, Ser. Zool.: 17: 1-20.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Bonaccorso, F. J. 1998. Bats of Papua New Guinea. Conservation International. Washington, D.C.; Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Esselstyn, J. A., Widmann, P. and Heaney, L. R. 2004. The mammals of Palawan Island, Philippines. Proceedings of the Biological Society of Washington: 117(3): 271-302; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Heaney, L. R., Balete, D. S., Rickart, E. A., Utzurrum, R. C. B. and Gonzales, P. C. 1999. Mammalian diversity on Mount Isarog, a threatened center of endemism on southern Luzon Island, Philippines. Fieldiana Zoology: 95: 62.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ingle, N. R. and Heaney, L. R. 1992. A key to the bats of the Philippine islands. Fieldiana Zoology: 69: 44 pp.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Haitlinger, R. and Ruprecht, A. L. 1985. Arthropods collected from Kujawian bats (Acari and Siphonaptera). Polskie Pismo ent.: 55: 615-618.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Baeten, B. B., van Cakenberghe, V. and de Vree, F. 1984. An annotated inventory of a collection of bats from Rwanda. Revue de Zoologie Africaines: 98: 183-196.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Flannery, T. 1995. Mammals of the South-West Pacific \u0026 Moluccan Islands. Reed Books. Chatswood, NSW, Australia.; Hill, J. E. 1956. The mammals of Rennell Island. The Natural History of Rennell Island Danish Science Press. Copenhagen.; Hill, J.E. 1968. Notes on mammals from the Islands of Rennell and Bellona. The Natural History of Rennell Island, British Solomon Islands. Scientific Results of The Danish Rennell Expedition, 1951 and the British Museum (Natural History) Expedition 1953 Danish Science Press, Ltd. Copenhagen. 5: 53-60.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kuznetsov, G. V. and Rozhnov, V. V. 1998. [Mammals of the mountain region of Sa Pa and Fan Si Pan: biodiversity and problems of their conservation]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre. Moscow and Hanoi.; Nguyen Quang, P. and Voisin, J.-F. 2001. Bats and rodents in swiftlet caves in Vietnam (Chiroptera and Rodentia). Mammalia: 65: 253-258.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nader, I. A. and Kock, D. 1987. First record of \u003Ci\u003EMiniopterus schreibersi\u003C/i\u003E (Kuhl 1819) (Mammalia: Chiroptera) from North Yemen with zoogeographical relationship evidenced by wing mites (Acarina: Spinturnicidae). Sencken. Biol.: 67: 225-229.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Miniopterus haradai","author_year":"Maeda, 1982"},{"full_name":"Miniopterus oceanensis","author_year":"Maeda, 1982"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only African and European populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11377,"full_name":"Thalassarche chlororhynchos","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Gulnæbbet Albatros","convention_language":false,"id":null},{"lang":"English","names":"Yellow-nosed Albatross, Atlantic Yellow-nosed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à nez jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros clororrinco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1989. Notes on some birds of northeastern Brazil (4). Bulletin of the British Ornithologists' Club: 109: 152-157.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea chlororhynchos","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea chlororhynchos\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11378,"full_name":"Aythya collaris","author_year":"(Donovan, 1809)","common_names":[{"lang":"Danish","names":"Halsbåndtroldand","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Kuifeend, Ringsnaveleend","convention_language":false,"id":null},{"lang":"English","names":"Ring-necked Duck","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à bec cerclé, Fuligule à collier","convention_language":true,"id":null},{"lang":"Polish","names":"Czernica ameryka","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón acollarado","convention_language":true,"id":null},{"lang":"Swedish","names":"ringand","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mlodinow, S. G. 2007. First records of Great Frigatebird (\u003Ci\u003EFregata minor\u003C/i\u003E), Ring-necked Duck (\u003Ci\u003EAythya collaris\u003C/i\u003E), Greater Ani (\u003Ci\u003ECrotophaga major\u003C/i\u003E), Red-eyed Vireo (\u003Ci\u003EVireo olivaceus\u003C/i\u003E), and Indigo Bunting (\u003Ci\u003EPasserina cyanea\u003C/i\u003E) for Aruba, with notes on other significant sightings Journal of Caribbean Ornithology: 19: 31.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas collaris","author_year":"Donovan, 1809"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11379,"full_name":"Phocoenoides dalli","author_year":"(True, 1885)","common_names":[{"lang":"English","names":"Dall's Porpoise, White-flanked Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Dall","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa de Dall","convention_language":true,"id":null},{"lang":"Swedish","names":"Dalls tumlare, Trues tumlare, stillahavstumlare","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoenoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11380,"full_name":"Limnodromus scolopaceus","author_year":"(Say, 1823)","common_names":[{"lang":"Danish","names":"Langnæbbet Sneppeklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Grijze Snip","convention_language":false,"id":null},{"lang":"English","names":"Long-billed Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta escolopácea","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Holt, P. 1999. Long-billed Dowitcher Limnodromus scolopaceus at Bharatpur, Rajasthan, India: a new species for the Indian subcontinent. Forktail: 15: 95-96.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Limnodromus griseus scolopaceus","author_year":"(Gmelin, 1789)"},{"full_name":"Limosa scolopacea","author_year":"Say, 1823"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11381,"full_name":"Eubalaena glacialis","author_year":"(P.L.S. Müller, 1776)","common_names":[{"lang":"English","names":"Black Right Whale, Northern Right Whale, Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine franche, Baleine de Biscaye, Baleine des Basques","convention_language":true,"id":null},{"lang":"Norwegian","names":"Nordkaper","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena, Ballenga, Ballena franca del Norte","convention_language":true,"id":null},{"lang":"Swedish","names":"biskayaval, stillahavsrätval, nordvästkapare, nordkapare","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"de Smet, W. M. A. 1974. Inventaris van de walvisachtigen (Cetacea) van de Vlaamse kust en de Schelde. Bulletin Inst. r. Sci. nat. Belg. (Biol.): 50: 1-156.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hamilton, P.K. and Cooper, L.A. 2010. Changes in North Atlantic right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) cow-calf association times and use of the calving ground: 1993-2005. Marine Mammal Science: 26: 896-916.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Mellinger, D.K., Nieukirk, S.L., Klinck, K., Klinck, H., Dziak, R.P. and Phillip, J. 2011. Confirmation of right whales near a nineteenth-century whaling ground east of southern Greenland. \u003Ci\u003EBiology Letters\u003C/i\u003E: 7: 411–413.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Martin and Walker. 1997. Sighting of a right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) with calf off S.W. Portugal. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 13(1): 139–140.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Best, P. B. and Roscoe, M. J. 1974. Survey of right whales off South Africa, 1972, with observations from Tristan da Cunha, 1971-72. Report int. Commn Whal.: 24: 136-141.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Clark, C.W., Brown, M.W. and Corkeron, P. 2010. Visual and acoustic surveys for North Atlantic right whales, \u003Ci\u003EEubalaena glacialis\u003C/i\u003E, in Cape Cod Bay, Massachusetts, 2001-2005: Management implications. Marine Mammal Science: 26: 837-854.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hamilton, P.K. and Cooper, L.A. 2010. Changes in North Atlantic right whale (\u003Ci\u003EEubalaena glacialis\u003C/i\u003E) cow-calf association times and use of the calving ground: 1993-2005. Marine Mammal Science: 26: 896-916.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"North Atlantic. Initially listed as \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also as \u003Ci\u003EBalaena glacialis glacialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11382,"full_name":"Turdus boulboul","author_year":"(Latham, 1790)","common_names":[{"lang":"English","names":"Grey-winged Blackbird","convention_language":true,"id":null},{"lang":"French","names":"Merle à ailes grises","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11383,"full_name":"Falco vespertinus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Czech","names":"Poštolka rudonohá","convention_language":false,"id":null},{"lang":"Danish","names":"Aftenfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodpootvalk","convention_language":false,"id":null},{"lang":"English","names":"Red-footed Falcon, Western Red-footed Falcon","convention_language":true,"id":null},{"lang":"Finnish","names":"Punajalkahaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon kobez","convention_language":true,"id":null},{"lang":"German","names":"Rotfußfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kék vércse","convention_language":false,"id":null},{"lang":"Italian","names":"Falco cuculo","convention_language":false,"id":null},{"lang":"Polish","names":"Kobczyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-pés-vermelhos","convention_language":false,"id":null},{"lang":"Spanish","names":"Cernícalo Patirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Aftonfalk","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. 1997. Western Red-footed Falcon \u003Ci\u003EFalco vespertinus\u003C/i\u003E, a new addition to the Republic of Benin list. Malimbus: 19: 95-96.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Purger, J.J. 2001. Defence behaviour of red-footed falcons \u003Ci\u003EFalco vespertinus\u003C/i\u003E in the breeding period and effects of disturbance on breeding success. Ornis Fennica: 78: 13-21.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.; Mikkola, A. and Mikkola, H. 2002. First record of Red-footed Falcon \u003Ci\u003EFalco vespertinus\u003C/i\u003E in The Gambia. Bulletin of the African Bird Club: 9: 45.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11384,"full_name":"Locustella naevia","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Danish","names":"Græshoppesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Common Grasshopper-Warbler, Grasshopper Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensassirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle tachetée","convention_language":true,"id":null},{"lang":"German","names":"Feldschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie macchiettato","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-malhada","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovenny Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Pintoja","convention_language":true,"id":null},{"lang":"Swedish","names":"Gräshoppsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Kainady, P. V. G. and Al-Joborae, P. F. M. 1975. Two additions to the Iraqi avifauna. Bull. Basrah Nat. Hist. Mus.: 2: 51-54.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Saghier, O. and Porter, R. F. 1997. The first Grasshopper Warbler Locustella naevia in Yemen. Sandgrouse: 19: 150.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11385,"full_name":"Acrocephalus dumetorum","author_year":"Blyth, 1849","common_names":[{"lang":"Danish","names":"Buskrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Struikrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Blyth's Reed-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viitakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle des buissons","convention_language":true,"id":null},{"lang":"German","names":"Buschrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola di Blyth, Carricero de Blyth","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-moitas","convention_language":false,"id":null},{"lang":"Spanish","names":"Cannaiola di Blyth, Carricero de Blyth","convention_language":true,"id":null},{"lang":"Swedish","names":"Busksångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Denkinger, J. 1997. First record of a Blyth's Reed Warbler \u003Ci\u003EAcrocephalus dumetorum\u003C/i\u003E in Switzerland. Ornithol. Beob.: 94: 257-260.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11386,"full_name":"Zoothera dixoni","author_year":"(Seebohm, 1881)","common_names":[{"lang":"English","names":"Long-tailed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Dixon","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11387,"full_name":"Myotis dasycneme","author_year":"(Boie, 1825)","common_names":[{"lang":"Danish","names":"Damflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Meervleermuis","convention_language":false,"id":null},{"lang":"English","names":"Pond Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Tiigilendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Lampisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin des marais, Vespertilion des marais","convention_language":true,"id":null},{"lang":"German","names":"Teichfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tavi denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Tjarnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio dasicneme","convention_language":false,"id":null},{"lang":"Norwegian","names":"Damflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"nocek lydkowlosy","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-iaz","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago lagunero","convention_language":true,"id":null},{"lang":"Swedish","names":"Dammfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Husson, A. M. 1962. The bats of Suriname. Zoologische Verhandelingen: 58: 282 pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Dykyj, I. 1999. [Find of the pond bat (\u003Ci\u003EMyotis dasycneme\u003C/i\u003E) on the territory of Western Ukraine.]. Vestnik Zoologii: 33: 20.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis surinamensis","author_year":"Husson, 1962"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11388,"full_name":"Myotis punicus","author_year":"Felten, Spitzenberger \u0026 Storch, 1977","common_names":[{"lang":"English","names":"Felten's Myotis, Maghrebian Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. 1983. Occurrence and zoogeographical implications of \u003Ci\u003EMyotis blythi\u003C/i\u003E (Tomes, 1857) in Libya. Mammalia: 47: 429-430.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"EUROBATS"}]},{"id":11389,"full_name":"Phylloscopus armandii","author_year":"(Milne-Edwards, 1865)","common_names":[{"lang":"English","names":"Yellow-streaked Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Milne-Edwards","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1995. Yellow-streaked Warbler: the first records for Hong Kong. Hong Kong Bird Report 1995 : 123-126.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11390,"full_name":"Chlidonias leucopterus","author_year":"(Temminck, 1815)","common_names":[{"lang":"Dutch","names":"Witvleugelstern","convention_language":false,"id":null},{"lang":"English","names":"White-winged Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkosiipitiira","convention_language":false,"id":null},{"lang":"French","names":"Guifette leucoptère","convention_language":true,"id":null},{"lang":"German","names":"Weißflügel-Seeschwalbe","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattino alibianche","convention_language":false,"id":null},{"lang":"Polish","names":"rybitwa bialoskrzydla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-d'asa-branca","convention_language":false,"id":null},{"lang":"Spanish","names":"Fumarel Aliblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitvingad tärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11391,"full_name":"Otaria flavescens","author_year":"(Shaw, 1800)","common_names":[{"lang":"English","names":"Southern Sealion, South American Sealion","convention_language":true,"id":null},{"lang":"French","names":"Lion de mer d'Amérique du Sud","convention_language":true,"id":null},{"lang":"German","names":"Südamerikanischer Seelöwe","convention_language":false,"id":null},{"lang":"Spanish","names":"Léon marino sudamericano","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Otariidae","genus_name":"Otaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Otaria byronia","author_year":"(de Blainville, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11392,"full_name":"Anas flavirostris","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Yellow-billed Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle tachetée","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta barcina","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11393,"full_name":"Vanellus melanopterus","author_year":"(Cretzschmar, 1829)","common_names":[{"lang":"English","names":"Black-winged Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à ailes noires","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría lugubroide","convention_language":true,"id":null}],"distributions":[{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius melanopterus","author_year":"Cretzschmar, 1829"},{"full_name":"Stephanibyx melanopterus","author_year":"(Cretzschmar, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11394,"full_name":"Morus capensis","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"English","names":"Cape Gannet","convention_language":true,"id":null},{"lang":"French","names":"Fou du Cap","convention_language":true,"id":null},{"lang":"Spanish","names":"Alcatraz del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bergkamp, P. Y. 1995. First record of Cape Gannet Sula capensis for Argentina. Bulletin of the British Ornithologists' Club: 115: 71.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Ramírez Llorens, P. 1996. \u003Ci\u003ESula capensis\u003C/i\u003E en el Canal Beagle, Argentina. El Hornero: 14: 67-68.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Belton, W. 1984. Birds of Rio Grande do Sul, Brazil, part 1: Rheidae through Furnariidae. Bulletin of the American Museum of Natural History: 178: .; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, H. 2004. The first Cape Gannet \u003Ci\u003ESula capensis\u003C/i\u003E in Oman and the Middle East. Sandgrouse: 26: 146-148.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"García-Godos, I. 2002. First record of the Cape Gannet \u003Ci\u003EMorus capensis\u003C/i\u003E for Peru and the Pacific Ocean. Marine Ornithology: 30: 50.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Morus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Dysporus capensis","author_year":"Lichtenstein, 1823"},{"full_name":"Sula capensis","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11395,"full_name":"Phylloscopus magnirostris","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Large-billed Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à gros bec","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11396,"full_name":"Gorilla gorilla","author_year":"(Savage, 1847)","common_names":[{"lang":"English","names":"Western Gorilla, Gorilla","convention_language":true,"id":null},{"lang":"Finnish","names":"Gorilla","convention_language":false,"id":null},{"lang":"French","names":"Gorille","convention_language":true,"id":null},{"lang":"German","names":"Gorilla","convention_language":false,"id":null},{"lang":"Italian","names":"Gorilla","convention_language":false,"id":null},{"lang":"Spanish","names":"Gorila","convention_language":true,"id":null},{"lang":"Swedish","names":"gorilla, bergsgorilla, låglandsgorilla","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Huntley, B. J. 1974. Outlines of wildlife conservation in Angola. Journal of the Southern African Wildlife Management Association: 4: 157-166.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bützler, W. 1980. Présence et répartition des gorilles, \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E (Savage and Wyman, 1847) au Cameroun. Säugetierkundliche Mitteilungen: 28: 67-79.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Ferriss, S. 2005. Western gorilla (\u003Ci\u003EGorilla gorilla\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Grzimek, B. 1978. Kameruns Urwald ist die Heimat der Gorillas. Das Tier 12: 16-19, 40-41.; IUCN. 1996. African Primates. Status Survey and Conservation Action Plan. Revised edition. IUCN. Gland, Switzerland.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Poulsen, J. R., Clark, C. J., Smith, T. B. 2001. Seed dispersal by a diurnal primate community in the Dja Reserve, Cameroon. Journal of Tropical Ecology: 17: 787-808; Prescott, H. J., Rapley, W. A., Mengang Mewondo, J. 1994. Status and conservation of Chimpanzees and Gorillas in Cameroon. Report of the Jardin Zoologique du Quebec and Metro Toronto Zoo Joint Expedition . ; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1986. Status of the Lowland Gorilla and other wildlife in the Dzanga-Sangha region of southwestern Central African Republic. Primate Conservation: 7: 38-41.; Remis, M. J. 2000. Preliminary assessment of the impacts of human activities on gorillas \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E and other wildlife at Dzanga-Sangha Reserve, Central African Republic. Oryx: 34: 55-65.; Spinage, C. A. 1980. Gorillas in the Central African Republic. Unpublished . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Aveling, C. and Aveling, R. 1989. Gorilla conservation in Zaire. Oryx: 23: 64-70.; Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.; Murnyak, D. F. 1981. Censusing the Gorillas in Kahuzi-Biega National Park. Biological Conservation: 21: 163-176.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Sholley, C. 1989. Being friends. BBC Wildlife: 7: 642-646.; Yamagiwa, J., Mwanga, N., Spangenberg, A., Maruhashii, T., Yumoto, T., Fischer, A. and Steinhauer-Burkart, B. 1993. A census of the eastern Lowland Gorilla \u003Ci\u003EGorilla gorilla graueri\u003C/i\u003E in Kajuzi-Biega National Park with reference to Mountain Gorillas \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E in the Virunga region, Zaire. Biological Conservation: 64: 83-89.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Sabater Pi, J. 1981. Exploitation of Gorillas \u003Ci\u003EGorilla gorilla gorilla\u003C/i\u003E Savage and Wyman 1847 in Rio Muni, Republic of Equatorial Guinea, West Africa. Biological Conservation: 19: 131-140.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Tutin, C. E. G. and Fernandez, M. 1984. Nationwide census of Gorilla (\u003Ci\u003EGorilla g. gorilla\u003C/i\u003E) and Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E) populations in Gabon. American Journal of Primatology: 6: 313-336.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Gartlan, J. S. 1980. Conservation status of western Gorillas. ; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Harcourt, A. H., Stewart, K. J. and Inahoro, I. M. 1989. Gorilla question in Nigeria. Oryx: 23: 7-13.; Harcourt, A. H., Stewert, K. J. and Ahoro, I. M. 1989. Nigeria's Gorillas, a survey and recommendations. Primate Conservation: 10: 73-76.; March, E.W. 1957. Gorillas of eastern Nigeria. Oryx: 4: 30-34.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Gorilla","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Gorilla Agreement"}]},{"id":11397,"full_name":"Mesoplodon bidens","author_year":"(Sowerby, 1804)","common_names":[{"lang":"English","names":"Sowerby's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Sowerby","convention_language":true,"id":null},{"lang":"Norwegian","names":"Spisshval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena de pico de Sowerby","convention_language":true,"id":null},{"lang":"Swedish","names":"nordsjönäbbval, Sowerbys näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Kükenthal, W. 1914. Zur kentiss des \u003Ci\u003EMesoplodon bidens\u003C/i\u003E (Sow.). \u003Ci\u003EJenaische Zeitschrift fur Naturwissenschaft\u003C/i\u003E: 51:93-122; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"MacLeod, C.D. 2000. Review of the distribution of Mesoplodon species (order Cetacea, family Ziphiidae) in the North Atlantic. \u003Ci\u003EMammal Review\u003C/i\u003E: 30(1): 1–8.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Koepcke, H.W. 1936. Ein zweiter Fund von \u003Ci\u003EMesoplodon bidens\u003C/i\u003E (Sow.) an der deutschen Ostseeküste. \u003Ci\u003EZoologischer Anzeiger\u003C/i\u003E: 13: 157-158.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Pereira, J.N., Neves, V.C., Prieto, R., Silva, M. a., Cascão, I., Oliveira, C., Cruz, M.J., Medeiros, J.V., Barreiros, J.P., Porteiro, F.M. et al. 2011. Diet of mid-Atlantic Sowerby’s beaked whales \u003Ci\u003EMesoplondon bidens\u003C/i\u003E. \u003Ci\u003EDeep Sea Research Part I: Oceanographic Research Papers\u003C/i\u003E: 58(11): 1084–1090.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11398,"full_name":"Thalasseus sandvicensis","author_year":"Latham, 1787","common_names":[{"lang":"Czech","names":"Rybák severní","convention_language":false,"id":null},{"lang":"Danish","names":"Splitterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Stern","convention_language":false,"id":null},{"lang":"English","names":"Sandwich Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Riuttatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne caugek","convention_language":true,"id":null},{"lang":"German","names":"Brandseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kenti csér","convention_language":false,"id":null},{"lang":"Italian","names":"Beccapesci","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa czubata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garajau-commun, Garajau-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán patinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Kentsk tärna","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna eurygnatha","author_year":"Saunders, 1876"},{"full_name":"Sterna sandvicensis","author_year":"Latham, 1787 "},{"full_name":"Thalasseus eurygnatha","author_year":"(Saunders, 1876)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna sandvicensis sandvicensis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11401,"full_name":"Lophodytes cucullatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Hooded Merganser","convention_language":true,"id":null},{"lang":"French","names":"Harle couronné","convention_language":true,"id":null},{"lang":"Spanish","names":"Serreta capuchona","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. L. 1997. West Indies Region. Field Notes: 51: 809-810.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Lophodytes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Mergus cucullatus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11402,"full_name":"Eidolon helvum","author_year":"(Kerr, 1792)","common_names":[{"lang":"English","names":"Straw-coloured Fruit Bat","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Feiler, A. 1986. Zur Faunistik und Biometrie angolanischer Fledermause (Mammalia, Mega- et Microchiroptera). Zoologische Abhandlungen st. Mus. Tierk., Dresden: 42: 65-77.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Robbins, C. B. 1980. Small mammals of Togo and Benin. 1. Chiroptera. Mammalia: 44: 83-88.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Koch-Weser, S. 1984. Fledermäuse aus Obervolta, W-Afrika. Senckenbergiana Biologica: 64: 255-311.; Koopman, K. F., Mumford, R. E. and Heisterberg, J. F. 1978. Bat records from Upper Volta, West Africa. American Museum Novitates: 2643: 6 pp.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Kock, D. 1981. Zur Chiropteran-fauna von Burundi (Mammalia). Senckenbergiana Biologica: 61: 329-336.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Schlitter, D. A., Robbins, L. W. and Buchanan, S. A. 1982. Bats of the Central African Republic (Mammalia: Chiroptera). Annals of Carnegie Museum: 51: 133-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Vielliard, J. 1974. Les cheiroptères du Tchad. Revue Suisse de Zoologie: 81: 975-991.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J., Harrison, D. L. and Granjon, L. 1991. Bats (Chiroptera) from the Mayombe and lower Kouilou (with a checklist for Congo). Tauraco Research Report: 4: 251-263.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Cabrera, A. 1929. Catalogo descriptivo de los mamiferos de la Guinea Espanola. Memorias de la Sociedad Espagnol de Historia Natural, Madrid: 16: 1-121.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Kock, D., Barnett, L., Fahr, J. and Emms, C. 2002. On a collection of bats (Mammalia: Chiroptera) from The Gambia. Acta Chiropterologica: 4: 77-97.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Bergmans, W. and Van Strien, N. 2004. Systematic notes on a collection of bats from Malawi. I. Megachiroptera: Epomophorinae and Rousettinae (Mammalia, Chiroptera). Acta Chiropterologica: 6: 249-268.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Meinig, H. 2000. Notes on the mammal fauna of the southern part of the Republic of Mali, West Africa. Bonner Zoologische Beiträge: 49: 100-114.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Cosson, J. F., Tranier, M. and Colas, F. 1996. On the occurrence and possible migratory behaviour of the fruit bat \u003Ci\u003EEidolon helvum\u003C/i\u003E in Mauritania, Africa. Journal of African Zoology: 110: 369-371.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Kock, D. 1978. Vergleichende Untersuchung einiger Säugetiere im südlichen Niger (Mammalia: Insectivora, Chiroptera, Lagomorpha, Rodentia). Senckenbergiana biol.: 58: 113-136.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Snowden, P., Bates, P. J. J., Harrison, D. L. and Brown, M. R. 2000. Recent records of bats and rodents from Oman, including three species new to the country. Fauna of Arabia: 18: 397-407.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Feiler, A. 1988. Die Säugetiere der inseln im Golf von Guinea. Zoologische Abhandlungen staatliche Museum für Tierkunde Dresden: 44: 83-88.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Nader, I. A. 1985. First record of \u003Ci\u003EEidolon helvum sabaeum\u003C/i\u003E (K. Andersen, 1907) for the Kingdom of Saudi Arabia (Chiroptera: Pteropodidae). Mammalia: 49: 429-431.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Pteropodidae","genus_name":"Eidolon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/2001","short_note_en":null,"full_note_en":"Only African populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11404,"full_name":"Catharus guttatus","author_year":"(Pallas, 1811)","common_names":[{"lang":"Dutch","names":"Heremietlijster","convention_language":false,"id":null},{"lang":"English","names":"Hermit Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive solitaire","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Wallace, G. E., Wallace, E. A. H., Froehlich, D. R., Kirkconnell, A., Torres, E. S., Carlisle, H. and Machell, E. 1999. Hermit Thrush and Black-throated Grey Warbler, new for Cuba, and other significant bird records from Cayo Coco and vicinity, Ciego de Avila province, Cuba. Florida Field Naturalist: 27: 37-51.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.; Styles, M. and Styles, C. 1999. Hermit Thrush \u003Ci\u003ECatharus guttatus\u003C/i\u003E in County Cork: a species new to Ireland. Irish Birds: 6: 426-427.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Erickson, R. A. and Wurster, T. E. 1998. Confirmation of nesting in Mexico for four bird species from the Sierra San Pedro Mártir, Baja California. Wilson Bulletin: 110: 118-120.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11405,"full_name":"Anas rubripes","author_year":"Brewster, 1902","common_names":[{"lang":"Danish","names":"Sortbrun And","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Eend","convention_language":false,"id":null},{"lang":"English","names":"American Black Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard noir, Canard noirâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade sombrío","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas obscura rubripes","author_year":"Brewster, 1902"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11407,"full_name":"Stenella coeruleoalba","author_year":"(Meyen, 1833)","common_names":[{"lang":"English","names":"Striped Dolphin, Euphrosyne Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin bleu et blanc, Dauphin rayé","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín blanco y azul","convention_language":true,"id":null},{"lang":"Swedish","names":"eufrosynedelfin, strimmig delfin, blåvit delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"van Gompel, J. 1982. [Sea mammals on the Belgian coast in 1981, with a description of the first record of a striped dolphin for Belgium (\u003Ci\u003EStenella coeruleoalba\u003C/i\u003E).]. Wielewaal: 48: 263-266.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinedo, M. C. and Castello, H. P. 1980. Primeiros registros dos golfinhos \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, \u003Ci\u003EStenella\u003C/i\u003E cfr. \u003Ci\u003Eplagiodon\u003C/i\u003E e \u003Ci\u003ESteno bredanensis\u003C/i\u003Epara o sul do Brasil, com notas osteologicas. Boletim Inst. Oceanogr. S. Paulo: 29: 313-317.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Kinze, C. C., Schmidt, D. and Tougaard, S. 2000. Forste fund af stribet delfin (\u003Ci\u003EStenella coeruleoalba\u003C/i\u003E) fra den danske Skagerrak-kyst. Flora og Fauna: 106: 9-12.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goffmann, O., Roditi, M., Shariv, T., Spanier, E. and Kerem, D. 2000. Cetaceans from the Israeli coast of the Mediterranean sea. Israel journal of zoology: 46: 143-147.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Striped dolphin, \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen) in the central Mediterranean Sea: an analysis of the new data. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 201-202.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Isaksen, K. and Syvertsen, P. O. 2002. Striped dolphins, \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, in Norwegian and adjacent waters. Mammalia: 66: 33-41.; Syvertsen, P. O., van der Kooij, J. and Isaksen, K. 1999. Forekomsten av stripedelfin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E og delfin \u003Ci\u003EDelphinus delphis\u003C/i\u003E langs norskekysten. Fauna (Oslo): 52: 104-117.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Perrin, W. F., Wilson, C. E. and Archer, F. I. 1994. Striped Dolphin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E (Meyen, 1833). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Mediterranean population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical Pacific population ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11408,"full_name":"Balaenoptera borealis","author_year":"Lesson, 1828","common_names":[{"lang":"Dutch","names":"Noordse Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Sei Whale, Rudophi's Rorqual, Pollack Whale, Coalfish Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleinoptère de Rudolphi, Rorqual sei, Rorqual de Rudolphi, Rorqual boréal","convention_language":true,"id":null},{"lang":"German","names":"Seiwal","convention_language":false,"id":null},{"lang":"Norwegian","names":"Seihval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena sei, Rorcual norteno, Rorcual boreal, Ballena boba, Rorcual de Rudolphi","convention_language":true,"id":null},{"lang":"Swedish","names":"sejval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11409,"full_name":"Phoebetria palpebrata","author_year":"(Forster, 1785)","common_names":[{"lang":"English","names":"Light-mantled Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros fuligineux","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros tiznado","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Shirihai, H. 2002. A complete guide to Antarctic wildlife. The birds and marine mammals of the Antarctic continent and the Southern Ocean. Alula Press. Degerby, Finland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebetria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea palpebrata","author_year":"J. R. Forster, 1785"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11410,"full_name":"Numenius tenuirostris","author_year":"Vieillot, 1817","common_names":[{"lang":"Czech","names":"Koliha velká","convention_language":false,"id":null},{"lang":"Danish","names":"Tyndnæbbet spove","convention_language":false,"id":null},{"lang":"Dutch","names":"Dunbekwulp","convention_language":false,"id":null},{"lang":"English","names":"Slender-billed Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiankuovi, Kaitanokkakuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis à bec grêle","convention_language":true,"id":null},{"lang":"German","names":"Dünnschnabelbrachvogel, Dünnschnabel-Brachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vekonyscörü póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlottello","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik cienkodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito fino","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad spov","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Heredia, B., Rose, L. and Painter, M (eds.) 1996. Globally threatened birds in Europe: action plans. Council of Europe Publishing. Strasbourg.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gallo-Orsi, U., and Boere, G.C. 2001. The Slender-billed Curlew \u003Ci\u003ENumenius tenuirostris\u003C/i\u003E: threats and conservation. \u003Ci\u003EActa Ornithologica \u003C/i\u003E 36(1): 73-77","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Hulo, I., Horvat, F. and Sekeres, O. 2008. New data on rare breeding and migrant species [of birds] on Subotica lakes and sandy terrains (Serbia). Ciconia (Serbia and Montenegro): 14: 57-62.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gallo-Orsi, U., and Boere, G.C. 2001. The Slender-billed Curlew \u003Ci\u003ENumenius tenuirostris\u003C/i\u003E: threats and conservation. \u003Ci\u003EActa Ornithologica \u003C/i\u003E 36(1): 73-77","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Blondel, J. and Blondel, C. 1964. Remarques sur l'hivernage des limicoles et autres oiseaux aquatiques au Maroc. Alauda: 32: 250-279.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"},{"effective_from_formatted":"10/09/1994","name":"Slender-billed Curlew"}]},{"id":11411,"full_name":"Haematopus ostralegus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Strandskade","convention_language":false,"id":null},{"lang":"Dutch","names":"Scholekster","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Oystercatcher, Oystercatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Meriharakka","convention_language":false,"id":null},{"lang":"French","names":"Huîtrier pie","convention_language":true,"id":null},{"lang":"German","names":"Austernfischer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csigaforgató","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccia di mare","convention_language":false,"id":null},{"lang":"Polish","names":"Ostrygojad","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ostraceiro","convention_language":false,"id":null},{"lang":"Russian","names":"Kulik-soroka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ostrero Euroasiático","convention_language":true,"id":null},{"lang":"Swedish","names":"Strandskata","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11412,"full_name":"Ficedula tricolor","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Slaty-blue Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche bleu-ardoise","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11413,"full_name":"Glareola nuchalis","author_year":"Gray, 1849","common_names":[{"lang":"English","names":"Rock Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole auréolée","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera sombría","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11414,"full_name":"Cercotrichas galactotes","author_year":"(Temminck, 1820)","common_names":[{"lang":"Danish","names":"Trenattegal","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Waaierstaart","convention_language":false,"id":null},{"lang":"English","names":"Rufous Bush Robin, Rufous-tailed Scrub-Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Roustepyrstö, Ruostepyrstö","convention_language":false,"id":null},{"lang":"French","names":"Agrobate roux","convention_language":true,"id":null},{"lang":"German","names":"Heckensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tüskebujkáló, Tüskebujláló","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo d'Africa","convention_language":false,"id":null},{"lang":"Polish","names":"Drozdówka rdzawa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-do-mato","convention_language":false,"id":null},{"lang":"Spanish","names":"Alzacola","convention_language":true,"id":null},{"lang":"Swedish","names":"Trädnäktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ma Ming. 1999. Greater Flamingo \u003Ci\u003EPhoenicopterus ruber\u003C/i\u003E and Rufous-tailed Scrub Robin \u003Ci\u003ECercotrichas galactotes\u003C/i\u003E: two new species for China. Forktail: 15: 105-106.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cercotrichas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erythropygia galactotes","author_year":"(Temminck, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11415,"full_name":"Turdus pallidus","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Pale Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle pâle","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11416,"full_name":"Turdus feae","author_year":"(Salvadori, 1887)","common_names":[{"lang":"English","names":"Grey-sided Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle de Fea","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11417,"full_name":"Cephalorhynchus heavisidii","author_year":"(Gray, 1828)","common_names":[{"lang":"Dutch","names":"Zuidafrikaanse Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Benguela Dolphin, Heaviside's Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Heaviside","convention_language":true,"id":null},{"lang":"Spanish","names":"Tunina de Heaviside","convention_language":true,"id":null},{"lang":"Swedish","names":"bengueladelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Elwen, S.H., Reeb, D., Thornton, M. and Best, P.B. 2009. A population estimate of Heaviside’s dolphins, \u003Ci\u003ECephalorhynchus heavisidii\u003C/i\u003E, at the southern end of their range. Marine Mammal Science: 25: 107-124.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11418,"full_name":"Calidris ruficollis","author_year":"(Pallas, 1776)","common_names":[{"lang":"Danish","names":"Rødhalset Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodkeelstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Stint","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à col roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos cuellirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia ruficollis","author_year":"(Pallas, 1776)"},{"full_name":"Tringa ruficollis","author_year":"Pallas, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11419,"full_name":"Haliaeetus leucoryphus","author_year":"(Pallas, 1771)","common_names":[{"lang":"Danish","names":"Pallas Havørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Witbandzeearend","convention_language":false,"id":null},{"lang":"English","names":"Pallas's Sea-Eagle, Pallas's Fish-Eagle, Band-tailed Fish-Eagle","convention_language":true,"id":null},{"lang":"French","names":"Pygargue de Pallas","convention_language":true,"id":null},{"lang":"Polish","names":"Bielik wschodni","convention_language":false,"id":null},{"lang":"Russian","names":"Orlan-dolgokhvost","convention_language":false,"id":null},{"lang":"Spanish","names":"Pigargo de Pallas","convention_language":true,"id":null},{"lang":"Swedish","names":"bandhavsörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Sarker, S. U. and Iqbal, M. 1985. Observations on Pallas's Fish Eagle \u003Ci\u003EHaliaeetus leucoryphus\u003C/i\u003E in Bangladesh. Bulletin of the World Working Group on Birds of Prey: 2: 100-102.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mauersberger, G., Wagner, S., Wallschlager, D. and Warthold, R. 1982. Neue Daten zur Avifauna mongolica. Mitteilungen aus dem Zoologischen Museum in Berlin: 58: 11-74.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11420,"full_name":"Steganopus tricolor","author_year":"Vieillot, 1819","common_names":[{"lang":"Danish","names":"Wilsons Svømmesneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilson's Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Wilson's Phalarope","convention_language":true,"id":null},{"lang":"French","names":"Phalarope de Wilson","convention_language":true,"id":null},{"lang":"Spanish","names":"Falaropo tricolor","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rivas, F. M. 1997. Resumen de aves consideras como raras o accidentales para La República Dominicana. El Pitirre: 10: 58.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Steganopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Phalaropus tricolor","author_year":"(Vieillot, 1819)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11421,"full_name":"Ovis ammon","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Delja e eger, Dash i eger","convention_language":false,"id":null},{"lang":"Croatian","names":"Muflon","convention_language":false,"id":null},{"lang":"Czech","names":"Muflon","convention_language":false,"id":null},{"lang":"Danish","names":"Mufflon, Argali","convention_language":false,"id":null},{"lang":"Dutch","names":"Argali, Moeflon","convention_language":false,"id":null},{"lang":"English","names":"Marco Polo Sheep, Argali, Asian Wild Sheep","convention_language":true,"id":null},{"lang":"Estonian","names":"Uluklammas, Mägilammas","convention_language":false,"id":null},{"lang":"Finnish","names":"Mufloni, Argalilammas","convention_language":false,"id":null},{"lang":"French","names":"Mouflon d'Asie, Mouflon méditerranéen, Mouflon vrai, Mouflon d'Eurasie, Argali","convention_language":true,"id":null},{"lang":"German","names":"Asiatisches Wildschaf, Mufflon","convention_language":false,"id":null},{"lang":"Hungarian","names":"Muflon","convention_language":false,"id":null},{"lang":"Icelandic","names":"Múflon","convention_language":false,"id":null},{"lang":"Italian","names":"Muflone, Muflone asiatico","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Muflonas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mufflon","convention_language":false,"id":null},{"lang":"Polish","names":"Muflon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Muflão","convention_language":false,"id":null},{"lang":"Romanian","names":"Muflon","convention_language":false,"id":null},{"lang":"Slovak","names":"Muflón hôrný","convention_language":false,"id":null},{"lang":"Spanish","names":"Muflón argal, Muflón, Argalí, Muflón de Marco Polo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mufflon","convention_language":false,"id":null},{"lang":"Turkish","names":"Yaban koyunu","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Habibi, K. 1977. The mammals of Afghanistan, their distribution and status. Ministry of Agriculture. Kabul.; Naumann, C. and Niethammer, J. 1973. Zur Saügetierfauna des afghanischen Pamir und des Wakhan. Bonner Zoologische Beitrage: 24: 237-248.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"extinct","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Schaller, G. B., Li Hong Talipu, Lu Hua, Ren Junrang, Qiu Mingjiang and Wang Haibin. 1987. Status of large mammals in the Taxkorgan Reserve, Xinjiang, China. Biological Conservation: 42: 53-71.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Namgail, T., Fox, J.L. and Bhatnagar, Y.V. 2009. Status and distribution of the Near Threatened Tibetan argali \u003Ci\u003EOvis ammon hodgsoni\u003C/i\u003E in Ladakh, India: effect of a hunting ban. Oryx: 43: 288-291.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Mallon, D. P. 1985. The mammals of the Mongolian People's Republic. Mammal Review: 15: 71-102.; Reading, R.P., Kenny, D., Amgalanbaatar, S., DeNicola, A. and Wingard, G. 2009. Argali lamb (\u003Ci\u003EOvis ammon\u003C/i\u003E) morphometric measurements and survivorship in Mongolia. Mammalia: 73: 98-104.; Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Fedosenko, A. K. and Weinberg, P. J. 1999. The status of some wild sheep populations in the CIS (former USSR) and the impact of trophy hunting. Caprinae, May 1999: 1-4.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Fedosenko, A.K. and Blank, D.A. 2005. \u003Ci\u003EOvis ammon\u003C/i\u003E. Mammalian Species: 773: 1-15.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ovis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11422,"full_name":"Danaus plexippus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Monarch, Milkweed, Wanderer","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Howarth, T.G. 1962. The RHOPALOCERA of Rennell and Bellona Islands. In: Wolff, T. (ed) The Natural History of Rennell Island, British Solomon Islands Danish Science Press. Copenhagen. 4: 63-83.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrlich, P.R. 1983. Summer butterflies in Dinosaur National Monument. Journal of the Lepidopterists' Society: 37: 91-92.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Arthropoda","order_name":"Lepidoptera","class_name":"Insecta","family_name":"Nymphalidae","genus_name":"Danaus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11423,"full_name":"Acipenser ruthenus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Bulgarian","names":"Chiga","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter malý, Jeseter maly","convention_language":false,"id":null},{"lang":"Danish","names":"Sterlet","convention_language":false,"id":null},{"lang":"English","names":"Sterlet Sturgeon, Sterlet","convention_language":true,"id":null},{"lang":"Finnish","names":"Sterletti","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon de Sibérie, Sterlet","convention_language":true,"id":null},{"lang":"German","names":"Sterlett, Sterlet","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kecsege","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sterlett","convention_language":false,"id":null},{"lang":"Polish","names":"Sterlet a. czeczuga","convention_language":false,"id":null},{"lang":"Romanian","names":"Cega, Cigã","convention_language":false,"id":null},{"lang":"Russian","names":"Sterljad, Sterlyad', Sterlyad","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión de Siberia, Esterlete","convention_language":true,"id":null},{"lang":"Swedish","names":"Sterlett","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Gegic, A. P., Kuzmanovic, S.P., Sipos, M.R., Sabo, K., Ferenc, B. and Illes, F. 2006. Physiological state of fishes and changes in fish stock composition in the Tisa River on the stretch Martonos-Becej Gate in the period 2001-2005. Austrian Committee Danube Research/ IAD. Vienna. 159-162; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Freyhof, J. 2002. Freshwater fish diversity in Germany, threats and species extinction. In: Collares-Pereira, M. J., Coelho, M. M. \u0026 Cowx, I. G. Freshwater fish conservation: options for the future,. Blackwell Science Ltd. Oxford.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Repecka, R. 2003. The species composition of the ichthyofauna in the Lithuanian economic zone of the Baltic Sea and the Curonian lagoon and its changes in recent years. Acta Zoologica Lituanica: 13(2): 149-157.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Birstein, V.J. 1993. Sturgeons and paddlefishes: threatened fishes in need of conservation. Conservation Biology: 7: 773-787.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Tsyplakov, E.P. 1978. Migrations and distribution of the sterlet Acipenser ruthenus, in Kuybyshev reservoir. Journal of Ichthyology: 18: 905-912.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Kirchhofer, A. and Hefti, D. 1996. Conservation of endangered freshwater fish in Europe. Birkhauser.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Danube population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11424,"full_name":"Thalassarche melanophris","author_year":"(Temminck, 1828)","common_names":[{"lang":"Danish","names":"Sortbrynet Albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Wenkbrauwalbatros","convention_language":false,"id":null},{"lang":"English","names":"Black-browed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à sourcils noire, Albatros à sourcils noirs","convention_language":true,"id":null},{"lang":"German","names":"Schwarzbrauenalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatro sopracciglio","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros ojeroso","convention_language":true,"id":null},{"lang":"Swedish","names":"svartbrynad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea melanophris","author_year":"Temminck, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea melanophris\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11425,"full_name":"Numenius phaeopus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Koliha malá","convention_language":false,"id":null},{"lang":"Danish","names":"Småspove (Lille Regnspove)","convention_language":false,"id":null},{"lang":"Dutch","names":"Regenwulp","convention_language":false,"id":null},{"lang":"English","names":"Whimbrel","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukuovi","convention_language":false,"id":null},{"lang":"French","names":"Courlis corlieu","convention_language":true,"id":null},{"lang":"German","names":"Regenbrachvogel","convention_language":false,"id":null},{"lang":"Hungarian","names":"kis póling","convention_language":false,"id":null},{"lang":"Italian","names":"Chiurlo piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Kulik mniejszy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-galego","convention_language":false,"id":null},{"lang":"Russian","names":"Sredny Kronschnep","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito Trinador","convention_language":true,"id":null},{"lang":"Swedish","names":"Småspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax phaeopus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11426,"full_name":"Nanger dama","author_year":"(Pallas, 1766)","common_names":[{"lang":"Danish","names":"Dama gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Damagazelle","convention_language":false,"id":null},{"lang":"English","names":"Addra Gazelle, Dama Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakaulagaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle dama","convention_language":true,"id":null},{"lang":"German","names":"Damagazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazella dama","convention_language":false,"id":null},{"lang":"Swedish","names":"addra, dovhjortsgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct (?)","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Grettenberger, J. F. and Newby, J. E. 1986. The status and ecology of the Dama Gazelle in the Aïr and Ténéré National Nature Reserve, Niger. Biological Conservation: 38: 207-216.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Petrides, G. A. 1965. Advisory report on wildlife and national parks in Nigeria 1962. American Committee for International Wildlife Protection. Special publication .; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"reintroduced,extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct (?)","country_references":"East, R. 1988. Antelopes, global survey and regional action plans. Part 1. East and Northeast Africa. IUCN. Gland.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Setzer, H. W. 1956. Mammals of the Anglo-Egyptian Sudan. Proceedings of the U.S. National Museum: 106: 447-615.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Nanger","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EGazella dama\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11427,"full_name":"Turdus amaurochalinus","author_year":"Cabanis, 1850","common_names":[{"lang":"English","names":"Creamy-bellied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à ventre clair","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11428,"full_name":"Myotis nattereri","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i Nattererit","convention_language":false,"id":null},{"lang":"Croatian","names":"Resasti šišmiš","convention_language":false,"id":null},{"lang":"Danish","names":"Frynseflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Franjestaart","convention_language":false,"id":null},{"lang":"English","names":"Natterer's Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Nattereri lendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Ripsisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin de Natterer","convention_language":true,"id":null},{"lang":"German","names":"Fransenfledermaus","convention_language":false,"id":null},{"lang":"Icelandic","names":"Kögurblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio di Natterer","convention_language":false,"id":null},{"lang":"Norwegian","names":"Børsteflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Nocek Natterera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-franja","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-lui-Natterer","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier riasnatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de Natterer","convention_language":true,"id":null},{"lang":"Swedish","names":"Fransfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.; Gaisler, J. 1984. Bats of northern Algeria and their winter activity. Myotis: 21: 89-95.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Rzebik-Kowalska, B. and Nadachowski, A. 1978. Mammalogical results of 1977 Near East expedition of the Cracow Institute of Systematic and Experimental Zoology. (Abstract). 2nd Congressus Theriol. int. 124, Brno.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Atallah, S. I. 1970. Bats of the genus \u003Ci\u003EMyotis\u003C/i\u003E (Family Vespertilionidae) from Lebanon. Univ. Connecticut Occas. Pap.: 1: 205-212.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11430,"full_name":"Phaethon aethereus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rødnæbbet Tropikfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodsnavelkeerkringvogel","convention_language":false,"id":null},{"lang":"English","names":"Red-billed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à bec rouge","convention_language":true,"id":null},{"lang":"German","names":"Rotschnabel-Tropikvogel","convention_language":false,"id":null},{"lang":"Italian","names":"Fetonte","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabo-de-palha","convention_language":false,"id":null},{"lang":"Spanish","names":"Rabijunco etéreo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Vilina, V. A., González, J. L., Gibbons, J. E., Capella, J. J. and Díaz, H. 1994. The southernmost nesting place for the Red-billed Tropicbird (\u003Ci\u003EPhaethon aethereus\u003C/i\u003E): Chañaral Island, Chile. Colonial Waterbirds: 17: 83-85.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; White, C. M. N. 1965. A revised check list of African non-passerine birds. Govt Printer. Lusaka.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Blamire, S. 2004. Red-billed Tropicbird: new to Britain. British Birds: 97: 218-230.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11431,"full_name":"Stenostira scita","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Fairy Warbler, Fairy Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Mignard enchanteur","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Stenostira","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11432,"full_name":"Phalacrocorax nigrogularis","author_year":"Ogilvie-Grant \u0026 Forbes, 1899","common_names":[{"lang":"Danish","names":"Sokotraskarv","convention_language":false,"id":null},{"lang":"English","names":"Socotra Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran de Socotra","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán de Socotora","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11433,"full_name":"Acrocephalus sorghophilus","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Speckled Reed-Warbler, Streaked Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle sorghophile","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11434,"full_name":"Grus nigricollis","author_year":"Przevalski, 1876","common_names":[{"lang":"Danish","names":"Sorthalset trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarthalskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Tibetan Crane, Black-necked Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Huppukurki","convention_language":false,"id":null},{"lang":"French","names":"Grue à cou noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzhalskranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru dal collo nero","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla cuellinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"svarthalsad trana","convention_language":false,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Clements, F. A. and Bradbear, N. J. 1986. Status of wintering Black-necked Cranes \u003Ci\u003EGrus nigricollis\u003C/i\u003E in Bhutan. Forktail: 2: 103-107.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Robson, C. R. 1986. Recent observations of birds in Xizang and Qinghai provinces, China. Forktail: 2: 67-82.; Scott, D. A. 1994. The Black-necked Cranes \u003Ci\u003EGrus nigricollis\u003C/i\u003E of Puoergi Marshes, Sichuan, China. Bird Conservation International: 3: 245-259.; Wu, H., Zha, K., Zhang, M. and Yang, X. 2009. Nest site selection by Black-necked Crane \u003Ci\u003EGrus nigricollis\u003C/i\u003E in the Ruoergai Wetland, China. Bird Conservation International: 19: 277-286.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11435,"full_name":"Calidris ptilocnemis","author_year":"(Coues, 1873)","common_names":[{"lang":"English","names":"Rock Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau des Aléoutiennes","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos roquero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia ptilocnemis","author_year":"(Coues, 1873)"},{"full_name":"Tringa ptilocnemis","author_year":"Coues, 1873"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11436,"full_name":"Phylloscopus coronatus","author_year":"(Temminck \u0026 Schlegel, 1847)","common_names":[{"lang":"English","names":"Eastern Crowned Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Temminck","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11437,"full_name":"Tringa ochropus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vodouš kropenatý","convention_language":false,"id":null},{"lang":"Danish","names":"Svaleklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Witgatje","convention_language":false,"id":null},{"lang":"English","names":"Green Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Metsäviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier cul-blanc, Chevalier culblanc","convention_language":true,"id":null},{"lang":"German","names":"Waldwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Erdei cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro-piro culbianco, Piro-piro-culbianco","convention_language":false,"id":null},{"lang":"Polish","names":"Samotnik (brodziec samotny), Samotnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pássaro-bique-bique","convention_language":false,"id":null},{"lang":"Spanish","names":"Andarríos Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Skogssnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; McCrie, N. 2000. A sighting of the Green Sandpiper \u003Ci\u003ETringa ochropus\u003C/i\u003E at Darwin, Northern Territory. Australian Bird Watcher: 18: 229-232.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mauersberger, G. 1981. Anmerkungen zur Avifauna Nordkoreas. Mitt. Zool. Mus. Berlin, Suppl Ann. Orn.: 5: 15-62.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11438,"full_name":"Oenanthe isabellina","author_year":"(Temminck, 1829)","common_names":[{"lang":"Danish","names":"Isabellasstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Izabeltapuit, Isabeltapuit","convention_language":false,"id":null},{"lang":"English","names":"Isabelline Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Arotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet isabelle","convention_language":true,"id":null},{"lang":"German","names":"Isabellsteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pusztai hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Culbianco isabellino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-isabel","convention_language":false,"id":null},{"lang":"Russian","names":"Kamenka-plyasunya","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Isabel","convention_language":true,"id":null},{"lang":"Swedish","names":"Isabellastenskvätta, isabellstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Schollaeri, V. and Willem, G. 2001. The status of Isabelline Wheatear \u003Ci\u003EOenanthe isabellina\u003C/i\u003E in Morocco. Bulletin of the African Bird Club: 8: 136-137.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11439,"full_name":"Phylloscopus chloronotus","author_year":"(Gray \u0026 Gray, 1846)","common_names":[{"lang":"English","names":"Lemon-rumped Warbler, Pale-rumped Warbler, Lemon-rumped Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11440,"full_name":"Vicugna vicugna","author_year":"(Molina, 1782)","common_names":[{"lang":"Danish","names":"Vicugna","convention_language":false,"id":null},{"lang":"English","names":"Vicugna, Vicuña","convention_language":true,"id":null},{"lang":"Finnish","names":"Vikunja","convention_language":false,"id":null},{"lang":"French","names":"Vigogne","convention_language":true,"id":null},{"lang":"German","names":"Vicunja","convention_language":false,"id":null},{"lang":"Italian","names":"Vigogna","convention_language":false,"id":null},{"lang":"Spanish","names":"Vicuña","convention_language":true,"id":null},{"lang":"Swedish","names":"vikunja","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mares, M. A., Deja, R. A. and Barquez, R. M. 1989. Guide to the mammals of Salta Province, Argentina. University of Oklahoma Press.; Mares, M. A., Ojeda, R. A. and Kosco, M. P. 1981. Observations on the distribution and ecology of the mammals of Salta Province, Argentina. Annals of the Carnegie Museum: 50: 151-206.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cattan, P. E. and Glade, A. A. 1989. Management of the Vicuña \u003Ci\u003EVicugna vicugna\u003C/i\u003E in Chile: use of matrix model to assess harvest rates. Biological Conservation: 49: 131-140.; Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"reintroduced","country_references":"FAO. 2005. Situación actual de los camélidos sudamericanos en el Ecuador. http://www.rlc.fao.org/es/ganaderia/pdf/2914ecu.pdf FAO. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Camelidae","genus_name":"Vicugna","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Except Peruvian populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11441,"full_name":"Geronticus eremita","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Eremit Ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Kaalkopibis, Heremietibis","convention_language":false,"id":null},{"lang":"English","names":"Hermit Ibis, Bald Ibis, Waldrapp, Northern Bald Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Töyhtöiibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis chauve","convention_language":true,"id":null},{"lang":"German","names":"Waldrapp","convention_language":false,"id":null},{"lang":"Italian","names":"Ibis dal ciuffo","convention_language":false,"id":null},{"lang":"Spanish","names":"Ibis eremita","convention_language":true,"id":null},{"lang":"Swedish","names":"eremitibis","convention_language":false,"id":null},{"lang":"Turkish","names":"kelaynak","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"reintroduced","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Kyllingstad, H. C. 1986. A record of Bald Ibis from the Sinai Mountains. Ornithological Society of the Middle East Bulletin: 17: 1-2.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"Desfayes, M. 1987. Evidence for the ancient presence of the Bald Ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E in Greece. Bulletin of the British Ornithologists' Club: 107: 93-94.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Anon. 1992. Morocco last hope. World Birdwatch: 14: 4.; Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pegoraro, K. and Malin, G. 1990. Freilandbeobachtungen am Waldrapp (\u003Ci\u003EGeronticus eremita\u003C/i\u003E) in Marokko: Verhalten immaturer Individuen. Journal für Ornithologie: 131: 453-456.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.; Serra, G., Abdallah, M., Assaed, A., Abdallah, A., Al Qaim, G., Fayad, T. and Williamson, D. 2004. Discovery of a relict breeding colony of northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E in Syria. Oryx: 38: 106-108.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"reintroduced","country_references":"Akcakaya, H. R. 1990. Bald Ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E population in Turkey: an evaluation of the captive breeding project for reintroduction. Biological Conservation: 51: 225-237.; Akcakaya, H. R. and Akcakaya, R. 1986. Concern for Turkey's last Bald Ibises. WWF Monthly Reports September 1986: 243-245.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Bezzel, E. and Wartmann, B. 1990. Neue Beobachtungen des Waldrapps (\u003Ci\u003EGeronticus eremita\u003C/i\u003E) in Jemen. Journal für Ornithologie: 131: 456-457.; Brooks, D. J., Evans, M. I., Martins, R. P. and Porter, R. F. 1987. The status of birds in North Yemen and the records of the OSME Expedition in autumn 1985. Sandgrouse: 9: 4-66.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lindsell, J.A., Serra, G., Peske, L., Abdullah, M.S., al Qaim, G., Kanani, A. and Wondafrash, M. 2009. Satellite tracking reveals the migration route and wintering area of the Middle East population of Critically Endangered northern bald ibis \u003Ci\u003EGeronticus eremita\u003C/i\u003E. Oryx: 43: 329-335.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Geronticus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11442,"full_name":"Phoenicurus moussieri","author_year":"(Olphe-Galliard, 1852)","common_names":[{"lang":"Danish","names":"Moussiers Rødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Diadeemroodstaart","convention_language":false,"id":null},{"lang":"English","names":"Moussier's Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue de Moussier","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Salewski, V., Altwegg, R., Liechti, F. and Peter, D. 2003. New records of Moussier`s Redstart \u003Ci\u003EPhoenicurus moussieri\u003C/i\u003E and Lesser Striped Swallow \u003Ci\u003EHirundo abyssinica\u003C/i\u003E from Mauritania. Malimbus: 25: 103-104","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11443,"full_name":"Gallinago media","author_year":"(Latham, 1787)","common_names":[{"lang":"Danish","names":"Tredækker, Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Poelsnip","convention_language":false,"id":null},{"lang":"English","names":"Great Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Heinäkurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine double","convention_language":true,"id":null},{"lang":"German","names":"Doppelschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Croccolone","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Polish","names":"Dubelt","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Dubbelbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct (?),extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella media","author_year":"(Latham, 1787)"},{"full_name":"Scolopax media","author_year":"Latham, 1787"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11444,"full_name":"Acrocephalus palustris","author_year":"(Bechstein, 1798)","common_names":[{"lang":"Danish","names":"Kærsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Marsh Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle verderolle","convention_language":true,"id":null},{"lang":"German","names":"Sumpfrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes nádiposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola verdognola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-palustre","convention_language":false,"id":null},{"lang":"Russian","names":"Bolotnaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Políglota","convention_language":true,"id":null},{"lang":"Swedish","names":"Kärrsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Ottoson, U., Bengtsson, D., Gustafsson, R., Hall, P., Hjort, C., Leventis, A. P., Neumann, R., Pettersson, J., Rhönnstad, P., Rumsey, S. et al. 2002. New birds for Nigeria observed during the Lake Chad Bird Migration Project. Bulletin of the African Bird Club: 9: 52-55.; Ottosson, U., Hjort, C. and Hall, P. 2001. The Lake Chad Bird Migration Project: Malamfatori revisited. Bulletin of the African Bird Club: 8: 121-126.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11445,"full_name":"Fratercula arctica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Papuchalk ploskozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Lunde","convention_language":false,"id":null},{"lang":"Dutch","names":"Papegaaiduiker","convention_language":false,"id":null},{"lang":"English","names":"Atlantic Puffin, Puffin","convention_language":true,"id":null},{"lang":"Finnish","names":"Lunni","convention_language":false,"id":null},{"lang":"French","names":"Macareux moine","convention_language":true,"id":null},{"lang":"German","names":"Papageitaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Lunda","convention_language":false,"id":null},{"lang":"Italian","names":"Pulcinella di mare","convention_language":false,"id":null},{"lang":"Norwegian","names":"Lunde","convention_language":false,"id":null},{"lang":"Polish","names":"Maskonur","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papagaio-do-mar","convention_language":false,"id":null},{"lang":"Russian","names":"Tupik","convention_language":false,"id":null},{"lang":"Spanish","names":"Frailecillo Atlántico, Frailecillo Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Lunnefågel","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Fratercula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca arctica","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11446,"full_name":"Tringa brevipes","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"Grey-tailed Tattler","convention_language":true,"id":null},{"lang":"French","names":"Chevalier de Sibérie","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero Siberiano","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Heteroscelus brevipes","author_year":"(Vieillot, 1816)"},{"full_name":"Totanus brevipes","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11448,"full_name":"Thalassarche bulleri","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Buller's Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros de Buller","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de Buller","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea bulleri","author_year":"Rothschild, 1893"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea bulleri\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11449,"full_name":"Sylvia atricapilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Munk","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Blackcap, Eurasian blackcap","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapääkerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette à tête noire","convention_language":true,"id":null},{"lang":"German","names":"Mönchsgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barátposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Capinera","convention_language":false,"id":null},{"lang":"Polish","names":"Kapturka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-de-barrete-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Slavka-chernogolovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Capirotada","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1998. Blackcap \u003Ci\u003ESylvia atricapilla\u003C/i\u003E, new to Benin. Malimbus: 20: 57-58.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hald-Mortensen, P. 1971. A collection of birds from Liberia and Guinea (Aves). Steenstrupia: 1: 115-125.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Melo, M., Covas, R. and Dijkstra, K.-D. 2006. First records of Blackcap \u003Ci\u003ESylvia atricapilla\u003C/i\u003E for Mozambique. Bulletin of the African Bird Club: 13: 80-81.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Searle, R. 2001. European Blackcap at Lake Chivero. Honeyguide: 47: 190.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11450,"full_name":"Phylloscopus ricketti","author_year":"(Slater, 1897)","common_names":[{"lang":"English","names":"Sulphur-breasted Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Rickett","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11451,"full_name":"Trichechus manatus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Caribbean Manatee, North American Manatee, West Indian Manatee, American Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin des Antilles, Lamantin des Caraïbes, Lamantin d'Amérique du nord","convention_language":true,"id":null},{"lang":"Spanish","names":"Manatí norteamericano, Lamantino norteamericano","convention_language":true,"id":null},{"lang":"Swedish","names":"floridamanat, västindisk manat, lamantin, amerikansk manat","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"extinct","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Montoya-Ospina, R. A., Caicedo-Herrera, D., Millán-Sánchez, S. L., Mignucci-Giannoni, A. A. and Lefebvre, L. W. 2001. Status and distribution of the West Indian manatee, \u003Ci\u003ETrichechus manatus manatus\u003C/i\u003E, in Colombia. Biological Conservation: 102: 117-129.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Alvarez-Alemán, A., Beck, C.A. and Powell, J.A. 2010. First report of a Florida Manatee (\u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E) in Cuba. Aquatic Mammals: 36: 148-153.; Estrada, A. R. and Ferrer, L. T. 1987. Distribucion del manati antillano, \u003Ci\u003ETrichechus manatus\u003C/i\u003E (Mammalia:Sirenia), en Cuba. 1. Region occidental. Poeyana: 354: 1-12.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Quintana Rizzo, E. 1994. Estimate of the distribution and population of the Manatee \u003Ci\u003ETrichechus manatus\u003C/i\u003E (Trichechidae - Sirenia) in Guatemala. Sirenews: 21: 14.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Rathbun, G. B., Powell, J. A. and Cruz, G. 1983. Status of the West Indian Manatee in Honduras. Biological Conservation: 26: 301-308.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"extinct","country_references":"Varona, L. S. 1974. Catalogo de los mamiferos vivientes y extinguidos de las Antillas. Academia de Ciencias de Cuba.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Campbell, H. W. and Gicca, D. F. 1978. Reseña preliminar del estado actual y distribucion del manati (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) en México. Ann. Inst. Biol. Univ. Autonoma México: 49: 257-264.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Villa, B. R. and Colomero, L. C. 1982. Distribucion y presencia del manati o talcamichin (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) en México. Ann. Inst. Biol. Univ. Autonoma México: 51: 703-708.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Jiménez, I. 2002. Heavy poaching in prime habitat: the conservation status of the West Indian manatee in Nicaragua. Oryx: 36: 272-278.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Schad, R. C., Montgomery, G. and Chancellor, D. 1981. La distribucion y frecuencia del manati, en el lago Gatun, en el Canal de Panama. ConCiencia: 8: 1-4.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Powell, J. A., Belitsky, D. W. and Rathbun, G. B. 1981. Status of the West Indian Manatee (\u003Ci\u003ETrichechus manatus\u003C/i\u003E) in Puerto Rico. Journal of Mammalogy: 62: 642-646.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Husson, A. M. 1978. The mammals of Surinam. E. J. Brill. Leiden.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Alkins, M. E. 1979. The mammals of Trinidad. Occasional Paper, Department of Zoology, University of the West Indies St. Augustine, Trinidad: 2.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Alvarez-Alemán, A., Beck, C.A. and Powell, J.A. 2010. First report of a Florida Manatee (\u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E) in Cuba. Aquatic Mammals: 36: 148-153.; Gannon, J.G., Scolardi, K.M., Reynolds III, J.E., Koelsch, J.K. and Kessenich, T. J. 2007. Habitat selection by manatees in Sarasota Bay, Florida. Marine Mammal Science: 23: 133-143.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hartman, D. S. 1974. Distribution, status and conservation of the manatee in the United States. US Fish and Wildlife Service National Fish Wildlife Lab. Contract Report. 14-16: 1-246 . ; Kinnaird, M. F. 1985. Aerial census of manatees in northeastern Florida. Biological Conservation: 32: 59-79.; Scolardi, K.M., Schwacke, L.H., Koelsch, J.K., Reynolds III, J.E., Kessenich, T.J., Sprinkel, J.M. and Gannon, J.G. 2009. Trends in counts of manatees \u003Ci\u003ETrichechus manatus latirostris\u003C/i\u003E from 1987 to 2006 in waters of Sarasota County, Florida, USA. Endangered Species Research: 9: 1-11.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Correa-Viana, M. 1986. [Distribution and status of the West Indian Manatee in Venezuela]. Serv. Nac. Fauna Silvestre . Venezuela.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"extinct","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Populations between Honduras and Panama","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Populations between Honduras and Panama","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11452,"full_name":"Phalacrocorax capensis","author_year":"(Sparrman, 1789)","common_names":[{"lang":"English","names":"Cape Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran du Cap","convention_language":true,"id":null},{"lang":"Spanish","names":"Cormorán del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus capensis","author_year":"Sparrman, 1788"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11453,"full_name":"Gorilla beringei","author_year":"Matschie, 1903","common_names":[{"lang":"English","names":"Mountain Gorilla, Eastern Gorilla","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Aveling, C. and Harcourt, A. H. 1984. A census of the Virunga Gorillas. Oryx: 18: 8-13.; Emlen, J. T. and Schaller, G. B. 1960. Distribution and status of the Mountain Gorilla \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E (1959). Zoologica: 45: 41-52.; Ghiglieri, M. D. 1984. Realm of the Mountain Gorillas. Swara: 7: 24-27.; Harcourt, A. H. and Fossey, D. 1981. The Virunga Gorillas: decline of an 'island' population. African Journal of Ecology: 19: 83-97.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Emlen, J. T. and Schaller, G. B. 1960. Distribution and status of the Mountain Gorilla \u003Ci\u003EGorilla gorilla beringei\u003C/i\u003E (1959). Zoologica: 45: 41-52.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Weber, B. 1979. Gorilla problems in Rwanda. Swara: 2: 29-32.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Harcourt, A. H. 1981. Can Uganda's Gorillas survive? A survey of the Bwindi Forest Reserve. Biological Conservation: 19: 269-282.; McNeilage, A., Plumptre, A. J., Brock-Doyle, A. and Vedder, A. 2001. Bwindi Impenetrable National Park, Uganda: gorilla census 1997. Oryx: 35: 39-47.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Gorilla","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGorilla gorilla\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Gorilla Agreement"}]},{"id":11455,"full_name":"Ardea purpurea","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Purpurhejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Purperreiger","convention_language":false,"id":null},{"lang":"English","names":"Purple Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruskohaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron pourpré, Héron pourpre","convention_language":true,"id":null},{"lang":"German","names":"Purpurreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörös gém","convention_language":false,"id":null},{"lang":"Italian","names":"Airone rosso","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla purpurowa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-vermelha","convention_language":false,"id":null},{"lang":"Spanish","names":"Garza imperial","convention_language":true,"id":null},{"lang":"Swedish","names":"Purpurhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Norton, R. 1999. West Indies region. North American Birds: 53: 214-215.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea bournei","author_year":"de Naurois, 1966"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11456,"full_name":"Mergus merganser","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stor Skallesluger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Zaagbek","convention_language":false,"id":null},{"lang":"English","names":"Common Merganser, Goosander","convention_language":true,"id":null},{"lang":"Finnish","names":"Isokoskelo","convention_language":false,"id":null},{"lang":"French","names":"Harle bièvre, Grand Harle","convention_language":true,"id":null},{"lang":"German","names":"Gänsesäger, Gänseäger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy bukó","convention_language":false,"id":null},{"lang":"Italian","names":"Smergo maggiore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merganso-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Storskrake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11457,"full_name":"Equus grevyi","author_year":"Oustalet, 1882","common_names":[{"lang":"Danish","names":"Grevys zebra","convention_language":false,"id":null},{"lang":"Dutch","names":"Grevy-zebra","convention_language":false,"id":null},{"lang":"English","names":"Grevy's Zebra","convention_language":true,"id":null},{"lang":"Finnish","names":"Kuningasseepra","convention_language":false,"id":null},{"lang":"French","names":"Zèbre de Grévy","convention_language":true,"id":null},{"lang":"German","names":"Grevyzebra","convention_language":false,"id":null},{"lang":"Italian","names":"Zebra di Grevy","convention_language":false,"id":null},{"lang":"Spanish","names":"Cebra de Grévy","convention_language":true,"id":null},{"lang":"Swahili","names":"Kangaja","convention_language":false,"id":null},{"lang":"Swedish","names":"grevyzebra, kungssebra, kungszebra, grevysebra","convention_language":false,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Dirschl, H. J. and Wetmore, S. P. 1978. Grévy's Zebra. Abundance and distribution in Kenya 1977. Kenya Rangeland Ecological Monitoring Unit, Nairobi. Aerial Survey Technical Report Series No. 4. ; Rubenstein, D.I. et al. (comp.) 2002. Earthwatch Institute Field Report. Earthwatch Institute. Oxford, United Kingdom. ","id":null},{"name":"Somalia","country":"Somalia","tags_list":"extinct","country_references":"Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Moehlman, P.D. 2002. Equids: zebras, asses and horses. Status survey and conservation action plan. IUCN. Switzerland and Cambridge, UK.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11459,"full_name":"Egretta eulophotes","author_year":"(Swinhoe, 1860)","common_names":[{"lang":"English","names":"Chinese Egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette de Chine","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta China","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Litvinenko, N. M. and Shibaev, Y. V. 2000. Importance of Furugelm Island in the Sea of Japan for wetland birds: the first record of a breeding colony of the Chinese egret \u003Ci\u003EEgretta eulophotes\u003C/i\u003E. Oryx: 34: 335-337.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Herodias eulophotes","author_year":"Swinhoe, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11460,"full_name":"Myotis emarginatus","author_year":"(É. Geoffroy, 1806)","common_names":[{"lang":"Czech","names":"Netopýr brvitý","convention_language":false,"id":null},{"lang":"Danish","names":"Geoffroys flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Ingekorven vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Geoffroy's Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Käharlendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Ruskosiippa","convention_language":false,"id":null},{"lang":"French","names":"Vespertilion à oreilles échancrées, Murin à oreilles échancrées","convention_language":true,"id":null},{"lang":"German","names":"Wimperfledermaus","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio smarginato","convention_language":false,"id":null},{"lang":"Norwegian","names":"Geoffroyflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"nocek orzesiony","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-lanudo","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier brvitý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejirroto, Murciélago de Geoffroy","convention_language":true,"id":null},{"lang":"Swedish","names":"Geoffroys fladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Kirpikli yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Verheggen, L. 2001. Nieuwe kolonie ingekorven vleermuis. Zoogdier: 12: 32.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Gaucher, P. 1995. First record of Geoffroy's Bat \u003Ci\u003EMyotis emarginatus\u003C/i\u003E Geoffroy, 1806 (Mammalia: Chiroptera: Vespertilionidae) in Saudi Arabia. Mammalia: 59: 149-151.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2003. First record of \u003Ci\u003EMyotis emarginatus\u003C/i\u003E (E. Geoffroy 1806) for the Republic of Yemen (Mammalia, Chiroptera, Vespertilionidae). Senckenbergiana biologica: 82: 243-246.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11461,"full_name":"Thalasseus maximus","author_year":"Boddaert, 1783","common_names":[{"lang":"Dutch","names":"Koningsstern","convention_language":false,"id":null},{"lang":"English","names":"Royal Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne royale","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán real","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Naurois, R. de. 1966. Colonies reproductrices de Spatules africaines, Ibis sacré et Laridés dans l'archipel des Bijagos (Guinée portugaise). Alauda: 34: 257-278.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.; Seutin, G., Bermingham, E. and Thorn, S. 1997. The avifauna of the Cayos Cochinos, with new breeding records for Honduras. Orn. Neotropical: 8: 101-106.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna maxima","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna maxima albididorsalis\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11462,"full_name":"Plegadis falcinellus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Sort ibis","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ibis","convention_language":false,"id":null},{"lang":"English","names":"Glossy Ibis","convention_language":true,"id":null},{"lang":"Finnish","names":"Pronssi-ibis, Pronssi-iibis","convention_language":false,"id":null},{"lang":"French","names":"Ibis falcinelle","convention_language":true,"id":null},{"lang":"German","names":"Braunsichler, Sichler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Batla","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattaio","convention_language":false,"id":null},{"lang":"Polish","names":"Ibis Kasztanowaty","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Morito, Morito Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Bronsibis","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Hoareau, C. and Skerrett, A. 2006. Glossy Ibis \u003Ci\u003EPlegadis falcinellus\u003C/i\u003E: the first records for Seychelles. Bulletin of the African Bird Club: 12: 44, 46.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nabhitabhata, J. and Round, P. D. 1994. The first record of Glossy Ibis (\u003Ci\u003EPlegadis falcinellus\u003C/i\u003E) for Thailand. Natural History Bulletin of the Siam Society: 42: 292-293.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Plegadis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tantalus falcinellus","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11465,"full_name":"Charadrius forbesi","author_year":"(Shelley, 1883)","common_names":[{"lang":"English","names":"Forbes's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Forbes","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo de Forbes","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Berlioz, J. 1931. Notes sur quelques oiseaux de la Guinée française. Bulletin du Muséum National d'Histoire Naturelle: 3: 298-301.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Colebrook-Robjent, J. F. R. and Griffith, J. E. 1996. Forbes's Plover \u003Ci\u003ECharadrius forbesi\u003C/i\u003E breeding in Central Africa. Bulletin of the British Ornithologists' Club: 116: 244-246.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Aegialitis forbesi","author_year":"Shelley, 1883"},{"full_name":"Charadrius tricollaris forbesi","author_year":"Vieillot, 1818"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11466,"full_name":"Podiceps cristatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Toppet Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Fuut","convention_language":false,"id":null},{"lang":"English","names":"Great Crested Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Silkkiuikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe huppé","convention_language":true,"id":null},{"lang":"German","names":"Haubentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Búbos vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso magiore, Svasso maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz dwuczuby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-crista","convention_language":false,"id":null},{"lang":"Russian","names":"Chomga","convention_language":false,"id":null},{"lang":"Spanish","names":"Somormujo Lavanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Skäggdopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus cristatus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11467,"full_name":"Larus audouinii","author_year":"Payraudeau, 1826","common_names":[{"lang":"Danish","names":"Audouinsmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Audouins Meeuw","convention_language":false,"id":null},{"lang":"English","names":"Audouin's Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Välimerenlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland d'Audouin","convention_language":true,"id":null},{"lang":"German","names":"Korallenmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Korallsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano corso","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa sródziemnomorska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz de Audouin","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota de Audouin","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödnäbbad trut, Rödnäbbad mås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1998. First addition to the list of birds in Bulgaria. Riv. ital. Orn.: 68: 183-187.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Bengtsson, K. 1995. More observations of Audouin's Gulls \u003Ci\u003ELarus audouinii\u003C/i\u003E in Senegal. Malimbus: 17: 102.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11468,"full_name":"Mesoplodon densirostris","author_year":"(de Blainville, 1817)","common_names":[{"lang":"Dutch","names":"blainville's spitssnuitdolfijn","convention_language":false,"id":null},{"lang":"English","names":"Blainville's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Blainville","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Blainville","convention_language":true,"id":null},{"lang":"Swedish","names":"Blainvilles näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Pastene, L. A., Numachi, K., Jofre, M., Acevedo, M. and Joyce, G. 1990. First record of the Blainville's beaked whale, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E Blainville, 1817 (Cetacea, Ziphiidae) in the eastern South Pacific. Marine Mammal Science: 6: 82-84.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Kaiya, Z., Leatherwood, S. and Jefferson, T.A. 1995. Records of small cetaceans in Chinese waters: a review. \u003Ci\u003EAsian Marine Biology\u003C/i\u003E: 12: 119–139.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. 2000. Distribution of cetaceans off the Society Islands (French Polynesia) as obtained from dedicated surveys. \u003Ci\u003EAquatic Mammals\u003C/i\u003E: 26(2): 111–126.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Michel, C. and van Bree, J. H. 1976. On two strandings of the beaked whale \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E (de Blainville, 1817) on Mauritius. Zeitschrift Säugetierkundliche: 41: 194-196.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Borsa, P. and Robineau, D. 2005. Blainville's Beaked Whale in New Caledonia. Pacific Science: 59: 467-472.; Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1999. New records of beaked whales, genus \u003Ci\u003EMesoplodon\u003C/i\u003E, from New Zealand (Cetacea: Ziphiidae). Journal of the Royal Society of New Zealand: 29: 235-244.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"Reiner, F. 1979. Nota sobre um raro ziphioid, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E Blainville, 1817, nas costas de Portugal. \u003Ci\u003EMuseo Marinos Cascais, Memorios serie Zoologie,\u003C/i\u003E: 1: 1–12.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Grau, E., Filella, S., Raga, J. A. and Raduan, A. 1988. Cetaceos varados en las costas del Mediterraneo iberico, durante los anos 1980-1981. Misc. Zool.: 10: 353-358.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Yang, W., Chou, L., Jepson, P.D., Brownell, R.L., Cowan, D., Chang, P., Chiou, H., Yao, C., Yamada, T.K., Chiu, J. et al. 2008. Unusual cetacean mortality event in Taiwan, possibly linked to naval activities. \u003Ci\u003EVeterinary Record\u003C/i\u003E: 162: 184–186.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Herman, J. S., Kitchener, A. C., Baker, J. R. and Lockyer, C. 1995. The most northerly record of Blainville's Beaked Whale, \u003Ci\u003EMesoplodon densirostris\u003C/i\u003E, from the eastern Atlantic. Mammalia: 58: 657-661.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11469,"full_name":"Acipenser sinensis","author_year":"Gray, 1835","common_names":[{"lang":"English","names":"Chinese Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiinansampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon chinois","convention_language":true,"id":null},{"lang":"Japanese","names":"Kara-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr chinski","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk stör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"extinct (?)","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11470,"full_name":"Sternula saundersi","author_year":"Hume, 1877","common_names":[{"lang":"English","names":"Saunders's Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna albifrons saundersi","author_year":"Pallas, 1764"},{"full_name":"Sterna saundersi","author_year":"Hume, 1877"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna saundersi\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11471,"full_name":"Myotis brandtii","author_year":"(Eversmann, 1845)","common_names":[{"lang":"English","names":"Brandt's Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"Brandts fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Tupinier, Y. and Aellen, V. 1978. Présence de \u003Ci\u003EMyotis brandti\u003C/i\u003E (Eversmann, 1845) (Chiroptera) en France et en Suisse. Rev. suisse Zool.: 85: 449-456.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Vernier, E. 1994. Prima segnalazione del vespertilio di Brandt, \u003Ci\u003EMyotis brandti\u003C/i\u003E (Eversmann, 1845) per l'Italia. Atti della Societa Italiana di Scienze Naturali e del Museo Civico di Storia Naturale di Milano: 133: 185-188.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Harbusch, C., Kiefer, A. and Engel, E. 1992. Die Verbreitung von Fledermausen (Mammalia, Chiroptera) im Sudwesten Luxemburgs. Bulletin de la Societe des Naturalistes Luxembourgeois: 93: 169-172.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Jansen, R. and Spoelstra, K. 2001. Zeldzame vleermuizen terug in Nederland? Zoogdier: 12: 28-29.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Murariu, D. and Radulet, N. 1998. Mammalian fauna (Mammalia) from Maramures Depression, Romania. Travaux du Muséum National d'Histoire Naturelle \"Grigore Antipa\": 41: 609-621.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. and Cerveny, J. 1997. New and noteworthy records of bats in Slovenia. Myotis: 35: 89-93.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1990. [The bats of eastern Anatolia and their distribution (Mammalia: Chiroptera).]. Doga. Turk. Zool. Derg.: 14: 214-228.; Albayrak, I. 1991. Studies on \u003Ci\u003EMyotis mystacinus\u003C/i\u003E and \u003Ci\u003EMyotis brandti\u003C/i\u003E (Mammalia: Chiroptera) in Turkey. Mammalia: 55: 113-120.; Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Pokynchereda, V. F. 1999. [\u003Ci\u003EMyotis brandti\u003C/i\u003E (Chiroptera), a new record in Ukrainian fauna.]. Vestnik Zoologii: 33: 86.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis brandti","author_year":"(Eversmann, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11474,"full_name":"Anser indicus","author_year":"(Latham, 1790)","common_names":[{"lang":"Danish","names":"Indisk Gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Indische gans","convention_language":false,"id":null},{"lang":"English","names":"Bar-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie à tête barrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar Indio","convention_language":true,"id":null},{"lang":"Swedish","names":"stripgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lahrman, F. W. 1994. A Bar-headed Goose seen in Regina---a possible first for North America. Blue Jay : 52: 137-140.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas indica","author_year":"Latham, 1790"},{"full_name":"Eulabeia indica","author_year":"(Latham, 1790)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11475,"full_name":"Monachus monachus","author_year":"(Hermann, 1779)","common_names":[{"lang":"Albanian","names":"Foka e Mesdheut","convention_language":false,"id":null},{"lang":"Croatian","names":"Sredozemna medvjedica","convention_language":false,"id":null},{"lang":"Danish","names":"Munkesæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Monniksrob","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Monk Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Munkhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Munkkihylje","convention_language":false,"id":null},{"lang":"French","names":"Phoque-moine méditerranéen, Phoque-moine","convention_language":true,"id":null},{"lang":"German","names":"Mönchsrobbe, Mittelmeer Mönchsrobbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mediterrán barátfóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Munkaselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca monaca","convention_language":false,"id":null},{"lang":"Maltese","names":"Monka, Bumerin","convention_language":false,"id":null},{"lang":"Norwegian","names":"Middelhavsmunkesel","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca Monge, Foca-monge, Lobo-marinho","convention_language":false,"id":null},{"lang":"Romanian","names":"Foca-episcop","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca monje, Foca monje del Mediterráneo","convention_language":true,"id":null},{"lang":"Swedish","names":"havsmunk, munksäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Akdeniz foku","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"extinct (?)","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct (?)","country_references":"Berkes, F., Anat, H., Kislalioglu, M. and Esenel, M. 1979. Distribution and ecology of \u003Ci\u003EMonachus monachus\u003C/i\u003E on Turkish coasts. In: Ronald, R. and Duguy, R. (eds) The Mediterranean Monk Seal. Pergamon Press. Oxford.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"extinct","country_references":"Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifères sauvages de France. Ministère de L'Environment, Société Française pour l'Etude et la Protection des Mammifères. Paris.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Panos, A., Jacobs, J. and Panos, D. 1993. The endangered Mediterranean Monk Seal \u003Ci\u003EMonachus monachus\u003C/i\u003E in the Ionian sea, Greece. Biological Conservation: 64: 129-140.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Lewis, R. E., Lewis, J. H. and Atallah, S. I. 1968. A review of Lebanese mammals, Carnivora, Pinnipedia, Hyracoidea and Artiodactyla. Journal of Zoology, London: 154: 517-531.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct (?)","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"extinct","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"Kinzelbach, R. and Boessheck, J. 1992. A record of the Monk Seal \u003Ci\u003EMonachus monachus\u003C/i\u003E on the island of Sal (Cape Verde Islands). International Journal of Mammalian Biology: 57: 58-59.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct (?)","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct (?)","country_references":"Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sergeant, D., Ronald, R., Boulva, J. and Berkes, F. 1979. The recent status of \u003Ci\u003EMonachus monachus\u003C/i\u003E the Mediterranean Monk Seal. In: Ronald, K. and Duguy, R. (eds.) The Mediterranean Monk Seal. UNEP Technical Series, volume Pergamon Press. Oxford.; Turan, N. 1984. Türkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct (?)","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Monachus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Monk Seal in the Atlantic"}]},{"id":11476,"full_name":"Stenella attenuata","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Bridled Dolphin, Pantropical Spotted Dolphin, Narrow-snouted Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin tacheté pantropical","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín manchado, Delfín pintado","convention_language":true,"id":null},{"lang":"Swedish","names":"tygeldelfin, betseldelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Perrin, W. F. and Hohn, A. A. 1994. Pantropical Spotted Dolphin \u003Ci\u003EStenella attenuata\u003C/i\u003E. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adicinoes a l lista sistemática de cetaceos de Uruguay, 1. Resúmenes Jorn. Cienc. nat. Montevideo: 1: 136-137.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Swartz, S. L., Martínez, A., Burks, C. M. and Watkins, W. A. 2003. First records of the Pantropical Spotted Dolphin (\u003Ci\u003EStenella attenuata\u003C/i\u003E) for the Puerto Rican Bank, with a review of the species in the Caribbean. Caribbean Journal of Science: 39: 381-392.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Southeast Asia populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Eastern tropical pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11477,"full_name":"Tarsiger cyanurus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Modruška lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Blåstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwstaart","convention_language":false,"id":null},{"lang":"English","names":"Orange-flanked Bush-Robin, Red-flanked Bluetail","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinipyrstö","convention_language":false,"id":null},{"lang":"French","names":"Rossignol á flancs roux, Rossignol à flancs roux","convention_language":true,"id":null},{"lang":"German","names":"Blauschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kékfarkú","convention_language":false,"id":null},{"lang":"Italian","names":"Codazzurro","convention_language":false,"id":null},{"lang":"Polish","names":"Modraczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-rabiazul","convention_language":false,"id":null},{"lang":"Russian","names":"Sinekhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Coliazul","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Smith, J. P. and the Israeli Rarities Committee. 2001. Bulletin 1: 02 on Rare Birds in Israel (1995 - 2001). The Israel Rarities and Distribution Committee Bulletin 1: 02.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus cyanurus","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11479,"full_name":"Physeter macrocephalus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Cachalot, Pot Whale, Spermacet Whale, Cachelot, Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot","convention_language":true,"id":null},{"lang":"Portuguese","names":"Cachalote","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena esperma, Cachalote","convention_language":true,"id":null},{"lang":"Swedish","names":"kaskelot","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Amon Kothias, J.-B. and N'Goran, N. Y. 1991. Note sur les baleines echouées en estuaires artificiels en Côte d'Ivoire. Journal Ivoirien d'Oceanologie et de Limnologie: 1: 153-155.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. 2009. Comparison of odontocete populations of the Marquesas and Society Islands (French Polynesia). \u003Ci\u003EJournal of the Marine Biological Association of the United Kingdom\u003C/i\u003E: 89(5): 931–941.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Boye, P. and Plaisier, F. 1989. Die Säugetiere der Nordseeinsel Langeoog. Drosera: 1989: 69-78.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"De Stephanis, R., Cornulier, T., Verborgh, P., Salazar Sierra, J., Gimeno, N. and Guinet, C. 2008. Summer spatial distribution of cetaceans in the Strait of Gibraltar in relation to the oceanographic context. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 353: 275–288.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Steiner, L., Lamoni, L., Acosta Plata, M., Jensen, S.-K., Lettevalla, E. and Gordon, J. 2012. A link between male sperm whales, \u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E, of the Azores and Norway. \u003Ci\u003EJournal of the Marine Biological Association of the United Kingdom\u003C/i\u003E: 92 (Special Issue 8): 1751–1756.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Mustika, P.L.K., Hutasoit, P., Madusari, C.C., Purnomo, F.S., Setiawan, A., Tjandra, K. and Prabowo, W.E. 2009. Whale strandings in Indonesia, including the first record of a humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) in the archipelago. \u003Ci\u003EThe Raffles Bulletin of Zoology\u003C/i\u003E: 57(7): 199–206.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Biological and distribution new data on the sperm whale, \u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E L. in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 183-184.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Ponnampalam, L.S. 2012. Opportunistic observations on the distribution of cetaceans in the Malaysian south China, Sulu and Sulawesi seas and an updated checklist of marine mammals in Malaysia. \u003Ci\u003EThe Raffles Bulletin of Zoology\u003C/i\u003E: 60(1): 221–231.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Patton, D. 1979. Sperm Whale stranding in Baja California. Terra, Los Angeles: 17: 28-29.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"De Stephanis, R., Cornulier, T., Verborgh, P., Salazar Sierra, J., Gimeno, N. and Guinet, C. 2008. Summer spatial distribution of cetaceans in the Strait of Gibraltar in relation to the oceanographic context. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 353: 275–288.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Buijs, D. and Dudok van Heel, W. H. 1979. Bodyplan of a male Sperm Whale (\u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E) stranded near Breskens, Netherlands. Aquatic Mammals: 7: 27-32.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Childerhouse, S.J., Dawson, S.M. and Slooten, E. 1995. Abundance and seasonal residence of sperm whales at Kaikoura, New Zealand. \u003Ci\u003ECanadian Journal of Zoology\u003C/i\u003E: 73(4): 723–731.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Haug, T. and Gulliksen, B. 1981. [Remarks concerning a sperm whale stranding in north Norway in December 1980.]. Fauna (Oslo): 34: 68-76.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Pinela, A.M., Quérouil, S., Magalhães, S., Silva, M.A., Prieto, R., Matos, J.A. and Santos, R.S. 2009. Population genetics and social organization of the sperm whale (\u003Ci\u003EPhyseter macrocephalus\u003C/i\u003E) in the Azores inferred by microsatellite analyses. \u003Ci\u003ECanadian Journal of Zoology\u003C/i\u003E: 87(9): 802–813.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci Giannoni, A. A. 1989. A stranded sperm whale, \u003Ci\u003EPhyseter catodon\u003C/i\u003E, at Cayo Santiago, Puerto Rico. Journal of the Veterinary Faculty of the University of Tehran: 24: 213-215.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Baldwin, R. 1998. A note on sightings of sperm whales off the coasts of the Sultanate of Oman and the United Arab Emirates, October 1994 to October 1997. Paper SC/50/CAWS22 presented to the IWC Scientific Committee, April 1998 (unpublished). 8","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Physeter","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11480,"full_name":"Ardeola ralloides","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Czech","names":"Volavka vlasatá","convention_language":false,"id":null},{"lang":"Danish","names":"Tophejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Ralreiger","convention_language":false,"id":null},{"lang":"English","names":"Squacco Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Rääkkähaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron crabier, Crabier chevelu","convention_language":true,"id":null},{"lang":"German","names":"Rallenreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Üstökösgém","convention_language":false,"id":null},{"lang":"Italian","names":"Sgarza ciuffetto","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla modronosa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-ratos","convention_language":false,"id":null},{"lang":"Russian","names":"Zholtaya Tsaplya","convention_language":false,"id":null},{"lang":"Spanish","names":"Garcilla cangrejera","convention_language":true,"id":null},{"lang":"Swedish","names":"Rallhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ross, J. P. 1996. Proceedings of the 13th Working Meeting of the CSG. IUCN. Gland, Switzerland. 499-504","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Bergmans, W. 1999. Conservation status of African fruit bats (Mammalia, Megachiroptera). In H. de Iongh \u0026 H. Prins (eds.) International Seminar on Species Conservation - The IUCN Red List categories discussed. Nederlandse Commissie voor Internationale Natuurbescherming. Leiden.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hillman, J. C. 1992. The mammals of Eritrea. Records from the \"Catalogue of the Mammals of Ethiopia\". Wildlife Conservation Society. Bronx, New York. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Telnov, D. et al. 1999. Check-list of the Latvian beetles (Insecta: Coleoptera). Mitt. Internat. Entomol. Ver., Suppl,.: 5: 1-141.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bell,T. and Guttman, A. 1999. Species Assessment for the Shortspine Thornyhead (\u003Ci\u003ESebastolobus alascanus\u003C/i\u003E). Dept. of Zoology . McGill University, Montreal. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Lockyear, J. 1999. Proposal to change the IUCN Red Listing of Hippocampus capensis. Boulenger, 1900. (Knysna). ; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ralloides","author_year":"Scopoli, 1769"},{"full_name":"Ardeola ralloides paludivaga","author_year":"(Scopoli, 1769)"},{"full_name":"Ardeola ralloides ralloides","author_year":"(Scopoli, 1769)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11482,"full_name":"Haliaeetus albicilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Havørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeearend","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Sea-eagle, White-tailed Eagle, Grey Sea Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Merikotka","convention_language":false,"id":null},{"lang":"French","names":"Pygargue à queue blanche, Pygargue commun","convention_language":true,"id":null},{"lang":"German","names":"Seeadler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rétisas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila di mare","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havørn","convention_language":false,"id":null},{"lang":"Polish","names":"Bielik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-rabalva","convention_language":false,"id":null},{"lang":"Spanish","names":"Pigargo, Pigargo coliblanco, Pigargo Europeo, Pigargo común","convention_language":true,"id":null},{"lang":"Swedish","names":"Havsörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.; Rajchard, J. and Prochazka, J. 2009. Restoration of sea eagle population: a review. Current Zoology: 55: 315-318.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Barjaktarov, D.D. 2004. Ornithological Importance of Gruza Accumulation. Matica Srpska Proceedings for Natural Sciences: 107: 55-64.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Folkestad, A. O. 1984. Situasjonen for havorna \u003Ci\u003EHaliaeetus albicilla\u003C/i\u003E in Norge. Vår Fuglefauna: 7: 209-216.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .; Willgohs, J. F. 1984. Havorn i Norge. Direktorat for Vilt og Ferskvannsfisk. Trondheim.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Helander, B. 1980. Fargringmarkning av havsorn - en lagesrapport. Fauna och Flora: 4: 183-187.; Helander, B., Olsson, M. and Reutergardh, L. 1982. Residue levels of organochlorine and mercury compounds in unhatched eggs and the relationships to breeding success in White-tailed Sea Eagles \u003Ci\u003EHaliaeetus albicilla\u003C/i\u003E in Sweden. Holarctic Ecology: 5: 349-366.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,distribution uncertain,reintroduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Love, J. A. 1983. The return of the Sea Eagle. Cambridge University Press. Cambridge, U.K.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11483,"full_name":"Eubalaena japonica","author_year":"(Lacépède, 1818)","common_names":[{"lang":"English","names":"North Pacific Right Whale","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Shelden, K.E.W., Moore, S.E., Waite, J.M., Wade, P.R. and Rugh, D.J. 2005. Historic and current habitat use by North Pacific right whales \u003Ci\u003EEubalaena japonica\u003C/i\u003E in the Bering Sea and Gulf of Alaska. \u003Ci\u003EMammal Review\u003C/i\u003E: 35(2): 129–155.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Clapham, P.J., Good, C., Quinn, S.E., Reeves, R.R., Scarff, J.E. and Brownell, R.L. 2004. Distribution of North Pacific right whales (\u003Ci\u003EEubalaena japonica\u003C/i\u003E) as shown by 19th and 20th century whaling catch and sighting records. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 6(1): 1–6.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Townsend, C.H. 1935. The distribution of certain whales as shown by logbook records of American whaleships. \u003Ci\u003EZoologica\u003C/i\u003E: 19:1-50.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Brownell, R.L., Clapham, P.J., Miyashita, T. and Kasuya, T. 2001. Conservation status of North Pacific right whales. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: Special Issue (2): 269–286; Marques, T., Munger, L., Thomas, L., Wiggins, S. and Hildebrand, J. 2011. Estimating North Pacific right whale \u003Ci\u003EEubalaena japonica\u003C/i\u003E density using passive acoustic cue counting. \u003Ci\u003EEndangered Species Research\u003C/i\u003E: 13: 163–172.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"North Pacific. Initially included within \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also within \u003Ci\u003EBalaena glacialis glacialis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11484,"full_name":"Pluvialis fulva","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Sibirisk Tundrahjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Aziatische Goudplevier, Kleine Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"Pacific Golden-Plover, Pacific Golden Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiankurmitsa","convention_language":false,"id":null},{"lang":"French","names":"Pluvier fauve, Asiático","convention_language":true,"id":null},{"lang":"German","names":"Wanderregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szibériai lile","convention_language":false,"id":null},{"lang":"Italian","names":"Piviere dorato orientale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-dourada-siberiana","convention_language":false,"id":null},{"lang":"Russian","names":"Burokrylaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado Siberiano","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk tundrapipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius fulvus","author_year":"Gmelin, 1789"},{"full_name":"Pluvialis dominica fulva","author_year":"(P. L. S. Müller, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11485,"full_name":"Cygnus olor","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Knopsvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Knobbelzwaan","convention_language":false,"id":null},{"lang":"English","names":"Mute Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Kyhmyjoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne muet, Cygne tuberculé","convention_language":true,"id":null},{"lang":"German","names":"Höckerschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno reale","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź niemy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-vulgar","convention_language":false,"id":null},{"lang":"Russian","names":"Ле́бедь-шипу́н","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne Vulgar","convention_language":true,"id":null},{"lang":"Swedish","names":"Knölsvan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced,introduced (?)","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"introduced,introduced (?)","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"introduced,distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"introduced,introduced (?)","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced,introduced (?)","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas olor","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11486,"full_name":"Calidris mauri","author_year":"(Cabanis, 1857)","common_names":[{"lang":"Danish","names":"Alaskaryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Alaskastrandloper","convention_language":false,"id":null},{"lang":"English","names":"Western Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau d'Alaska","convention_language":true,"id":null},{"lang":"Russian","names":"Pereponchatopaly Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Alaska","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ereunetes mauri","author_year":"Cabanis, 1857"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11487,"full_name":"Acipenser medirostris","author_year":"Ayres, 1854","common_names":[{"lang":"English","names":"Green Sturgeon, Green Japanese Sturgeon, Barbel Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Vihersampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon vert, Esturgeon de Sakhaline","convention_language":true,"id":null},{"lang":"German","names":"Sachalinstör, Grüner Stör","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr sachalinski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-verde","convention_language":false,"id":null},{"lang":"Russian","names":"Sterlyad","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión verde","convention_language":true,"id":null},{"lang":"Swedish","names":"grön stör","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Adams, P.B., Grimes, C., Lindleym S.T. and Moser, M. L. 2002. Status review for North American green sturgeon, Acipenser medirostris. http://137.110.142.7/publications/FED/00630.pdf National Marine Fisheries Service. ; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Houston, J. P. P. 1988. Status of the Green Sturgeon, \u003Ci\u003EAcipenser medirostris\u003C/i\u003E, in Canada. Canadian Field Naturalist: 102: 286-290.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Campbell, R.R. 1991. Rare and endangered fishes and marine mammals of Canada. Canadian Field-Naturalist: 105: 151-156.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Adams, P.B., Grimes, C., Hightower, J.E., Lindley, St.T., Moser, M.L. and Parsley, M.J. 2007. Population status of North American green sturgeon, Acipenser medirostris. Environmental Biology of Fishes: 79: 339-356.; Adams, P.B., Grimes, C., Lindleym S.T. and Moser, M. L. 2002. Status review for North American green sturgeon, Acipenser medirostris. http://137.110.142.7/publications/FED/00630.pdf National Marine Fisheries Service. ; Erickson, D.L., North, J.A., Hightower, J.E., Weber, J. and Lauck, L. 2002. Movement and habitat use of green sturgeon Acipenser medirostris in the Rogue River, Oregon, USA. Journal of Applied Ichthyology: 18: 565-569.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Moyle, P. B. 1995. The decline of anadromous fishes in California. Conservation Biology: 8: 869-870.; Moyle, P. B., Foley, P. J. and Yoshiyama, R. M. 1993. Status and biology of the Green Sturgeon, \u003Ci\u003EAcipenser medirostris\u003C/i\u003E. 123rd Annual Meeting of the American Fisheries Society, Portland, Oregon, August/September 1993. Session 1.3. Symposium: Biology and Management of North American Sturgeons . 14-15; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11488,"full_name":"Cathartes aura","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Turkey Vulture","convention_language":true,"id":null},{"lang":"French","names":"Urubu à tête rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Aura gallipavo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Cathartes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11489,"full_name":"Larus relictus","author_year":"Lönnberg, 1931","common_names":[{"lang":"Danish","names":"Reliktmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Mongoolse zwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Relict Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mongolianlokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette Relique, Goéland relique, Goéland de Mongolie","convention_language":true,"id":null},{"lang":"German","names":"Gobi-Schwarzkopfmöwe","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano della Mongolia","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota relicta, Gaviota de Mongolia","convention_language":true,"id":null},{"lang":"Swedish","names":"gobimås, reliktmås","convention_language":false,"id":null}],"distributions":[{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fisher, D.J. 1985. Observations on Relict Gull in Mongolia. Dutch Birding: 7: 117-120.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11490,"full_name":"Turdus chrysolaus","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Brown-headed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à flancs roux","convention_language":true,"id":null}],"distributions":[{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11492,"full_name":"Sternula balaenarum","author_year":"(Strickland, 1852)","common_names":[{"lang":"English","names":"Damara Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne des baleiniers","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito de Damara","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna balaenarum","author_year":"(Strickland, 1852)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna balaenarum\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11494,"full_name":"Phylloscopus subviridis","author_year":"(Brooks, 1872)","common_names":[{"lang":"English","names":"Brooks's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Brooks","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11495,"full_name":"Phylloscopus fuscatus","author_year":"(Blyth, 1842)","common_names":[{"lang":"Danish","names":"Brun Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruine Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Dusky Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot brun","convention_language":true,"id":null},{"lang":"Russian","names":"Buraya Penochka","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11496,"full_name":"Locustella certhiola","author_year":"(Pallas, 1811)","common_names":[{"lang":"Dutch","names":"Siberische Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Pallas's Grasshopper Warbler, Pallas's Grasshopper-warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Pallas","convention_language":true,"id":null},{"lang":"Swedish","names":"starrsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Roth, T. and Jalilova, G. 2004. First confirmed breeding record of Pallas's Grasshopper Warbler \u003Ci\u003ELocustella certhiola\u003C/i\u003E in Kyrgyzstan. Sandgrouse: 26: 141-143.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11497,"full_name":"Larus ichthyaetus","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Racek velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor Sorthovedet Måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenzwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Great Black-headed Gull, Pallas's Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapäälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland ichthyaète","convention_language":true,"id":null},{"lang":"German","names":"Fischmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Halárszsirály, Halászsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano del Pallas","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa orlica, Orlica (mewa orlica)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Cabecinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthuvad trut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Bonaccorsi, G. 1999. [Great Black-headed Gull, a new species for France.]. Ornithos: 6: 95-96.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11498,"full_name":"Larus melanocephalus","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Sorthovedet måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Mediterranean Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustanmerenlokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette mélanocéphale","convention_language":true,"id":null},{"lang":"German","names":"Schwarzkopfmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szerecsensirály","convention_language":false,"id":null},{"lang":"Icelandic","names":"Szerecsensirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano corallino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-cabeça-preta, Gaviota-de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota cabecinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthuvad mås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kubán, V., Matousek, B. and Siska, S. 1997. [First breeding record of Mediterranean Gull (\u003Ci\u003ELarus melanocephalus\u003C/i\u003E) for Slovakia.]. Tichodroma: 10: 168-170.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11499,"full_name":"Egretta vinaceigula","author_year":"(Sharpe, 1895)","common_names":[{"lang":"English","names":"Slaty Egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette vineuse","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta gorgirroja","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hydranassa vinaceigula","author_year":"(Sharpe, 1895)"},{"full_name":"Melanophoyx vinaceigula","author_year":"Sharpe, 1895"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11500,"full_name":"Dermochelys coriacea","author_year":"(Vandelli, 1761)","common_names":[{"lang":"English","names":"Leatherback turtle, Trunkback turtle, Coffin-back turtle, Luth turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Joseph, D. 1984. The National Report: Antigua and Barbuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J., McLachlan, N. C. and Miller, J. D. 1984. Further observations on breeding of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Australia. Australian Wildlife Res.: 11: 567-571.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Haelters, J. and Kerckhof, F. 1999. [A record of the Leatherback turtle \u003Ci\u003EDermochelys coriacea\u003C/i\u003E (Linnaeus, 1758), and the first record of \u003Ci\u003EStomatolepas dermochelys\u003C/i\u003E Monroe and Limpus, 1979 on the Belgian coast.]. Een waarneming van de lederschildpad \u003Ci\u003EDermochelys coriacea\u003C/i\u003E (Linnaeus, 1758), en de eerste waarneming van \u003Ci\u003EStomatolepas dermochelys\u003C/i\u003EMonroe and Limpus, 1979 aan de Belgische kust. Strandvlo : 19: 30-39.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; van Gompel, J. 1990. First record of the leather-backed turtle Dermochelys coriacea (Linnaeus, 1758) on the Belgian coast. Strandvlo: 9: 102.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Lazar, B. and Holcer, D. 1998. Notes on the marine turtles of Sal Island, Cape Verde Islands. P. 231 in S. Epperly and J. Braun (compilers) Proceedings of the Seventeenth Annual Sea Turtle Symposium. U.S. Dep. Commer. NOAA Tech Memo. NMFS-SEFSC-415. 294; López-Jurado, L. F., Cabrera, I., Cejudo, D., Évora, C. and Alfama, P. 2000. Distribution of marine turtles in the Archipelago of Cape Verde, Western Africa. Pp. 245-247 in Proceedings of the Nineteenth Annual Symposium on Sea Turtle Biology and Conservation. U.S. Dept. Commerce. NOAA Tech. Memo. NMFS-SEFSC-443. 291","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Godgenger, M.-C., Bréheret, N., Bal, G., N'Damité, K., Girard, A. and Girondot, M. 2009. Nesting estimation and analysis of threats for Critically Endangered leatherback \u003Ci\u003EDermochelys coriacea\u003C/i\u003E and Endangered olive ridley \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E marine turtles nesting in Congo. Oryx: 43: 556-563.; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Campbell, C.L., C.J. Lageux, J.A. Mortimer. 1996. Leatherback turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E nesting at Tortuguero, Costa Rica, in 1995. Chelonian Conservation and Biology : 2: 169-172.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Leslie, A.J., D.N. Penick, J.R. Spotila, and F.V. Paladino. 1996. Leatherback turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, nesting and nest success at Tortuguero, Costa Rica, in 1990-1991. Chelonian Conservation and Biology: 2: 159-168.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Edwards, S. 1984. The National Report: Dominica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Chevalier, J. and Girondot, M. 2000. Recent population trend for \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in French Guiana. NOAA Technical Memorandum NMFS-SEFSC U.S. Department Commerce: 436: 56-57; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Girondot, M. and J. Fretey. 1996. Leatherback turtles, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, nesting in French Guiana, 1978-1995. Chelonian Conservation and Biology: 2: 204-208.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gargominy, O. (ed.). 2003. Biodiversité et conservation en outre-mer - Pacifique. Polynésie française. Comité français pour l’UICN. Paris, France.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Petersen, A. 1984. Ledurskjaldbaka Fundin Vid Island. [\u003Ci\u003EDermochelys coriacea\u003C/i\u003E (order Chelonia) recorded in Iceland]. Natturufraedingurinn : 53: 161.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Baltosser, W. H. 1982. Geographic distribution. Serpentes: \u003Ci\u003EBoa constrictor imperator\u003C/i\u003E. Herpetological Review: 13: 81-82.; Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. M. 1998. Morphometrics, distribution and ecology of chelonians in Jordan (Reptilia: Testudines). Faunistische Abhandlungen (Dresden) -Supplement: 21: 31-41.; Kinzelbach, R. 1986. First record of the Leatherback Turtle, \u003Ci\u003EDermochelys coriacea\u003C/i\u003E, from Jordan. Zoology Middle East: 1: 87-88.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; WWF/EGA/SSC. 2005. Marine and coastal resources assessment of the Eastern Region of Libya. Background study for the preparation of a conservation plan. The Environment General Authority of the Great Socialist People's Libyan Arab Jamahiriya.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Glaw, F. and Vences, M. 2003. Introduction to amphibians. In S. Goodman and J. Bengston (eds) Natural History of Madagascar. University of Chicago Press. Chicago, I.; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Martinique. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Meylan, A., P. Meylan and A. Ruiz. 1985. Nesting of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Caribbean Panama. Journal of Herpetology: 19: 293-297.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Quinn, N. J., and Kojis, B. L. 1985. Leatherback Turtles under threat in Morobe Province Papua New Guinea. PLES (South Pacific Commission): 1: 79-99.; Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Morris, K. 1984. The National Report: St Vincent. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Thompson N.B., J.R. Schmid, S.P. Epperly, M.L. Snover, J. Braun-McNeill, W.N. Witzell, W.G. Teas, L.A. Csuzdi and R.A. Myers. et al. 2001. Stock assessment of leatherback sea turtles of the western north Atlantic. NOAA Technical Memorandum NMFS-SEFSC: 455: 67-104.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Hughes, G.R. 1996. Nesting of the leatherback turtle \u003Ci\u003EDermochelys coriacea\u003C/i\u003E in Tongaland, KwaZulu-Natal, South Africa, 1963-1995. Chelonian Conservation and Biology : 2: 153-158.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reichart, H. A. 1986. Sea turtles of Suriname. American: 38: 477.; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mathiasson, S. 1995. [A new Swedish find of \u003Ci\u003EDermochelys coriacea\u003C/i\u003E]. Nytt svenskt fynd av havsladerskoldpadda (\u003Ci\u003EDermochelys coriacea\u003C/i\u003E). Goteborgs Naturhistoriska Museum Arstryck 1995: 31-34.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Bacon, P.R. 1970. Studies of the leatherback turtles, \u003Ci\u003EDermochelys coiacea\u003C/i\u003E (L.), in Trinidad, West Indies. Biological Conservation: 2: 213-217.; Bacon, P.R. and G.K. Maliphant. 1971. Further studies on sea turtles in Trinidad and Tobago. Journal of the Trinidad Field Naturalists Club: 1971: 2-17.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.; Eckert, K.L. and W. Herron. 1998. Tobago's illegal Leatherback hunt. Environment Tobago Newsletter: 2.2.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Knowlton, A.R. and Weigle, B. 1989. A note on the distribution of leatherback turtles \u003Ci\u003EDermochelys coriacea\u003C/i\u003E along the Florida coast in February 1988. NOAA Technical Memorandum, NMFS-SEFC.: 232: 83-85","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Boulon, R.H., Jr., P.H. Dutton, and D.L. McDonald. 1996. Leatherback turtles \u003Ci\u003EDermochelys coriacea\u003C/i\u003E on St. Croix, U.S. Virgin Islands: fifteen years of conservation. Chelonian Conservation and Biology: 2: 141-147.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Dermochelyidae","genus_name":"Dermochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Dermochelyidae spp.","auto_note":"FAMILY ADDITION Dermochelyidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11501,"full_name":"Oenanthe finschii","author_year":"(Heuglin, 1869)","common_names":[{"lang":"Danish","names":"Hvidrykket Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Finsch' Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Finsch's Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoselkätasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet de Finsch","convention_language":true,"id":null},{"lang":"German","names":"Felsensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Török hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella di Finsch","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco de Finsch, Chasso de Finsch","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba de Finsch","convention_language":true,"id":null},{"lang":"Swedish","names":"Finschstenskvätta, Finschtenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11502,"full_name":"Sterna hirundo","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Rybák obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Fjordterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Visdiefje","convention_language":false,"id":null},{"lang":"English","names":"Common Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Kalatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne pierregarin","convention_language":true,"id":null},{"lang":"German","names":"Flußseeschwalbe, Flusseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Küszvágó csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna comune","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa zwyczajna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-commun, Andorinha-do-mar-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Fisktärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Rasmussen, P. C. and López H., N. 1988. Notes on the status of some birds of Region X, Chile. Bulletin of the British Ornithologists' Club: 108: 154-159.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Populations breeding in the Western Palearctic.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11503,"full_name":"Turdus kessleri","author_year":"(Przewalski, 1876)","common_names":[{"lang":"English","names":"Kessler's Thrush, White-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle de Kessler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11504,"full_name":"Pelecanus onocrotalus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Pelikán bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Almindelig pelikan","convention_language":false,"id":null},{"lang":"Dutch","names":"Pelikaan, Gewone Pelikaan, Witte Pelikaan","convention_language":false,"id":null},{"lang":"English","names":"White Pelican, Great White Pelican","convention_language":true,"id":null},{"lang":"Finnish","names":"Pelikaani","convention_language":false,"id":null},{"lang":"French","names":"Pélican blanc","convention_language":true,"id":null},{"lang":"German","names":"Rosapelikan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rózsás gödény","convention_language":false,"id":null},{"lang":"Italian","names":"Pellicano","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pelicano-vulgar","convention_language":false,"id":null},{"lang":"Spanish","names":"Pelícano Común, Pelícano vulgar","convention_language":true,"id":null},{"lang":"Swedish","names":"Pelikan, Vit pelikan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Zhatkanbayev, A. H. 1994. The present state of pelican populations (\u003Ci\u003EPelecanus onocrotalus\u003C/i\u003E and \u003Ci\u003EP. crispus\u003C/i\u003E) in Kazakhstan. Bulletin of the British Ornithologists' Club: 114: 202-205.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Pelecanus roseus","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11505,"full_name":"Leucogeranus leucogeranus","author_year":"(Pallas, 1773)","common_names":[{"lang":"Danish","names":"Snetrane","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Witte Kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Siberian White Crane, Siberian Crane, Snow Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Lumikurki","convention_language":false,"id":null},{"lang":"French","names":"Leucogéranne, Grue de Sibérie, Grue blanche d'Asie","convention_language":true,"id":null},{"lang":"German","names":"Nonnenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru bianca asiatica","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla blanca asiática, Grulla siberiana, Grulla siberiana blanca","convention_language":true,"id":null},{"lang":"Swedish","names":"snötrana","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennerley, P. R. 1987. A survey of the birds of the Poyang Lake Nature Reserve, Jiangxi Province, China, 29 December 1985 - 4 January 1986. Hong Kong Bird Report 1984/1985: 97-111.; Meyer de Schauensee, R. 1984. The birds of China. Oxford University Press. Oxford.; Williams, M. D., Bakewell, D. N., Carey, G. J. and Holloway, S. J. 1986. On the bird migration at Beidaihe, Hebei Province, China, during spring 1985. Forktail: 2: 3-20.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kreuzberg-Mukhina, E. 2003. Some unusual patterns of bird migration in Uzbekistan, spring 2002. Sandgrouse: 25: 59-62.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Leucogeranus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Grus leucogeranus","author_year":"Pallas, 1773"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EGrus leucogeranus\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/1999","name":"Siberian Crane"},{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11506,"full_name":"Oenanthe cypriaca","author_year":"(Homeyer, 1884)","common_names":[{"lang":"Dutch","names":"Cyperse Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Cyprus Pied Wheatear, Cyprus Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet de Chypre","convention_language":true,"id":null}],"distributions":[{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11508,"full_name":"Pseudorca crassidens","author_year":"(Owen, 1846)","common_names":[{"lang":"English","names":"False Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Faux-orque","convention_language":true,"id":null},{"lang":"Portuguese","names":"Falsa orca","convention_language":false,"id":null},{"lang":"Spanish","names":"Orca falsa","convention_language":true,"id":null},{"lang":"Swedish","names":"halvspäckhuggare, svart späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Baird, R. W., Langelier, K. M. and Stacey, P. J. 1989. First records of False Killer Whales \u003Ci\u003EPseudorca crassidens\u003C/i\u003E in Canada. Canadian Field Naturalist: 103: 368-371.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fuentes, H. R. 1987. Observaciones sobre \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen 1846) (Odontoceti: Delphinidae) varadas en Los Choros, Coquimbo, 4 Region, Chile. An. Mus. Hist. Nat. Valparaiso: 18: 169-175.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Acevedo Gutierrez, A. 1996. Lista de mamiferos marinos en Golfo Dulce e Isla del Coco, Costa Rica. Revista de Biologia Tropical: 44: 933-934.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Van Waerebeek, K. and de Smet, W. M. A. 1996. A second confirmed record of the False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846) (Cetacea, Delphinidae) from West Africa. Mammalia: 60: 319-322.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Killer whale, \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus) and false killer whale, \u003Ci\u003EPseudorca crassidens\u003C/i\u003E Owen, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 181-182.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Greaves, J. and Garrigue, C. 1999. First record of false killer whales (\u003Ci\u003EPseudorca crassidens\u003C/i\u003E), in New Caledonia, South Pacific. Memoirs of the Queensland Museum: 43: 588.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, M. L. L., Yaptinchay, A. A., Jaaman, S. A., Santos, M. D., Muhamad, S. B. S., Perrin, W. F. and Alava, M. N. R. 1997. Preliminary investigation of marine mammal distribution, abundance, and interactions with humans in the southern Sulu Sea. Asian Marine Biology: 14: 61-81.; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Odell, D. K. and McClune, K. M. 1999. False Killer Whale \u003Ci\u003EPseudorca crassidens\u003C/i\u003E (Owen, 1846). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baird, R.W., Gorgone, A.M., McSweeny, D.J., Salden, D.R., Deakos, M.H., Liigon, A.D., Schorr, G.S., Barlow, J. and Mahaffy, S.D. 2008. False killer whales (\u003Ci\u003EPseudorca crassidens\u003C/i\u003E) around the main Hawaiian Islands: long-term site fidelity, inter-island movements, and association patterns. Marine Mammal Science: 24: 591-612.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Jefferson, T. A., Leatherwood, S., Ho, D. T., Thuoc, C. V. and Quang, L. H. 1997. Investigations of marine mammals in Vietnam. Asian Marine Biology: 14: 145-172.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Pseudorca","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11509,"full_name":"Muscicapa sibirica","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Dark-sided Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de Sibérie","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11510,"full_name":"Tadarida insignis","author_year":"Blyth, 1862","common_names":[{"lang":"English","names":"East Asian Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ETadarida teniotis\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11511,"full_name":"Acrocephalus melanopogon","author_year":"(Temminck, 1823)","common_names":[{"lang":"Czech","names":"Rákosník tamaryškový","convention_language":false,"id":null},{"lang":"Danish","names":"Tamarisksanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartkoprietzanger","convention_language":false,"id":null},{"lang":"English","names":"Moustached Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Osmankäämikerttunen, Tamariskikerttunen","convention_language":false,"id":null},{"lang":"French","names":"Lusciniole à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Mariskensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fülemülesitke","convention_language":false,"id":null},{"lang":"Italian","names":"Forapaglie castagnolo","convention_language":false,"id":null},{"lang":"Polish","names":"Tamaryszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-real","convention_language":false,"id":null},{"lang":"Russian","names":"Tonkoklyuvaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín real","convention_language":true,"id":null},{"lang":"Swedish","names":"Kaveldunsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Lusciniola melanopogon","author_year":"(Temminck, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11515,"full_name":"Larus hartlaubii","author_year":"Bruch, 1853","common_names":[{"lang":"English","names":"King Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Hartlaub","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota plateada Surafricana","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus novaehollandiae hartlaubii","author_year":"Stephens, 1826"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11516,"full_name":"Niltava davidi","author_year":"La Touche, 1907","common_names":[{"lang":"English","names":"Fujian Niltava","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de David","convention_language":true,"id":null},{"lang":"German","names":"Davidniltava","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk niltava, koboltniltava","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. 2000. Twenty six further new species for Cambodia. Cambodia Bird News: 6: 37-43.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11520,"full_name":"Gavialis gangeticus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Ganges gavial","convention_language":false,"id":null},{"lang":"Dutch","names":"Ganges-gaviaal","convention_language":false,"id":null},{"lang":"English","names":"Gharial, Fish-eating Crocodile, Gavial, Long-nosed Crocodile","convention_language":true,"id":null},{"lang":"Finnish","names":"Gangesingaviaali","convention_language":false,"id":null},{"lang":"French","names":"Gavial Du Gange","convention_language":true,"id":null},{"lang":"German","names":"Gangesgavial","convention_language":false,"id":null},{"lang":"Italian","names":"Gaviale del Gange","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavial del Ganges","convention_language":true,"id":null},{"lang":"Swedish","names":"gangesgavial, garial, gavial","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Faizuddin, M. 1985. Distribution, abundance and conservation of Gharials in Bangladesh. Tigerpaper: 12: 22-23.; Khan, M. A. R. 1982. Present status and distribution of the crocodiles and gharial of Bangladesh. In: Crocodiles. Proceedings of the 5th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN. ; Whitaker, R. 1982. Export prospects from commercial crocodile farms in Bangladesh. Report on a mission. Project No. GTO/03/07. International Trade Centre UNCTAD/GATT. ITC/DIP/63 . ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Nair, A.K. 2009. The status and distribution of major aquatic fauna in the National Chambal Gharial Sanctuary in Rajasthan with special reference to the Gangetic Dolphin \u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E (Cetartiodactyla: Platanistidae). Journal of Threatened Taxa: 1: 141-146.; Singh, L.A.K. and Bustard H.R. 1982. Geographical distribution of the gharial \u003Ci\u003EGravialis gangeticus\u003C/i\u003E (Gmelin) in Orissa, India. British Journal of Herpetology: 6: 259-260.; Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.; Singh, L. A. K., Kar, S., and Choudhury, B. C. 1986. Indian crocodilians: a 10-year review of management. In: Crocodiles. Proceedings of the 7th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN and FUDENA. ; Singh, L. A. K., Kar, S., and Choudhury, B. C. 1986. India: status of wild crocodiles. In: Crocodiles. Proceedings of the 7th Working Meeting of the Crocodile Specialist Group of the Species Survival Commission of the International Union for Conservation of Nature and Natural Resources. IUCN and FUDENA. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"extinct","country_references":"Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Singh, L. A. K., and Choudhury, B. C. 1982. Indian crocodiles - conservation and research. Forum of Crocodile Researchers, India. Hyberabad.; Swan, L. W., and Leviton, A. E. 1962. The herpetology of Nepal: a history, checklist, and zoogeographical analysis of the herpetofauna. Proceedings of the California Academy of Sciences: 32: 103-147.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Minton, S. A. 1966. A contribution to the herpetology of West Pakistan. Bulletin of the American Museum of Natural History: 134: 27-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Crocodylia","class_name":"Reptilia","family_name":"Gavialidae","genus_name":"Gavialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11521,"full_name":"Hypsugo savii","author_year":"(Bonaparte, 1837)","common_names":[{"lang":"Albanian","names":"Pipistreli i Savit","convention_language":false,"id":null},{"lang":"Croatian","names":"Primorski šišmiš","convention_language":false,"id":null},{"lang":"Danish","names":"Savis flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Savi's dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Savi's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Alpi nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Alppipikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Vespère de Savi","convention_language":true,"id":null},{"lang":"German","names":"Alpenfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alpesi törpedenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello di Savi","convention_language":false,"id":null},{"lang":"Norwegian","names":"Saviflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik Saviego","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Savii","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-munte","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago montañero","convention_language":true,"id":null},{"lang":"Swedish","names":"Alpfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 2001. Status and distribution of bats in Bangladesh with notes on their ecology. Zoos' Print Journal: 16: 479-483.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bihari, Z. and Gombkoto, P. 1994. [Contribution to the faunistical knowledge of bats in north-east Hungary.]. Folia Historico Naturalia Musei Matraensis: 18: 163-189.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Makin, D. 1987. The status of bats in Israel. Pp. 403-408 in V. Hanak, I. Horacek and I. Gaisler (eds) European bat research 1987. Proceedings of the Fourth European Bat Research Symposium. Charles University Press. Prague.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Radulet, N. 1996. \u003Ci\u003EPipistrellus savii\u003C/i\u003E (Bonaparte, 1837) (Chiroptera: Vespertilionidae) signale pour la première fois en Roumanie. Travaux du Museum National d'Histoire Naturelle \"Grigore Antipa\": 36: 385-389.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Hypsugo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Pipistrellus savii","author_year":"(Bonaparte, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11522,"full_name":"Pterodroma phaeopygia","author_year":"(Salvin, 1876)","common_names":[{"lang":"English","names":"Dark-rumped Petrel, Galápagos Petrel, Galapagos Petrel, Hawaiian Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel des Hawaï","convention_language":true,"id":null},{"lang":"Spanish","names":"Petrel Hawaiano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Oestrelata phaeopygia","author_year":"Salvin, 1876"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11523,"full_name":"Polysticta stelleri","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Stellersand","convention_language":false,"id":null},{"lang":"Dutch","names":"Stellers Eidereend, Steller's Eidereend","convention_language":false,"id":null},{"lang":"English","names":"Steller's Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Allihaahka","convention_language":false,"id":null},{"lang":"French","names":"Eider de Steller","convention_language":true,"id":null},{"lang":"German","names":"Scheckente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Steller-pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Edredone di Steller","convention_language":false,"id":null},{"lang":"Polish","names":"Birginiak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider de Steller","convention_language":false,"id":null},{"lang":"Russian","names":"Sibirskaya Gaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider de Steller, Eider menor, Eider Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"alförrädare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Polysticta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas stelleri","author_year":"Pallas, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11524,"full_name":"Locustella fluviatilis","author_year":"(Wolf, 1810)","common_names":[{"lang":"Danish","names":"Flodsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Krekelzanger","convention_language":false,"id":null},{"lang":"English","names":"Eurasian River Warbler, River Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viitasirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle fluviatile","convention_language":true,"id":null},{"lang":"German","names":"Schlagschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Locustella fluviatile","convention_language":false,"id":null},{"lang":"Polish","names":"Wierszczak, Strumieniówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-fluvial","convention_language":false,"id":null},{"lang":"Russian","names":"Rechnoy Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Fluvial","convention_language":true,"id":null},{"lang":"Swedish","names":"Flodsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11525,"full_name":"Anas platyrhynchos","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kachna divoká","convention_language":false,"id":null},{"lang":"Danish","names":"Gråand","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilde Eend","convention_language":false,"id":null},{"lang":"English","names":"Mallard, Common Mallard","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinisorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard colvert","convention_language":true,"id":null},{"lang":"German","names":"Stockente","convention_language":false,"id":null},{"lang":"Italian","names":"Germano reale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-real","convention_language":false,"id":null},{"lang":"Spanish","names":"Anade azulón","convention_language":true,"id":null},{"lang":"Swedish","names":"Gräsand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced (?),introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"introduced (?)","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Debski, I. 1995. Mallard \u003Ci\u003EAnas platyrhynchos\u003C/i\u003E in Nigeria. Malimbus: 17: 31-32.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain,introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leonard, P. M. 2001. A Mallard \u003Ci\u003EAnas platyrhynchos\u003C/i\u003E in the Luangwa Valley. Zambia Bird Report: 1999: 90-91.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas diazi","author_year":"Ridgway, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11526,"full_name":"Phoenicurus auroreus","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"Daurian Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue aurore","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11527,"full_name":"Bartramia longicauda","author_year":"(Bechstein, 1812)","common_names":[{"lang":"Danish","names":"Bartramsklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Bartram's Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Upland Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Maubèche des champs","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos batitú","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Kirwan, G. M. and Sharpe, C. J. 1999. Range extensions and notes on the status of little-known species from Venezuela. Bulletin of the British Ornithologists' Club: 119: 38-47.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Bartramia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa longicauda","author_year":"Bechstein, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11528,"full_name":"Vanellus senegallus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Wattled Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau du Sénégal","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría Senegalesa","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Afribyx senegallus","author_year":"(Linnaeus, 1766)"},{"full_name":"Parra senegalla","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11529,"full_name":"Ardea cinerea","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Volavka popelavá","convention_language":false,"id":null},{"lang":"Danish","names":"Fiskehejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwe Reiger","convention_language":false,"id":null},{"lang":"English","names":"Grey Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaahaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron cendré","convention_language":true,"id":null},{"lang":"German","names":"Graureiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke gém","convention_language":false,"id":null},{"lang":"Italian","names":"Airone cenerino","convention_language":false,"id":null},{"lang":"Polish","names":"Czapla siwa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-real","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Tsaplya","convention_language":false,"id":null},{"lang":"Spanish","names":"Garza Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråhäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Palacios, C.-J. and Barone, R. 2001. Le Héron cendré \u003Ci\u003EArdea cinerea\u003C/i\u003E, nouvelle espèce nidificatrice aux Îles du Cap Vert. Alauda: 69: 18.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea monicae","author_year":"Jouanin \u0026 Roux, 1963"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11530,"full_name":"Calidris subminuta","author_year":"(Middendorff, 1853)","common_names":[{"lang":"Dutch","names":"Taigastrandloper","convention_language":false,"id":null},{"lang":"English","names":"Long-toed Stint","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à longs doigts","convention_language":true,"id":null},{"lang":"Russian","names":"Dlinnopaly Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos dedilargo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia subminuta","author_year":"(Middendorff, 1853)"},{"full_name":"Tringa subminuta","author_year":"Middendorff, 1853"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11531,"full_name":"Luscinia megarhynchos","author_year":"(Brehm, 1831)","common_names":[{"lang":"Czech","names":"Slavík obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Sydlig Nattergal","convention_language":false,"id":null},{"lang":"Dutch","names":"Nachtegaal","convention_language":false,"id":null},{"lang":"English","names":"Nightingale, Common Nightingale","convention_language":true,"id":null},{"lang":"Finnish","names":"Etelänsatakieli","convention_language":false,"id":null},{"lang":"French","names":"Rossignol philomèle","convention_language":true,"id":null},{"lang":"German","names":"Nachtigall","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"ruiseñor Común, Ruisenõr Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sydnäktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Luscinia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus megarhynchos","author_year":"(Brehm, 1831)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11534,"full_name":"Tringa incana","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Wandering Tattler","convention_language":true,"id":null},{"lang":"French","names":"Chevalier errant","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero de Alaska","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"distribution uncertain","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Heteroscelus incanus","author_year":"(Gmelin, 1789)"},{"full_name":"Scolopax incana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11535,"full_name":"Vanellus superciliosus","author_year":"(Reichenow, 1886)","common_names":[{"lang":"English","names":"Brown-chested Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à poitrine châtaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría pechirrufa","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anomalophrys superciliosus","author_year":"(Reichenow, 1886)"},{"full_name":"Lobivanellus superciliosus","author_year":"Reichenow, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11536,"full_name":"Lontra provocax","author_year":"(Thomas, 1908)","common_names":[{"lang":"English","names":"Southern River Otter","convention_language":true,"id":null},{"lang":"French","names":"Loutre Du Chili","convention_language":true,"id":null},{"lang":"Spanish","names":"Huillín","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Chehébar, C. E., Gallur, A., Giannico, G., Gottelli, M. D. and Yorio, P. 1986. A survey of the Southern River Otter \u003Ci\u003ELutra provocax\u003C/i\u003E in Lanin, Puelo and Los Alerces National Parks, Argentina, and evaluation of its conservation status. Biological Conservation: 38: 293-304.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Sterling D. Miller, Jurgen Rottmann, Kenneth J. Raedeke and Richard D. Taber. 1983. Endangered Mammals of Chile: Status and Conservation. Biological Conservation : 25: 335-352.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Mustelidae","genus_name":"Lontra","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ELutra provocax\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11537,"full_name":"Charadrius hiaticula","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stor Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Bontbekplevier","convention_language":false,"id":null},{"lang":"English","names":"Common Ringed Plover, Ringed Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Tylli","convention_language":false,"id":null},{"lang":"French","names":"Grande Gravelot, Pluvier grand-gravelot, Grand Gravelot","convention_language":true,"id":null},{"lang":"German","names":"Sandregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Parti lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere grosso","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sandlo","convention_language":false,"id":null},{"lang":"Polish","names":"sieweczka obrozna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-grande-de-coleira","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Större strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fenchuk, V. A. and Bagdanovich, L. A. 2004. [Breeding record of Ringed Plover (\u003Ci\u003ECharadrius hiaticula\u003C/i\u003E) in the far south west of Belarus.]. Subbuteo: 7: 29-31.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11538,"full_name":"Gallinago hardwickii","author_year":"(Gray, 1831)","common_names":[{"lang":"English","names":"Japanese Snipe, Latham's Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine du Japon","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Japonesa","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella hardwickii","author_year":"(J. E. Gray, 1831)"},{"full_name":"Scolopax hardwickii","author_year":"J. E. Gray, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11539,"full_name":"Myiagra rubecula","author_year":"(Latham, 1801)","common_names":[{"lang":"English","names":"Leaden Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Monarque rougegorge","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Myiagra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11540,"full_name":"Sylvia borin","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Dutch","names":"Tuinfluiter","convention_language":false,"id":null},{"lang":"English","names":"Garden Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Lehtokerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette des jardins","convention_language":true,"id":null},{"lang":"German","names":"Gartengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Beccafico","convention_language":false,"id":null},{"lang":"Polish","names":"Gajówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-figueiras","convention_language":false,"id":null},{"lang":"Russian","names":"Sadovaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Mosquitera","convention_language":true,"id":null},{"lang":"Swedish","names":"Trädgårdssångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Berlioz, J. 1958. Étude d'une collection d'oiseaux de Guinée française. Bulletin du Muséum Nationale d'Histoire Naturelle : 30: 490-497.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11541,"full_name":"Plecotus austriacus","author_year":"(Fischer, 1829)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshgjate i hirte","convention_language":false,"id":null},{"lang":"Croatian","names":"Juzni dugouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr dlouhouchý","convention_language":false,"id":null},{"lang":"Danish","names":"Grå langøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijze grootoorvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Grey Big-eared Bat, Grey Long-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Hall-suurkõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Harmaakorvayökkö","convention_language":false,"id":null},{"lang":"French","names":"Oreillard gris","convention_language":true,"id":null},{"lang":"German","names":"Graues Langohr","convention_language":false,"id":null},{"lang":"Italian","names":"Orecchione meridionale","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Pilkasis ausylis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Grå langøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Gacek szary","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-orelhudo-cinzento","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier sivý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejudo gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Grå långörad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Benda, P. and Ivanova, T. 2003. Long-eared bats, genus \u003Ci\u003EPlecotus\u003C/i\u003E (Mammalia: Chiroptera), in Bulgaria: a revision of systematic and distributional status. Journal of the National Museum, Natural History Series: 172: 157-172.; Gaisler, J. and Hanak, V. 1964. Graues Langohr \u003Ci\u003EPlecotus austriacus\u003C/i\u003E (Fischer 1829) in Bulgarien. Folia Zoologica, Brno: 13: 31-38.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Osborn, D. J. 1989. New bat records from the Red Sea Mountains of Egypt. Mammalia: 52: 596-598.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Spitzenberger, F., Strelkov, P. P., Winkler, H. and Haring, E. 2006. A preliminary revision of the genus \u003Ci\u003EPlecotus\u003C/i\u003E (Chiroptera, Vespertilionidae) based on genetic and morphological results. Zoologica Scripta: 35: 187-230.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Nader, I. A. and Kock, D. 1990. \u003Ci\u003EPlecotus austriacus\u003C/i\u003E (Fischer, 1829) new to Saudi Arabia, with remarks on taxonomy and zoogeography (Mammalia: Chiroptera: Vespertilionidae). Fauna of Saudi Arabia: 11: 318-322.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nader, I. A. and Kock, D. 1983. Notes on some bats from the Near East (Mammalia: Chiroptera). Zeitschrift Säugetierkunde: 48: 1-9.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Petrushenko, Y. V. 2000. [Record of \u003Ci\u003EPlecotus austriacus\u003C/i\u003E in Podolia.]. Vestnik Zoologii: 34: 20.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Plecotus ariel","author_year":"Thomas, 1911"},{"full_name":"Plecotus christiei","author_year":"Gray, 1838"},{"full_name":"Plecotus christii","author_year":"Gray, 1838"},{"full_name":"Plecotus kozlovi","author_year":"Bobrinskoj, 1926"},{"full_name":"Plecotus turkmenicus","author_year":"Strelkov, 1988"},{"full_name":"Plecotus wardi","author_year":"Thomas, 1911"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11542,"full_name":"Phylloscopus sindianus","author_year":"Brooks, 1879","common_names":[{"lang":"English","names":"Mountain Chiffchaff","convention_language":true,"id":null},{"lang":"French","names":"Pouillot montagnard","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11543,"full_name":"Falco cherrug","author_year":"Gray, 1834","common_names":[{"lang":"Czech","names":"Raroh velký","convention_language":false,"id":null},{"lang":"Danish","names":"Slagfalk eller sakerfalk, Slagfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Sakervalk","convention_language":false,"id":null},{"lang":"English","names":"Saker Falcon, Saker","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkohaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon sacre","convention_language":true,"id":null},{"lang":"German","names":"Saker, Würgfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerecsensólyom","convention_language":false,"id":null},{"lang":"Italian","names":"Sacro","convention_language":false,"id":null},{"lang":"Polish","names":"Raróg","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-sacre","convention_language":false,"id":null},{"lang":"Spanish","names":"Halcón sacre","convention_language":true,"id":null},{"lang":"Swedish","names":"Tatarfalk, Slagfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":"Except Mongolian populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11544,"full_name":"Rhincodon typus","author_year":"Smith, 1828","common_names":[{"lang":"Afrikaans","names":"Walvishaai","convention_language":false,"id":null},{"lang":"Arabic","names":"Chanaz","convention_language":false,"id":null},{"lang":"Cebuano","names":"Tuki-tuki, Tawiki","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Chlarm, Yaak","convention_language":false,"id":null},{"lang":"English","names":"Whale Shark","convention_language":true,"id":null},{"lang":"Fijian","names":"Dakuwaqa","convention_language":false,"id":null},{"lang":"French","names":"Chagrin, Requin-baleine","convention_language":true,"id":null},{"lang":"German","names":"Rauhhai, Walhai","convention_language":false,"id":null},{"lang":"Japanese","names":"Jinbeizame","convention_language":false,"id":null},{"lang":"Malay","names":"Yu paus","convention_language":false,"id":null},{"lang":"Malayalam","names":"Thimingala sura, Pulli udoombu","convention_language":false,"id":null},{"lang":"Marathi","names":"Karanj","convention_language":false,"id":null},{"lang":"Polish","names":"Rekin wielorybi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão baleia, Pintado, Pintadona","convention_language":false,"id":null},{"lang":"Spanish","names":"Pez dama, Dámero, Tiburón Ballena","convention_language":true,"id":null},{"lang":"Swahili","names":"Vaame","convention_language":false,"id":null},{"lang":"Tagalog","names":"Tuko, Isdang tuku","convention_language":false,"id":null},{"lang":"Tamil","names":"Pulli udoombu, Thimingal sura","convention_language":false,"id":null},{"lang":"Telugu","names":"Thimingila sora","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Holmberg, J., Norman, B. and Arzoumania, Z. 2009. Estimating population size, structure, and residency time for whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E through collaborative photo-identification. Endangered Species Research: 7: 39-53.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Heyman, W. D., Graham, R. T., Kjerfve, B. and Johannes, R .E. 2001. Whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E aggregate to feed on fish spawn in Belize. Marine Ecology Progress Series: 215: 275-282.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Winterbottom, R. and Anderson, R. C. 1997. A revised checklist of the epipelagic and shore fishes of the Chagos Archipelago, central Indian Ocean. Ichthyological Bulletin of the J.L.B. Smith Institute of Ichthyology 66: 1-28.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Monteiro, P., Ribeiro, D. Silva, J. A., Bispo, J. and Gonçalves, J. M. S. 2008. Ichthyofauna assemblages from two unexplored Atlantic seamounts: Northwest Bank and João Valente Bank (Cape Verde archipelago). Scientia Marina: 72(1): 133-143.; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Burgess, G. H., Smith, S. H. and Lane, E. D. 1994. Fishes of the Cayman Islands. In: Brunt, M. A. and Davies, J. E. (eds.) The Cayman Islands: Natural History and Biogeography. Kluwer Academic Publishers: Dordrecht, The Netherlandspringer, 199-228.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Hobbs, J. A., Frisch, A. J., Hamanaka, T., McDonald, C. A., Gilligan, J. J. and Neilson, J. 2009. Seasonal aggregation of juvenile whale sharks (\u003Ci\u003ERhincodon typus\u003C/i\u003E) at Christmas Island, Indian Ocean. Coral Reefs: 28: 577.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaños, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Graham, R. T. 2007. Whale sharks of the western Caribbean: An overview of current research and conservation efforts and future needs for effective management of the species. Gulf and Caribbean Research: 19(2): 149-159.; Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rezzolla, D. and Storai, T. 2010. \"Whale shark expedition\": Observations on \u003Ci\u003ERhincodon typus\u003C/i\u003E from Arta Bay, Gulf of Tadjoura, Djibouti Republic, southern Red Sea. Cybium: 34(2): 195-206.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fox, S., Foisy, I., De La Parra Venegas, R., Galvan Pastoriza, B. E., Graham, R. T., Hoffmayers, E. R., Holmberg, J. and Pierce, S. J. 2013. Population structure and residency of whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E at Utila, Bay Islands, Honduras. Journal of Fish Biology: 83(3): 574-587.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V., Ganga, U., Pillai, N. G. K., Vivekanandan, E., Bineesh, K. K., Shanis, C. P. R. and Hashim, M. 2011. Deep-sea fishing for chondrichthyan resources and sustainability concerns - a case study from southwest coast of India. Indian Journal of Geo-Marine Sciences: 40(3): 347-355.; Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; White, W. T. and Cavanagh, R. D. 2007. Whale shark landings in Indonesian artisanal shark and ray fisheries. Fisheries Research: 84: 128-131.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Khalaf, M. 2004. Fish fauna of the Jordanian coast, Gulf of Aqaba, Red Sea. Journal of King Abdulaziz University: Marine Sciences: 15(1): 23-50.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.; Riley, M. J., Hale, M. S., Harman, A. and Rees, R. G. 2010. Analysis of whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E aggregations near South Ari Atoll, Maldives Archipelago. Aquatic Biology: 8: 145-150.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Balart, E. F., Castro-Aguirre, J. L., Aurioles-Gamboa, D., García-Rodríguez, F. and Villavicencio-Garayzar, C. 1995. Adiciones a la ictiofauna de Bahía de la Paz, Baja California Sur, México. Hidrobiológia: 5(1-2): 79-85.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ramírez-Macías, D., Meekan, M., De La Parra-Venegas, R., Remolina-Suárez, F., Trigo-Mendoza, M. and Vázquez-Juárez, R. 2012. Patterns in composition, abundance and scarring of whale sharks \u003Ci\u003ERhincodon typus\u003C/i\u003E near Holbox Island, Mexico. Journal of Fish Biology: 80: 1401-1416.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Brunnschweiler, J.M., Baensch, H., Pierce, S.J. and Sims, D.W. 2009. Deep-diving behaviour of a whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E during long-distance movement in the western Indian Ocean. Journal of Fish Biology: 74: 706-714.; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Duffy, C. A. J. 2002. Distribution, seasonality, lengths, and feeding behaviour of whale sharks (\u003Ci\u003ERhincodon typus\u003C/i\u003E) observed in New Zealand waters. New Zealand Journal of Marine and Freshwater Research: 36: 565-570.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Rodrigues, N. V., Correia. J. P. S., Graça, J. T. C., Rodrigues, F., Pinho, R. and Hirofumi, M. 2012. First record of a whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E in continental Europe. Journal of Fish Biology: 81(4): 1427-1429.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Robinson, D. P., Jaidah, M. Y., Jabado, R. W., Lee-Brooks, K., Nour El-Din, N. M. N., Al Malki, A. A., Elmeer, K., McCormick, P. A., Henderson, A. C., Pierce, S. J., Ormond, R. F. G. 2013. Whale sharks, \u003Ci\u003ERhincodon typus\u003C/i\u003E, aggregate around offshore feeding platforms in Qatari waters of the Arabian Gulf to feed on fish spawn. Plos One: 8(3): e58255.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Rowat, D., Gore, M., Meekan, M. G., Lawler, I. R., Bradshaw, C. J. A. 2009. Aerial survey as a tool to estimate whale shark abundance trends. Journal of Experimental Marine Biology and Ecology: 368: 1-8; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Rowat, D., Speed, C.W., Meekan, M.G., Gore, M.A. and Bradshaw, C.J.A. 2009. Population abundance and apparent survival of the Vulnerable whale shark \u003Ci\u003ERhincodon typus\u003C/i\u003E in the Seychelles aggregation. Oryx: 43: 591-598.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Wood, A. D., Brouwer, S. L., Cowley, P. D. and Harrison, T. D. 2000. An updated check list of the ichthyofaunal species assemblage of the Tsitsikamma National Park, South Africa. Koedoe: 43(1): 83-95.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chen, C. 2002. Preliminary report on Taiwan's whale shark fishery. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 162-167.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Rowat, D. Occurence of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E) in the Indian Ocean: A case for regional conservation. Fisheries Research: 84: 96-101.; Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Ebert, D. A., Mollet, H. F., Baldridge, A., Thomas, T., Forney, K. A. and Ripley, W. E. 2004. Occurence of the whale shark, \u003Ci\u003ERhincodon typus\u003C/i\u003E Smith 1828, in California waters. Northwestern Naturalist: 85: 26-28.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Orectolobiformes","class_name":"Elasmobranchii","family_name":"Rhincodontidae","genus_name":"Rhincodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11546,"full_name":"Vanellus indicus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"Danish","names":"Indisk Vibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Indische Kievit","convention_language":false,"id":null},{"lang":"English","names":"Red-wattled Plover, Red-wattled Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau indien","convention_language":true,"id":null},{"lang":"Russian","names":"Ukrashenny Chibis","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría India","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hoplopterus indicus","author_year":"(Boddaert, 1783)"},{"full_name":"Lobivanellus indicus","author_year":"(Boddaert, 1783)"},{"full_name":"Tringa indica","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11547,"full_name":"Oenanthe deserti","author_year":"(Temminck, 1825)","common_names":[{"lang":"Danish","names":"Ørkenstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijntapuit","convention_language":false,"id":null},{"lang":"English","names":"Desert Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet du désert","convention_language":true,"id":null},{"lang":"German","names":"Wüstensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella del deserto","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-do-deserto","convention_language":false,"id":null},{"lang":"Russian","names":"Pustynnaya Kamenka","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Desértica","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökenstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 1998. [Rare birds recorded in Poland in 1997.]. Notatki Ornitologiczne 39: 151-174.; Sikora, A., Póltorak, W. and Kopiec, K. 1998. [Desert Wheatear \u003Ci\u003EOenanthe deserti\u003C/i\u003E a new species for Poland.]. Notatki Ornitologiczne: 39: 177-180.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11548,"full_name":"Gallinago stenura","author_year":"(Bonaparte, 1830)","common_names":[{"lang":"Czech","names":"Bekasina asijská","convention_language":false,"id":null},{"lang":"Danish","names":"Sibirisk Bekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Stekelstaartsnip","convention_language":false,"id":null},{"lang":"English","names":"Pintail Snipe, Pin-tailed Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Suippopyrstökurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine à queue pointue","convention_language":true,"id":null},{"lang":"German","names":"Stiftbekassine","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ázsiai sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccino stenuro","convention_language":false,"id":null},{"lang":"Polish","names":"Bekas syberyjski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Nerceja-siberiana, Narceja-siberiana","convention_language":false,"id":null},{"lang":"Russian","names":"Aziatsky Bekas","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Colirrara","convention_language":true,"id":null},{"lang":"Swedish","names":"Sibirisk beckasin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella stenura","author_year":"(Bonaparte, 1830)"},{"full_name":"Scolopax stenura","author_year":"Bonaparte, 1830"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11549,"full_name":"Tadarida brasiliensis","author_year":"(I. Geoffroy, 1824)","common_names":[{"lang":"English","names":"Brazilian Free-tailed bat","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Barquez, R. M. and Ojeda, R. A. 1992. The bats (Mammalia: Chiroptera) of the Argentine Chaco. Annals of Carnegie Museum: 61: 239-261.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Morando, M. and Polop, J. J. 1997. Annotated checklist of mammal species of Cordoba Province, Argentina. Mastozoología Neotropical: 4: 129-136.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F., Kofron, K. P. and Chapman, A. 1957. Notes on the mammals of the Bahamas with special reference to bats. Journal of Mammalogy: 38: 164-174.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Aguirre, L. F. 1999. Estado de conservación de los murciélagos de Bolivia. Chiroptera Neotropical: 5: 108-112.; Anderson, S. 1997. Mammals of Bolivia. Bulletin of the American Museum of Natural History: 231: 1-652.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Salazar-Bravo, J., Tarifa, T., Aguirre, L. F., Yensen, E. and Yates, T. L. 2003. Revised checklist of Bolivian mammals. Occasional Papers, Museum of Texas Tech University: 220: 27.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 1995. Workshop sobre a conservação dos morcegos Brasileiros. Chiroptera Neotropical: 1: 24-29.; Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Stutz, W. H., de Albuquerque, M. C., Uieda, W., de Macedo, E. M. and França, C. B. 2004. Updated list of bats from Uberlandia, State of Minas Gerais, southeastern Brazil. Chiroptera Neotropical: 10: 188-190.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Rodriguez-H, B. and Wilson, D. E. 1999. Lista y distribución de las especies de murciélagos de Costa Rica. Occasional Papers in Conservation Biology: 5: 34 pp.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Hill, J. E. 1988. A bat from the Falkland Islands. Bat News: 15: 6.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCarthy, T. J., Davis, W. B., Hill, J. E., Knox Jones, J. Jr and Cruz, G. A. 1993. Bat (Mammalia: Chiroptera) records, early collectors, and faunal lists for northern Central America. Annals of Carnegie Museum: 62: 191-228.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Klingener, D., Genoways, H. H. and Baker, R. J. 1978. Bats from southern Haiti. Annals of Carnegie Museum: 47: 81-99.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; McCarthy, T. J., Davis, W. B., Hill, J. E., Knox Jones, J. Jr and Cruz, G. A. 1993. Bat (Mammalia: Chiroptera) records, early collectors, and faunal lists for northern Central America. Annals of Carnegie Museum: 62: 191-228.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Dávalos, L. M. and Eriksson, R. 2003. New and noteworthy records from ten Jamaican bat caves. Caribbean Journal of Science: 39: 140-144.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ramírez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relación nomenclatural de los Mamíferos terrestres de México. Acta Zoológica Mexicana (n. s.): 21(1): 21-82; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.; Ziegler, T., Unger, J., Feiler, A. and Lehr, E. 2002. The First Gran Chaco Expedition of the Museum für Tierkunde Dresden: records of amphibians, reptiles and mammals from the Dry Chaco of Paraguay (Amphibia, Reptilia, Mammalia). Faunistiche Abhandlungen Staatliches Museum für Tierkunde Dresden: 23: 219-238.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Patterson, B. D., Pacheco, V. and Solari, S. 1996. Distributions of bats along an elevational gradient in the Andes of south-eastern Peru. Journal of Zoology: 240: 637-658; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pedersen, S. C., Genoways, H. H., Morton, M. N., Johnson, J. W. and Courts, S. E. 2003. Bats of Nevis, northern Lesser Antilles. Acta Chiropterologica: 4: 251-267; Pedersen, S. C., Genoways, H. H., Morton, M. N., Kwiecinski, G. G. and Courts, S. E. 2005. Bats of St. Kitts (St. Christopher), northern Lesser Antilles, with comments regarding capture rates of Neotropical bats. Caribbean Journal of Science: 41: 744-760.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Vaughan, N. and Hill, J. E. 1996. Bat (Chiroptera) diversity and abundance in banana plantations and rain forest, and three new records for St. Vincent, Lesser Antilles. Mammalia: 60: 441-447.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Goodwin, G. G. and Greenhall, A. M. 1961. A review of the bats of Trinidad and Tobago: descriptions, rabies infections, and ecology. Bulletin of the American Museum of Natural History: 122: 187-302.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Anon. 2001. Nómina Oficial de Vertebrados Tetrápodos de la Fauna Silvestre. http://www.mgap.gub.uy/Renare/AreasProtegidasyFauna/Fauna/NominaOficialdeVertebrados.htm . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Wilkins, K. T. 1989. \u003Ci\u003ETadarida brasiliensis\u003C/i\u003E. Mammalian Species: 331: 10.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11550,"full_name":"Sterna dougallii","author_year":"Montagu, 1813","common_names":[{"lang":"Czech","names":"Rybák rajský","convention_language":false,"id":null},{"lang":"Danish","names":"Dougalisterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Visdief, Dougalls Stern","convention_language":false,"id":null},{"lang":"English","names":"Roseate Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruusutiira, Kalatiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne de Dougall","convention_language":true,"id":null},{"lang":"German","names":"Rosenseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rózsás csér, Küszvágó csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna di Dougall, Sterna del Dougall, Sterna comune","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa rzeczna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-comum, Andorinha-do-mar-rósea","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán rosado, Charrán Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Fisktärna, Rosentärna","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skakuj, M. and Stawarczyk, T. 1997. Five new bird species in Bahrain. Sandgrouse: 19: 39-44.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Spencer, R. and Hudson, R. 1978. Report on bird-ringing for 1976. Ringing \u0026 Migration: 1: 189-252.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and Rocamora, G. 2007. New breeding records of Roseate Tern \u003Ci\u003ESterna dougallii\u003C/i\u003E in Seychelles. Bulletin of the African Bird Club: 14: 62-67.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Atlantic population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11551,"full_name":"Tursiops aduncus","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"English","names":"Indo-Pacific Bottle-nosed Dolphin, Indian Ocean Bottlenose Dolphin, Long-beaked Bottlenose Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Grand dauphin de l'océan Indien","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín mular del Oceano Indico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Kahn, B. 2006. Ocean Cetaceans and associated habitats. In: Green, A., Lkani, P., Atu, W., Ramohia, P., Thomas, P. \u0026 Almany, J. (Eds.) Solomon Islands Marine Assessment: Technical report of the survey conducted May 13 to June 17, 2004 TNC Pacific Island Countries Report No. 1/06.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Reisinger, R.R. and Karczmarski, L. 2009. Population size estimate of Indo-Pacific bottlenose dolphins in the Algoa Bay region, South Africa. Marine Mammal Science: 26: 86-97.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Tursiops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Arafura/Timor Sea populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11552,"full_name":"Phoenicurus phoenicurus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Rehek zahradní","convention_language":false,"id":null},{"lang":"Danish","names":"Rødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Gekraagde Roodstaart","convention_language":false,"id":null},{"lang":"English","names":"Redstart, Common Redstart","convention_language":true,"id":null},{"lang":"Finnish","names":"Leppälintu","convention_language":false,"id":null},{"lang":"French","names":"Rougequeue à front blanc","convention_language":true,"id":null},{"lang":"German","names":"Gartenrotschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti rozsdafarkú","convention_language":false,"id":null},{"lang":"Italian","names":"codirosso","convention_language":false,"id":null},{"lang":"Polish","names":"Pleszka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabirruivo-de-tedta-branca, Rabirruivo-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya Gorikhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Colirrojo Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Riddell, L. 2001. Eurasian Redstart at Lake Chivero. Honeyguide: 47: 189-190.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11553,"full_name":"Cephalorhynchus commersonii","author_year":"(Lacépède, 1804)","common_names":[{"lang":"Dutch","names":"Commersons Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Commerson's Dolphin, Piebald Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Commerson","convention_language":true,"id":null},{"lang":"Spanish","names":"Tunina overa, Jacobita","convention_language":true,"id":null},{"lang":"Swedish","names":"skäckig delfin, Commersons delfin","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brown, S. G. 1988. Records of Commerson's dolphin (\u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E) in South American waters and around South Georgia. Rep. Int. Whaling Comm. Spec. Issue: 9: 85-92.; Coscarella, M.A., Gowans, S., Pedraza, S.N. and Crespo, E.A. 2011. Influence of body size and ranging patterns on delphinid sociality: associations among Commerson's dolphins. Journal of Mammalogy: 92: 544-551.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Robineau, D. 1985. Données préliminaires sur la répartition du dauphin de Commerson \u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E aux iles Kerguelen, en particulier dans le Golfe du Morbihan. Biological Conservation: 31: 85-93.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.; Robineau, D., Goodall, R. N. P., Pichler, F. and Baker, C. S. 2007. Description of a new subspecies of Commerson's dolphin, \u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E (Lacépède, 1804), inhabiting the coastal waters of the Kerguelen Islands. Mammalia: 71: 172-180.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Brown, S. G. 1988. Records of Commerson's dolphin (\u003Ci\u003ECephalorhynchus commersonii\u003C/i\u003E) in South American waters and around South Georgia. Rep. Int. Whaling Comm. Spec. Issue: 9: 85-92.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"South American population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11554,"full_name":"Monticola saxatilis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Stendrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Rode Rotslijster","convention_language":false,"id":null},{"lang":"English","names":"Rock Thrush, Rufous-tailed Rock-Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivikkorastas","convention_language":false,"id":null},{"lang":"French","names":"Monticole de roche, Monticole merle-de-roche","convention_language":true,"id":null},{"lang":"German","names":"Steinrötel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kövirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Codirossone","convention_language":false,"id":null},{"lang":"Polish","names":"nagórnik (drozd skalny), Nagórnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-das-rochas","convention_language":false,"id":null},{"lang":"Russian","names":"Pyostry Kamenny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Roquero Rojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Stentrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11555,"full_name":"Charadrius asiaticus","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Kulík kaspický","convention_language":false,"id":null},{"lang":"Danish","names":"Kaspisk Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Kaspische Plevier","convention_language":false,"id":null},{"lang":"English","names":"Caspian Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaspiantylli","convention_language":false,"id":null},{"lang":"French","names":"Pluvier asiatique","convention_language":true,"id":null},{"lang":"German","names":"Wermutregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kaspi lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere asiatico","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-asiático","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito Asiático Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Kaspisk pipare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eupoda asiatica","author_year":"(Pallas, 1773)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11556,"full_name":"Plecotus kolombatovici","author_year":"Dulic, 1980","common_names":[{"lang":"English","names":"Kolombatovic's Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11557,"full_name":"Tadorna cana","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"South African Shelduck","convention_language":true,"id":null},{"lang":"French","names":"Tadorne à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Tarro Sudafricano","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas cana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11558,"full_name":"Dromas ardeola","author_year":"Paykull, 1805","common_names":[{"lang":"Danish","names":"Krabbeæder","convention_language":false,"id":null},{"lang":"English","names":"Crab Plover, Crab-plover","convention_language":true,"id":null},{"lang":"French","names":"Drome ardéole","convention_language":true,"id":null},{"lang":"Spanish","names":"Dromas","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Chiozzi, G. and De Marchi, G. 2003. Confirmed breeding record of the Crab plover \u003Ci\u003EDromas ardeola\u003C/i\u003E in Eritrea. Bulletin of the British Ornithologists' Club: 123: 46-47.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Dromadidae","genus_name":"Dromas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11559,"full_name":"Larus saundersi","author_year":"(Swinhoe, 1871)","common_names":[{"lang":"English","names":"Saunders's Gull, Chinese Black-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Chroicocephalus saundersi","author_year":"Swinhoe, 1871"}],"cms_listings":[],"cms_instruments":[]},{"id":11560,"full_name":"Sylvia nisoria","author_year":"(Bechstein, 1795)","common_names":[{"lang":"Danish","names":"Høgesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sperwergrasmus","convention_language":false,"id":null},{"lang":"English","names":"Barred Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjokertuu, Kirjokerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette épervière","convention_language":true,"id":null},{"lang":"German","names":"Sperbergrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Karvalyposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigia padovana, Bigia padovona","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-gavião","convention_language":false,"id":null},{"lang":"Russian","names":"Yastrebinaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca gavilana","convention_language":true,"id":null},{"lang":"Swedish","names":"Höksångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11561,"full_name":"Turdus hortulorum","author_year":"Sclater, 1863","common_names":[{"lang":"English","names":"Grey-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à dos gris","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Gore, M. E. J. and Won, P-O. 1971. The birds of Korea. Royal Asiatic Society, Korea Branch, in conjunction with Taiwan Publishing Co. Seoul.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11564,"full_name":"Calidris canutus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák rezavý","convention_language":false,"id":null},{"lang":"Danish","names":"Islandsk Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kanoetstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Red Knot, Knot","convention_language":true,"id":null},{"lang":"Finnish","names":"Isosirri","convention_language":false,"id":null},{"lang":"French","names":"Bècasseau maubèche, Bécasseau maubèche","convention_language":true,"id":null},{"lang":"German","names":"knutt","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus rdzawy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Seixoeira","convention_language":false,"id":null},{"lang":"Russian","names":"Islandsky Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Gordo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kustsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pinchuk, P. V., Karlionova, N. V., Bogdanovich, I. A. and Zhuraulinou, D. V. 2004. [Red Knot (\u003Ci\u003ECalidris canutus\u003C/i\u003E) - a new species in Belarusian avifauna.]. Subbuteo: 7: 32-34.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Cramp, S. and Simmons, K. E. L. 1983. The Birds of the Western Palearctic. Vol. III. Waders to Gulls. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Tringa canutus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11565,"full_name":"Larus genei","author_year":"Brème, 1839","common_names":[{"lang":"Czech","names":"Racek tenkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Tyndnæbbet måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Dunbekmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Slender-billed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaitanokkalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland railleur","convention_language":true,"id":null},{"lang":"German","names":"Dünnschnabelmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vékonycsórú sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano roseo","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa cienkodzioba","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-de-bico-fino, Gaviota-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Picofina","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad mås, Långnäbbad mås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11566,"full_name":"Phylloscopus bonelli","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Bjergløvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Bergfluiter","convention_language":false,"id":null},{"lang":"English","names":"Bonelli's Warbler, Western Bonelli's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Vuoriuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot de Bonelli","convention_language":true,"id":null},{"lang":"German","names":"Berglaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bonelli-füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí bianco","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa de Bonelli","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Papialbo","convention_language":true,"id":null},{"lang":"Swedish","names":"Bergsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11567,"full_name":"Rallus caerulescens","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Kaffir Rail, African Rail","convention_language":true,"id":null},{"lang":"French","names":"Râle bleuâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Rascón Cafre","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Rallus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11568,"full_name":"Myotis capaccinii","author_year":"(Bonaparte, 1837)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu gishtgjate","convention_language":false,"id":null},{"lang":"Croatian","names":"Dugonogi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr dlouhonohý","convention_language":false,"id":null},{"lang":"Danish","names":"Capaccinis flagermus, Capaccinnis flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Capaccini's vleermuis, Capaccini-vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Long-fingered Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pitkäsormisiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin de Capaccini, Vespertilion de Capaccini","convention_language":true,"id":null},{"lang":"German","names":"Langfußfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hosszúlábú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio di Capaccini","convention_language":false,"id":null},{"lang":"Norwegian","names":"Capacciniflaggermus","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cu-degete-lungi","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago patudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Capaccinis fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Atallah, S. I. 1970. Bats of the genus \u003Ci\u003EMyotis\u003C/i\u003E (Family Vespertilionidae) from Lebanon. Univ. Connecticut Occas. Pap.: 1: 205-212.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Aihartza, J. R., Goiti, U., Almenar, D. and Garin, I. 2003. Evidences of piscivory by \u003Ci\u003EMyotis capaccinii\u003C/i\u003E (Bonaparte, 1837) in the Southern Iberian Peninsula. Acta Chiropterologica: 5(2): 193-198; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11569,"full_name":"Turdus torquatus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kos horský","convention_language":false,"id":null},{"lang":"Danish","names":"Ringdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Beflijster","convention_language":false,"id":null},{"lang":"English","names":"Ring Ouzel","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelrastas","convention_language":false,"id":null},{"lang":"French","names":"Merle à plastron","convention_language":true,"id":null},{"lang":"German","names":"Ringdrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Merlo dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-de-peito-branco","convention_language":false,"id":null},{"lang":"Russian","names":"Belozoby Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Mirlo Capiblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Ringtrast","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11570,"full_name":"Calidris alba","author_year":"(Pallas, 1764)","common_names":[{"lang":"Dutch","names":"Drieteenstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Sanderling","convention_language":true,"id":null},{"lang":"Finnish","names":"Pulmussirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau sanderling","convention_language":true,"id":null},{"lang":"German","names":"Sanderling","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fenyérfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello tridattilo","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sandløper","convention_language":false,"id":null},{"lang":"Polish","names":"Piaskowiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-sanderlingo","convention_language":false,"id":null},{"lang":"Russian","names":"Peschanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Tridáctilo","convention_language":true,"id":null},{"lang":"Swedish","names":"Sandlöpare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Webb, H. P. 1992. Field observations of the birds of Santa Isabel, Solomon Islands. Emu: 92: 52-57.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Crocethia alba","author_year":"(Pallas, 1764)"},{"full_name":"Tringa alba","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11571,"full_name":"Berardius bairdii","author_year":"Stejneger, 1883","common_names":[{"lang":"Dutch","names":"Noordelijke Zwarte Butskop","convention_language":false,"id":null},{"lang":"English","names":"Baird's Beaked Whale, Northern Four-toothed Whale, Giant Bottle-nosed Whale","convention_language":true,"id":null},{"lang":"French","names":"Bérardien de Baird","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Baird","convention_language":true,"id":null},{"lang":"Swedish","names":"Bairds näbbval, nordlig jätteflasknosval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Berardius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11572,"full_name":"Tringa stagnatilis","author_year":"(Bechstein, 1803)","common_names":[{"lang":"Czech","names":"Vodouš štíhlý","convention_language":false,"id":null},{"lang":"Danish","names":"Damklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Poelruiter","convention_language":false,"id":null},{"lang":"English","names":"Marsh Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Lampiviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier stagnatile","convention_language":true,"id":null},{"lang":"German","names":"Teichwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tavi cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Albastrello","convention_language":false,"id":null},{"lang":"Polish","names":"brodziec plawny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-verde-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Fino","convention_language":true,"id":null},{"lang":"Swedish","names":"Dammsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Totanus stagnatilis","author_year":"Bechstein, 1803"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11573,"full_name":"Barbastella barbastellus","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Barbastela","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr cerný","convention_language":false,"id":null},{"lang":"Danish","names":"Bredøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Mopsvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Western Barbastelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Laikõrv, Euroopa laikõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Mopsilepakko","convention_language":false,"id":null},{"lang":"French","names":"Barbastelle d'Europe, Barbastelle","convention_language":true,"id":null},{"lang":"German","names":"Mopsfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Piszedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Breiðeyrnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Barbastello","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bredøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Mopek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-negro","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cârn","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de bosque","convention_language":true,"id":null},{"lang":"Swedish","names":"bredörad fladdermus, Grönling, Barbastell","convention_language":false,"id":null}],"distributions":[{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Fonderflick, J., Grosselet, M. and Pade, P. 1999. Capture méridionale de la barbastelle d'Europe (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) et de la pipistrelle commune (\u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E) au Maroc.]. Mammalia: 62: 610-611.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.; Juste, J., Ibáñez, C., Trujillo, D., Muñoz, J. and Ruedi, M. 2003. Phylogeography of Barbastelle bats (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) in the western Mediterranean and the Canary Islands. Acta Chiropterologica: 5(2): 165-175","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Palmeirim, J. M. 1990. Bats of Portugal: zoogeography and systematics. University of Kansas Museum of Natural History, Miscellaneous Publications: 82: 53 pp.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Juste, J., Ibáñez, C., Trujillo, D., Muñoz, J. and Ruedi, M. 2003. Phylogeography of Barbastelle bats (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) in the western Mediterranean and the Canary Islands. Acta Chiropterologica: 5(2): 165-175; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11574,"full_name":"Charadrius leschenaultii","author_year":"Lesson, 1826","common_names":[{"lang":"Czech","names":"Kulík pouštní","convention_language":false,"id":null},{"lang":"Danish","names":"Sylvia","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijnplevier","convention_language":false,"id":null},{"lang":"English","names":"Greater Sand-Plover, Large Sand Dotterel, Greater Sandplover","convention_language":true,"id":null},{"lang":"Finnish","names":"Aavikkotylli","convention_language":false,"id":null},{"lang":"French","names":"Gravelot de Leschenault, Pluvier de Leschenault, Pluvier du désert","convention_language":true,"id":null},{"lang":"German","names":"Wüstenregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere di Leschenault","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka pustynna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-mongol-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Mongol Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökenpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11575,"full_name":"Arenaria interpres","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stenvender","convention_language":false,"id":null},{"lang":"Dutch","names":"Steenloper","convention_language":false,"id":null},{"lang":"English","names":"Turnstone, Ruddy Turnstone","convention_language":true,"id":null},{"lang":"Finnish","names":"Karikukko","convention_language":false,"id":null},{"lang":"French","names":"Tournepierre à collier","convention_language":true,"id":null},{"lang":"German","names":"Steinwälzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kóforgató","convention_language":false,"id":null},{"lang":"Italian","names":"Voltapietre","convention_language":false,"id":null},{"lang":"Norwegian","names":"Steinvender","convention_language":false,"id":null},{"lang":"Polish","names":"Kamusznik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rola-do-mar","convention_language":false,"id":null},{"lang":"Russian","names":"Kamnesharka","convention_language":false,"id":null},{"lang":"Spanish","names":"Vuelvepiedras común","convention_language":true,"id":null},{"lang":"Swedish","names":"Roskarl","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herrera, M. 2004. Primer registro de \u003Ci\u003EArenaria interpres\u003C/i\u003E para Bolivia. Cotinga: 21: 72-73.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guyra Paraguay. 2004. Lista comentada de las Aves de Paraguay / Annotated checklist of the Birds of Paraguay. Asociación Guyra Paraguay. Asunción, Paraguay.; Lesterhuis, A. J. and Clay, R. P. 2001. First record of a Ruddy Turnstone \u003Ci\u003EArenaria interpres\u003C/i\u003E in Paraguay. Wader Study Group Bulletin: 95: 68.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M. and Sharpe, C. J. 1999. Range extensions and notes on the status of little-known species from Venezuela. Bulletin of the British Ornithologists' Club: 119: 38-47.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Arenaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa interpres","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11576,"full_name":"Emberiza aureola","author_year":"Pallas, 1773","common_names":[{"lang":"Czech","names":"Strnad obojkový","convention_language":false,"id":null},{"lang":"Danish","names":"Gulbrystet Værling","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilgengors, Wilgegors","convention_language":false,"id":null},{"lang":"English","names":"Yellow-breasted Bunting","convention_language":true,"id":null},{"lang":"Finnish","names":"Kultasirkku","convention_language":false,"id":null},{"lang":"French","names":"Bruant auréole","convention_language":true,"id":null},{"lang":"German","names":"Weidenammer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti sármány","convention_language":false,"id":null},{"lang":"Italian","names":"Zigolo dal collare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Escrevedeira-aureolada","convention_language":false,"id":null},{"lang":"Russian","names":"Dubrovnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Escribano Aureolado","convention_language":true,"id":null},{"lang":"Swedish","names":"Gyllensparv","convention_language":false,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Skakuj, M. and Stawarczyk, T. 1997. Five new bird species in Bahrain. Sandgrouse: 19: 39-44.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Emberizidae","genus_name":"Emberiza","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11577,"full_name":"Charadrius mongolus","author_year":"Pallas, 1776","common_names":[{"lang":"Dutch","names":"Kleine Woestijnplevier","convention_language":false,"id":null},{"lang":"English","names":"Mongolian Plover, Lesser Sand Plover, Lesser Sandplover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Mongolie","convention_language":true,"id":null},{"lang":"Polish","names":"Sieweczka mongolska","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Mongol chico","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Davidson, P. and Kirwan, G. M. 1997. Around the region. Sandgrouse: 19: 76-80.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11579,"full_name":"Ficedula mugimaki","author_year":"(Temminck, 1835)","common_names":[{"lang":"Dutch","names":"Mugimakivliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Mugimaki Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche mugimaki","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11580,"full_name":"Aquila heliaca","author_year":"Savigny, 1809","common_names":[{"lang":"Czech","names":"Orel královský","convention_language":false,"id":null},{"lang":"Danish","names":"Kejserørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Keizerarend","convention_language":false,"id":null},{"lang":"English","names":"Imperial Eagle, Eastern Imperial Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Keisarikotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle impérial","convention_language":true,"id":null},{"lang":"German","names":"Kaiseradler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Parlagi sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila imperiale","convention_language":false,"id":null},{"lang":"Polish","names":"Cesarski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-imperial","convention_language":false,"id":null},{"lang":"Russian","names":"Mogilnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila imperial oriental, Águila imperial","convention_language":true,"id":null},{"lang":"Swedish","names":"Kejsarörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Petrov, T. et al. 1994. Status of the Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E Savigny) in Bulgaria in the period between 1890 and 1993. In: Meyburg and Chancellor (eds.) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Chavko, J., Danko, S., Obuch, J. and Mihok, J. 2007. The food of the imperial eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Slovakia. Slovak Raptor Journal: 1: 1-18.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hallmann, B. 1994. The decline of the Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Greece. In: Meyburg and Chancellor (eds) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Bagyura, J., Szitta, T., Haraszthy, L., Firmánszky, G., Viszló, L., Kovács, A., Demeter, I. and Horváth, M. 2002. Population increase of Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in Hungary between 1980 and 2000. Aquila : 107-108: 133-144.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Golovushkin, M. I. and Osipova, M. A. 1988. [Nesting of Imperial Eagle (\u003Ci\u003EAquila heliaca\u003C/i\u003E) in the region south to Baikal.]. Ornitologiya: 23: 205-206.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Ryabtsev, V.V. and Katzner, T.E. 2007. Severe declines of Eastern Imperial Eagle \u003Ci\u003EAquila heliaca\u003C/i\u003E populations in the Baikal region, Russia: a modern and historical perspective. Bird Conservation International: 17: 197-209.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demerdzhiev, D., Horváth, M., Kovács, A., Stoychev, S. \u0026 Karyakin, I. 2011. Status and population trend of the eastern imperial eagle (Aquila heliaca) in Europe in the period 2000–2010. Acta zoologica Bulgarica Supplementum 3: 5-14.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. and Porter, R. F. 1985. Status of birds of prey in Turkey. Bulletin of the World Working Group on Birds of Prey: 2: 52-56.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11581,"full_name":"Catharacta skua","author_year":"Brünnich, 1764","common_names":[{"lang":"Danish","names":"Storkjove","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Jager","convention_language":false,"id":null},{"lang":"English","names":"Great Skua","convention_language":true,"id":null},{"lang":"French","names":"Grand Labbe","convention_language":true,"id":null},{"lang":"Polish","names":"Wydrzyk wielki (skua)","convention_language":false,"id":null},{"lang":"Spanish","names":"Págalo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"storlabb","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1988. Notes on some birds of northeastern Brazil (3). Bulletin of the British Ornithologists' Club: 108: 75-79.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Stercorariidae","genus_name":"Catharacta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Stercorarius skua","author_year":"(Brünnich, 1764)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11582,"full_name":"Alectrurus risora","author_year":"(Vieillot, 1824)","common_names":[{"lang":"English","names":"Strange-tailed Tyrant","convention_language":true,"id":null},{"lang":"French","names":"Moucherolle à queue large","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ericson, P. G. P. and Amarillo, L. A. 1997. First observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 117: 60-67.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Alectrurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Yetapa risora","author_year":"(Vieillot, 1824)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11584,"full_name":"Procellaria westlandica","author_year":"Falla, 1946","common_names":[{"lang":"English","names":"Westland Petrel, Westland Black Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin du Westland","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de Westland","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria parkinsoni westlandica","author_year":"G. R. Gray, 1862"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11585,"full_name":"Phoebastria immutabilis","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Laysan Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros de Laysan","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros de Laysan","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea immutabilis","author_year":"Rothschild, 1893"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea immutabilis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11586,"full_name":"Larus argentatus","author_year":"Pontoppidan, 1763","common_names":[{"lang":"Danish","names":"Sølvmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Zilvermeeuw","convention_language":false,"id":null},{"lang":"English","names":"European Herring Gull, Herring Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland argenté","convention_language":true,"id":null},{"lang":"German","names":"Silbermöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ezüstsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano reale","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa srebrzysta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-argêntea","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Argéntea","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråtrut","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus smithsonianus","author_year":"Coues, 1862"},{"full_name":"Larus vegae","author_year":"Palmen, 1887"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11587,"full_name":"Pelecanoides garnotii","author_year":"(Lesson, 1828)","common_names":[{"lang":"English","names":"Peruvian Diving-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffinure de Garnot","convention_language":true,"id":null},{"lang":"German","names":"Sturmvogel","convention_language":false,"id":null},{"lang":"Spanish","names":"Potoyunco Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Pelecanoididae","genus_name":"Pelecanoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Puffinuria garnotii","author_year":"Lesson, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11589,"full_name":"Podiceps nigricollis","author_year":"Brehm, 1831","common_names":[{"lang":"Danish","names":"Sorthalset Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Geoorde Fuut","convention_language":false,"id":null},{"lang":"English","names":"Eared Grebe, Black-necked Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakaulauikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe à cou noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzhalstaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketenyakú vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Zausznik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Chernosheynaya Poganka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín cuellinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthalsad dopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Williams, E. 1991. Black-necked Grebe \u003Ci\u003EPodiceps nigricollis\u003C/i\u003E, new to Cameroon. Malimbus: 13: 40.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Lamarche, B. 1988. Liste commentée des oiseaux de Mauritanie. Etude Sahariennes et Ouest-Africaines: 1(4):1-162 .","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Podiceps caspicus","author_year":"(Hablitzl, 1783)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11591,"full_name":"Somateria fischeri","author_year":"(Brandt, 1847)","common_names":[{"lang":"Danish","names":"Brilleederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Brileider","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Eider","convention_language":true,"id":null},{"lang":"French","names":"Eider à lunettes","convention_language":true,"id":null},{"lang":"Russian","names":"Ochkovaya Gaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider de anteojos","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögonejder","convention_language":false,"id":null}],"distributions":[{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula fischeri","author_year":"Brandt, 1847"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11592,"full_name":"Diomedea sanfordi","author_year":"Murphy, 1917","common_names":[{"lang":"English","names":"Northern Royal Albatross","convention_language":true,"id":null}],"distributions":[{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea epomophora\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11593,"full_name":"Zapornia pusilla","author_year":"(Pallas, 1776)","common_names":[{"lang":"Danish","names":"Dværgrørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinst Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Baillon's Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiöhuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette de Baillon","convention_language":true,"id":null},{"lang":"German","names":"Zwergsumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpe vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Schiribilla grigiata","convention_language":false,"id":null},{"lang":"Polish","names":"Karliczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela chica","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgsumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"King, J. M. B. 2003. Baillon's Crake \u003Ci\u003EPorzana pusilla\u003C/i\u003E, new to The Gambia, with notes on seven other species. Malimbus: 25: 59-61.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Porzana pusilla","author_year":"(Pallas, 1776)"},{"full_name":"Rallus pusillus","author_year":"Pallas, 1776"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as Porzana pusilla intermedia.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11594,"full_name":"Lontra felina","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Marine Otter","convention_language":true,"id":null},{"lang":"French","names":"Loutre De Mer","convention_language":true,"id":null},{"lang":"Spanish","names":"Chungungo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Castilla, J. C. 1982. Nuevas observaciones sobre conducta, ecologia y densidad de \u003Ci\u003ELutra felina\u003C/i\u003E (Molina 1782) (Carnivora: Mustelidae) en Chile. Publicaciones Ocasionales del Museo Nacional de Historia Natural, Santiago: 38: 197-206.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Rundel, P.W., Dillon, M.O. and Palma, B. 1996. Flora and vegetation of Pan de Azucar National Park in the Atacama desert of northern Chile. Gayana Botanic: 53: 295-315.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Mustelidae","genus_name":"Lontra","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ELutra felina\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11595,"full_name":"Pseudoscaphirhynchus hermanni","author_year":"(Kessler, 1877)","common_names":[{"lang":"English","names":"Little Shovelnose Sturgeon, Small Amu-Dar Shovelnose Sturgeon, Dwarf Sturgeon, Little Amu-Darya Shovelnose","convention_language":true,"id":null},{"lang":"Polish","names":"Nibylopstons amu-daryjski","convention_language":false,"id":null},{"lang":"Swedish","names":"dvärgstör","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.; Petr, T. 1999. Coldwater fish and fisheries in Afghanistan. In: Fish and Fisheries at higher altitudes: Asia. FAO technichal paper No. 385.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11596,"full_name":"Gallinula angulata","author_year":"Sundevall, 1851","common_names":[{"lang":"English","names":"Lesser Moorhen","convention_language":true,"id":null},{"lang":"French","names":"Gallinule africaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Gallineta chica","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Haavisto, S. and Strand, A. 2000. The first Lesser Moorhen \u003Ci\u003EGallinula angulata\u003C/i\u003E in Egypt and the Western Palearctic. Sandgrouse: 22: 137-139.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Gallinula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11598,"full_name":"Addax nasomaculatus","author_year":"(de Blainville, 1816)","common_names":[{"lang":"Danish","names":"addax eller mendesantilope","convention_language":false,"id":null},{"lang":"Dutch","names":"Addax of Mendes-antiloop","convention_language":false,"id":null},{"lang":"English","names":"Addax","convention_language":true,"id":null},{"lang":"Finnish","names":"Mendesinantilooppi","convention_language":false,"id":null},{"lang":"French","names":"Addax, Addax à nez tacheté, Antilope blanche","convention_language":true,"id":null},{"lang":"German","names":"Mendesantilope","convention_language":false,"id":null},{"lang":"Italian","names":"Antilope addax","convention_language":false,"id":null},{"lang":"Spanish","names":"Addax","convention_language":true,"id":null},{"lang":"Swedish","names":"addaxantilop, mendesantilop","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Flower, S. S. 1932. Notes on the recent mammals of Egypt, with a list of the species recorded from that kingdom. Proceedings of the Zoological Society of London: 1932: 369-450.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dupuy, A. 1971. SOS pour la conservation de la nature en Mauretanie. Science et Nature: 108: 31-34.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Trotignon, J. 1975. Le status et la conservation de l'addax et de l'oryx et de la faune associée en Mauritanie. Report to IUCN, Morges. Unpublished. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Newby, J. 1975. The Addax and the Scimitar-horned Oryx in Niger. Report to IUCN, Morges. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.; Lamprey, H. 1975. Report on the desert encroachment reconnaissance in northern Sudan. Report to IUCN and UNEP. ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Gillet, H. 1971. L'oryx algazelle et l'addax. Distribution géographie. Chance de survie. Compte Rendu Sommaire des Séances de la Société de Biogéographie: 405: 177-189.; Krausman, P.R. and Casey, A.L. 2007. \u003Ci\u003EAddax nasomaculatus\u003C/i\u003E. Mammalian Species: 807: 1-4.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Addax","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11599,"full_name":"Rynchops flavirostris","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"African Skimmer","convention_language":true,"id":null},{"lang":"French","names":"Bec-en-ciseaux d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rayador Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Rynchops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11601,"full_name":"Charadrius alexandrinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Hvidbrystet Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Strandplevier","convention_language":false,"id":null},{"lang":"English","names":"Kentish Plover, Snowy Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustajalkatylli","convention_language":false,"id":null},{"lang":"French","names":"Gravelot à collier interrompu, Pluvier à collier interrompu","convention_language":true,"id":null},{"lang":"German","names":"Seeregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Széki lile","convention_language":false,"id":null},{"lang":"Italian","names":"Fratino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hvitbrystlo","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka morska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-de-coleira-interrompida","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo patinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartbent strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11602,"full_name":"Ixobrychus sturmii","author_year":"(Wagler, 1827)","common_names":[{"lang":"Dutch","names":"Afrikaanse Woudaapje","convention_language":false,"id":null},{"lang":"English","names":"Dwarf Bittern","convention_language":true,"id":null},{"lang":"French","names":"Blongios de Sturm","convention_language":true,"id":null},{"lang":"Spanish","names":"Avetorillo plomizo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ixobrychus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea sturmii","author_year":"Wagler, 1827"},{"full_name":"Ardeirallus sturmii","author_year":"(Wagler, 1827)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11604,"full_name":"Platanista gangetica","author_year":"(Roxburgh, 1801)","common_names":[{"lang":"English","names":"Ganges Susu, Ganges River Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Plataniste du Gange, Sousou","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín del Ganges","convention_language":true,"id":null},{"lang":"Swedish","names":"gangesdelfin, susu","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Smith, B. D., Ahmed, B., Ali, M. E. and Braulik, G. 2001. Status of the Ganges river dolphin or shushuk \u003Ci\u003EPlatanista gangetica\u003C/i\u003E in Kaptai Lake and the southern rivers of Bangladesh. Oryx: 35: 61-72.; Smith, B.D., Diyan, M.A.A., Mansur, R.M., Mansur E.F. and Ahmed B. 2010. Identification and channel characteristics of cetacean hotspots in waterways of the eastern Sundarbans mangrove forest, Bangladesh. Oryx: 44: 241-247.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Bashir, T., Khan, A., Gautam, P. and Behera, S.K. 2010. Abundance and prey availability assessment of Ganges River Dolphin (\u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E) in a stretch of Upper Ganges River, India. Aquatic Mammals: 36: 19-26.; Kelkar, N., Krishnaswamy, J., Choudhary, S. and Sutaria, D. 2010. Coexistence of fisheries with river dolphin conservation. Conservation Biology: 24: 1130-1140.; Nair, A.K. 2009. The status and distribution of major aquatic fauna in the National Chambal Gharial Sanctuary in Rajasthan with special reference to the Gangetic Dolphin \u003Ci\u003EPlatanista gangetica gangetica\u003C/i\u003E (Cetartiodactyla: Platanistidae). Journal of Threatened Taxa: 1: 141-146.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Pilleri, G. and Tagliavini, F. 1982. Observations on the ecology and distribution of the Susu (\u003Ci\u003EPlatanista gangetica\u003C/i\u003E) in Nepalese rivers. Investigations on Cetacea: 13: 257-261.; Smith, B. D. 1993. 1990 status and conservation of the Ganges River Dolphin \u003Ci\u003EPlatanista gangetica\u003C/i\u003E in the Karnali river, Nepal. Biological Conservation: 66: 159-169.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Platanistidae","genus_name":"Platanista","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPlatanista gangetica\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11605,"full_name":"Acrocephalus bistrigiceps","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Black-browed Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle de Schrenck","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11606,"full_name":"Turdus unicolor","author_year":"Tickell, 1833","common_names":[{"lang":"Dutch","names":"Tickells Lijster","convention_language":false,"id":null},{"lang":"English","names":"Indian Grey Thrush, Tickell's Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle unicolore","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11607,"full_name":"Vespertilio murinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Albanian","names":"Lakuriqnate vespertile","convention_language":false,"id":null},{"lang":"Croatian","names":"Dvobojni šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr pestrý","convention_language":false,"id":null},{"lang":"Danish","names":"Skimmelflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Tweekleurige vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Particoloured Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suur-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kimolepakko","convention_language":false,"id":null},{"lang":"French","names":"Sérotine bicolore","convention_language":true,"id":null},{"lang":"German","names":"Zweifarbfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehértorkú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Serotino bicolore","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Dvispalvis plikšnys","convention_language":false,"id":null},{"lang":"Norwegian","names":"Skimmelflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Mroczek posrebrzany","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-bicolor","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier pestrý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago bicolor","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråskimlig fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Forget, F. 2001. La serotine bicolore (\u003Ci\u003EVespertilio murinus\u003C/i\u003E), une nouvelle espèce de mammifère en region wallonne. Aves Contact: 37: 8-9.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2003. The presence of \u003Ci\u003EEptesicus nilssonii\u003C/i\u003E and \u003Ci\u003EVespertilio murinus\u003C/i\u003E in the Croatian bat fauna confirmed. Natura Croatica: 12(2): 55-62","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Mammals of Serbia - checklist. http://www.wild-serbia.com/pdf/Sisari\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Melnikov, A. V. 1981. [On the hibernation of the particolored bat (\u003Ci\u003EVespertilio murinus\u003C/i\u003E L.).]. Byulleten' Mosk. Obschch. Ispyt. Prir. (Otd. Biol.): 86: 37.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Galan, C. 1997. Fauna de quiropteros del Pais Vasco. Munibe (Ciencias Naturales - Natur Zientziak): 49: 77-100.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Vespertilio","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11608,"full_name":"Phoenicurus ochruros","author_year":"(Gmelin, 1774)","common_names":[{"lang":"Czech","names":"Rehek domácí","convention_language":false,"id":null},{"lang":"Danish","names":"Husrødstjert","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Roodstaart","convention_language":false,"id":null},{"lang":"English","names":"Black Redstart","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustaleppälintu","convention_language":false,"id":null},{"lang":"French","names":"Rougequeue noir","convention_language":true,"id":null},{"lang":"German","names":"Hausrotschwanz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Házi rozsdafarkú","convention_language":false,"id":null},{"lang":"Italian","names":"Codirosso spazzacamino","convention_language":false,"id":null},{"lang":"Polish","names":"Kopciuszek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rabirruivo-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Colirrojo Tizón","convention_language":true,"id":null},{"lang":"Swedish","names":"Svart rödstjärt","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Jantunen, J. 1996. Black Redstart on Ping Chau: the first record for Hong Kong. Hong Kong Bird Report 1996: 116-118.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11609,"full_name":"Puffinus mauretanicus","author_year":"Lowe, 1921","common_names":[{"lang":"English","names":"Balearic Shearwater","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela balear","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Puffinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"27/04/2012","name":"ACAP"}]},{"id":11610,"full_name":"Tringa totanus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Vodouš rudonohý","convention_language":false,"id":null},{"lang":"Danish","names":"Rødben","convention_language":false,"id":null},{"lang":"Dutch","names":"Tureluur","convention_language":false,"id":null},{"lang":"English","names":"Redshank, Common Redshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Punajalkaviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier gambette","convention_language":true,"id":null},{"lang":"German","names":"Rotschenkel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Piroslábú cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Pettegola","convention_language":false,"id":null},{"lang":"Polish","names":"Krwawodziób","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-vermelha-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödbena","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax totanus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11611,"full_name":"Sousa teuszii","author_year":"(Kükenthal, 1892)","common_names":[{"lang":"English","names":"Atlantic Humpbacked Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin à bosse de l'Atlantique","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo africano, Delfín blanco africano","convention_language":true,"id":null},{"lang":"Swedish","names":"kamerundelfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Sequeira, M. and Reiner, F. 1992. First record of an Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E Kukenthal, 1892 (Cetacea; Delphinidae) in Guinea-Bissau. Mammalia: 56: 311-313.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A. O., Ndiaye, E., Ould Bilal, O. S. and Bamy, I. L. 2004. Distribution, status, and biology of the Atlantic Humpback Dolphin, \u003Ci\u003ESousa teuszii\u003C/i\u003E (Kükenthal, 1892). Aquatic Mammals: 30: 56-83.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sousa","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":11612,"full_name":"Grus grus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Common Crane, Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Kurki","convention_language":false,"id":null},{"lang":"French","names":"Grue cendrée","convention_language":true,"id":null},{"lang":"German","names":"Kranich","convention_language":false,"id":null},{"lang":"Hungarian","names":"Daru","convention_language":false,"id":null},{"lang":"Italian","names":"Gru","convention_language":false,"id":null},{"lang":"Norwegian","names":"Trane","convention_language":false,"id":null},{"lang":"Portuguese","names":"Grou-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Trana","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Moreau, G. 1990. [A new breeding species for France: the Common Crane.]. Alauda: 58: 244.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Leito, A. and Ojaste, I. 2001. Migration routes of the Common Cranes breeding in Estonia: first results of colour-marking and radio- and satellite tracking. Hirundo: 14: 85-96; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11613,"full_name":"Anser fabalis","author_year":"(Latham, 1787)","common_names":[{"lang":"Czech","names":"Husa polní","convention_language":false,"id":null},{"lang":"Danish","names":"Sædgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Rietgans","convention_language":false,"id":null},{"lang":"English","names":"Bean Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Metsähanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie des moissons","convention_language":true,"id":null},{"lang":"German","names":"Saatgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vetési lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca granaiola","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sædgås","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-campestre","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar campestre","convention_language":true,"id":null},{"lang":"Swedish","names":"Sädgås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[{"full_name":"Anas fabalis","author_year":"Latham, 1787"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11614,"full_name":"Chloephaga hybrida","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Kelp Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette marine","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén caranca","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas hybrida","author_year":"Molina, 1782"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11615,"full_name":"Vanellus cinereus","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Grey-headed Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría ceniza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Microsarcops cinereus","author_year":"(Blyth, 1842)"},{"full_name":"Pluvianus cinereus","author_year":"Blyth, 1842"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11616,"full_name":"Phylloscopus neglectus","author_year":"Hume, 1870","common_names":[{"lang":"English","names":"Plain Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot modeste","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11617,"full_name":"Glareola ocularis","author_year":"Verreaux, 1833","common_names":[{"lang":"English","names":"Madagascar Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole malgache","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera Malgache","convention_language":true,"id":null}],"distributions":[{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11618,"full_name":"Cygnus cygnus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sangsvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Wilde Zwaan","convention_language":false,"id":null},{"lang":"English","names":"Whooper Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Laulujoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne chanteur, Cygne sauvage","convention_language":true,"id":null},{"lang":"German","names":"Singschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno selvatico","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sangsvane","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź krzykliwy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-bravo","convention_language":false,"id":null},{"lang":"Russian","names":"Лебедь-кликун","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne cantor","convention_language":true,"id":null},{"lang":"Swedish","names":"Sångsvan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"extinct","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas cygnus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11620,"full_name":"Dolichonyx oryzivorus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Bobolink","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Icteridae","genus_name":"Dolichonyx","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"25/07/2018","name":"Southern South American Grassland Birds"}]},{"id":11622,"full_name":"Orcaella heinsohni","author_year":"Beasley, Robertson \u0026 Arnold, 2005","common_names":[{"lang":"English","names":"Australian Snubfin Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Beasley, I., Robertson, K. M. and Arnold, P. 2005. Description of a new dolphin, the Australian Snubfin Dolphin \u003Ci\u003EOrcaella heinsohni\u003C/i\u003E sp. n. (Cetacea, Delphinidae). Marine Mammal Science: 21: 365-400.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Beasley, I., Robertson, K. M. and Arnold, P. 2005. Description of a new dolphin, the Australian Snubfin Dolphin \u003Ci\u003EOrcaella heinsohni\u003C/i\u003E sp. n. (Cetacea, Delphinidae). Marine Mammal Science: 21: 365-400.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcaella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EOrcaella brevirostris\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11623,"full_name":"Cettia cetti","author_year":"(Temminck, 1820)","common_names":[{"lang":"Danish","names":"Cettisanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Cetti's Zanger","convention_language":false,"id":null},{"lang":"English","names":"Cetti's Warbler, Cetti's Bush-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Silkkikerttu","convention_language":false,"id":null},{"lang":"French","names":"Bouscarle de Cetti","convention_language":true,"id":null},{"lang":"German","names":"Seidensänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Berki poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo di fiume","convention_language":false,"id":null},{"lang":"Polish","names":"Wierzbówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-bravo","convention_language":false,"id":null},{"lang":"Russian","names":"Solovinaya Shirokokhvostka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Cettisångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Veron, G., Gaubert, P., Franklin, N., Jennings, A.P. and Grassman Jr, L.I. 2006. A reassessment of the distribution and taxonomy of the Endangered otter civet \u003Ci\u003ECynogale bennettii\u003C/i\u003E (Carnivora: Viverridae) of South-east Asia. Oryx: 40: 42-49.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2004. Fiftieth Irish Bird Report 2002. Irish Birds: 7: 385-412.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Van der Voort, J. 2003. Montenegro (Crna Gora). Hyla - Amphibian and Reptile Workgroup of Natuurpunt. Belgium.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11626,"full_name":"Globicephala melas","author_year":"(Traill, 1809)","common_names":[{"lang":"English","names":"Long-finned Pilot Whale","convention_language":true,"id":null},{"lang":"French","names":"Globicéphale commun","convention_language":true,"id":null},{"lang":"Italian","names":"Globicephala","convention_language":false,"id":null},{"lang":"Portuguese","names":"Baleia Piloto","convention_language":false,"id":null},{"lang":"Spanish","names":"Caldrón negro","convention_language":true,"id":null},{"lang":"Swedish","names":"pilotval, grindval, långfenad grindval","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Walker, D. 1987. Miscellaneous. Annual Report, Calf of Man Bird Observatory: 1986: 55.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. New information about the pilot whale, \u003Ci\u003EGlobicephala melaena\u003C/i\u003E Traill, in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 195-196.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Globicephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations. Formerly listed as \u003Ci\u003EGlobicephala melaena\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11627,"full_name":"Tringa melanoleuca","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Stor Gulbenet Klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Geelpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Greater Yellowlegs","convention_language":true,"id":null},{"lang":"French","names":"Grand Chevalier","convention_language":true,"id":null},{"lang":"Polish","names":"Brodziec piegowaty","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe patigualdo grande","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax melanoleuca","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11628,"full_name":"Cettia major","author_year":"(Horsfield \u0026 Moore, 1854)","common_names":[{"lang":"English","names":"Chestnut-crowned Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Grande Bouscarle","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11629,"full_name":"Branta bernicla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Berneška tmavá","convention_language":false,"id":null},{"lang":"Danish","names":"Knortegås","convention_language":false,"id":null},{"lang":"Dutch","names":"Rotgans","convention_language":false,"id":null},{"lang":"English","names":"Brent Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Sepelhanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache cravant","convention_language":true,"id":null},{"lang":"German","names":"Ringelgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca colombaccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-faces-negras","convention_language":false,"id":null},{"lang":"Russian","names":"Chyornaya Kazarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla Carinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Prutgås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Printemps, T., Rouillon, Y. and Morel, G. J. 1999. Observation de la Bernache cravant \u003Ci\u003EBranta bernicla\u003C/i\u003E au Sénégal. Malimbus: 21: 114-115.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas bernicla","author_year":"Linnaeus, 1758"},{"full_name":"Branta hrota","author_year":"(O. F. Müller, 1776)"},{"full_name":"Branta nigricans","author_year":"(Lawrence, 1846)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11630,"full_name":"Ficedula parva","author_year":"(Bechstein, 1792)","common_names":[{"lang":"Czech","names":"Lejsek malý","convention_language":false,"id":null},{"lang":"Danish","names":"Pikkusieppo, Lille fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Flycatcher, Red-throated Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkusieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobe-mouche nain, Gobemouche nain","convention_language":true,"id":null},{"lang":"German","names":"Zwergschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Pigliamosche petirosso, Pigliamosche pettirosso","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-pequeno","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas papirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre flugsnappare, Mindre flugsnäppare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; McGowan, R. V. and Pritchard, J. S. 1990. First record of the Red-breasted Flycatcher \u003Ci\u003EFicedula parva\u003C/i\u003E for the Philippines. Bulletin of the British Ornithologists' Club: 110: 6-7.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11632,"full_name":"Cyanoptila cyanomelana","author_year":"(Temminck, 1829)","common_names":[{"lang":"English","names":"Blue and White Flycatcher, Blue-and-white Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche bleu","convention_language":true,"id":null},{"lang":"German","names":"Japanschnäpper","convention_language":false,"id":null},{"lang":"Swedish","names":"japansk blåflugsnappare, blåvit flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Anon. 2000. Twelve new species for Cambodia. Cambodia Bird News: 4: 30-32.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Five. http://users.bigpond.net.au/palliser/barc/vol5.htm . ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanoptila","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11633,"full_name":"Grus japonensis","author_year":"(Müller, 1776)","common_names":[{"lang":"Danish","names":"Japansk trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Chinese kraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Japanese Crane, Manchurian Crane, Red-crowned Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Mantsuriankurki","convention_language":false,"id":null},{"lang":"French","names":"Grue du Japon, Grue de Mandchourie, Grue blanche du Japon","convention_language":true,"id":null},{"lang":"German","names":"Mandschurenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru del Giappone, Gru della Manciuria","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla de Manchuria, Grulla manchú","convention_language":true,"id":null},{"lang":"Swedish","names":"japansk trana, manchurisk trana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Williams, M. D., Bakewell, D. N., Carey, G. J. and Holloway, S. J. 1986. On the bird migration at Beidaihe, Hebei Province, China, during spring 1985. Forktail: 2: 3-20.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11634,"full_name":"Crex crex","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Engsnarre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kwatelkoning, Kwartelkoning","convention_language":false,"id":null},{"lang":"English","names":"Corn Crake, Corncrake","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruisrääkkä","convention_language":false,"id":null},{"lang":"French","names":"Râle des genêts","convention_language":true,"id":null},{"lang":"German","names":"Wachtelkönig","convention_language":false,"id":null},{"lang":"Hungarian","names":"Haris","convention_language":false,"id":null},{"lang":"Italian","names":"Re di quaglie","convention_language":false,"id":null},{"lang":"Norwegian","names":"Åkerrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Derkacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Codornizão","convention_language":false,"id":null},{"lang":"Russian","names":"Korostel","convention_language":false,"id":null},{"lang":"Spanish","names":"Guión de codornices","convention_language":true,"id":null},{"lang":"Swedish","names":"Kornknarr","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"extinct,distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Crex","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Rallus crex","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11635,"full_name":"Neophocaena asiaeorientalis","author_year":"Pilleri \u0026 Gihr, 1972","common_names":[{"lang":"English","names":"Narrow-ridged Finless Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin aptèr","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa Lisa","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Yoshida, H., Higashi, N., Ono, H. and Uchida, S. 2010. Finless porpoise (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) discovered at Okinawa Island, Japan, with the source population inferred from mitochondrial DNA. Aquatic Mammals: 36: 278-283.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768-774.; Park, B.K., Park, G.J., An, Y.R., Choi, H.G., Kim, G.B. and Moon, H.B. 2010. Organohalogen contaminants in finless porpoises (\u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E) from Korean coastal waters: Contamination status, maternal transfer and ecotoxicological implications. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 60: 768–774.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Jefferson, T.A. and Hung, S.K. 2004. \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E. Mammalian Species: 746: 1-12.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3-16.; Jefferson, T.A. and Wang, J.Y. 2011. Revision of the taxonomy of finless porpoises (genus Neophocaena): The existence of two species. Journal of Marine Animals and their Ecology, 4(1): 3–16.; Kasuya, T. 1999. Finless Porpoise \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E (G. Cuvier, 1829). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Neophocaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Neophocaena phocaenoides asiaeorientalis","author_year":"(G. Cuvier, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ENeophocaena phocaenoides\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11636,"full_name":"Zoothera dauma","author_year":"(Latham, 1790)","common_names":[{"lang":"Czech","names":"Drozd pestrý","convention_language":false,"id":null},{"lang":"Danish","names":"Guldrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudlijster","convention_language":false,"id":null},{"lang":"English","names":"White's Thrush, Scaly Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjorastas","convention_language":false,"id":null},{"lang":"French","names":"Grive dorée","convention_language":true,"id":null},{"lang":"German","names":"Erddrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Himalájai rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo dorato","convention_language":false,"id":null},{"lang":"Polish","names":"Drozd pstry","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-dourado","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Dorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Guldtrast","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Parker, S. 1967. A. S. Meek's three expeditions to the Solomon Islands. Bulletin of the British ornithologists' club: 87: 129-135.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11637,"full_name":"Turdus philomelos","author_year":"Brehm, 1831","common_names":[{"lang":"Danish","names":"Sangdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Zanglijster","convention_language":false,"id":null},{"lang":"English","names":"Song Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Laulurastas","convention_language":false,"id":null},{"lang":"French","names":"Grive musicienne","convention_language":true,"id":null},{"lang":"German","names":"Singdrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Énekes rigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo bottaccio","convention_language":false,"id":null},{"lang":"Polish","names":"Piewak drozd","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Pevchy Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Taltrast","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"extinct,introduced","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11638,"full_name":"Larus atlanticus","author_year":"Olrog, 1958","common_names":[{"lang":"English","names":"Olrog's Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland d'Olrog","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cangrejera","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Larus belcheri atlanticus","author_year":"Vigors, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11639,"full_name":"Miniopterus majori","author_year":"Thomas, 1906","common_names":[{"lang":"English","names":"Major's Long-fingered Bat","convention_language":true,"id":null}],"distributions":[{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Garbutt, N. 1999. Mammals of Madagascar. Pica Press. East Sussex, U.K.; Goodman, S. M. 1999. Notes on the bats of the Réserve Naturelle Intégrale d'Andohahela and surrouinding areas of southeastern Madagascar. Fieldiana Zoology: 94: 251-257.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11641,"full_name":"Tringa glareola","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vodouš bahenní","convention_language":false,"id":null},{"lang":"Danish","names":"Tinksmed","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosruiter","convention_language":false,"id":null},{"lang":"English","names":"Wood Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Liro","convention_language":false,"id":null},{"lang":"French","names":"Chevalier sylvain","convention_language":true,"id":null},{"lang":"German","names":"Bruchwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Réti cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro piro boschereccio, Piro-piro boschereccio","convention_language":false,"id":null},{"lang":"Polish","names":"leczak, brodziec lesny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-bastardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Andarríos Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Grönbena","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A. and Jaffard, M.-E. 2002. Quinze nouvelles espèce d'oiseaux observées en Guadeloupe (F.W.I.). El Pitirre: 15: 1-4.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11642,"full_name":"Thalassarche salvini","author_year":"(Rothschild, 1893)","common_names":[{"lang":"English","names":"Salvin's Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11643,"full_name":"Charadrius pallidus","author_year":"Strickland, 1852","common_names":[{"lang":"English","names":"Chestnut-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier élégant","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo pálido","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Charadrius venustus","author_year":"Fischer \u0026 Reichenow, 1884"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11644,"full_name":"Sterna lorata","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Peruvian Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne du Pérou","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":11645,"full_name":"Falco peregrinus","author_year":"Tunstall, 1771","common_names":[{"lang":"Danish","names":"Vandrefalk, Vanderfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Slechtvalk","convention_language":false,"id":null},{"lang":"English","names":"Peregrine, Peregrine Falcon, Duck Hawk","convention_language":true,"id":null},{"lang":"Finnish","names":"Muuttohaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon pèlerin","convention_language":true,"id":null},{"lang":"German","names":"Wanderfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándorsólyom","convention_language":false,"id":null},{"lang":"Italian","names":"Pellegrino, Falco pellegrino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Vandrefalk","convention_language":false,"id":null},{"lang":"Polish","names":"sokól wedrowny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falcão-peregrino","convention_language":false,"id":null},{"lang":"Spanish","names":"Halcón real, Halcón blancuzco, Halcón viajero, Halcón común, Halcón peregrino","convention_language":true,"id":null},{"lang":"Swedish","names":"Pilgrimsfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Regalado, P. and Cables, E. 2000. Primer hallazgo de \u003Ci\u003EFalco peregrinus\u003C/i\u003E nidificando en Cuba. Cotinga: 14: 78.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jenny, J. P., Ortiz, F. and Arnold, M. D. 1981. First nesting record of the Peregrine Falcon in Ecuador. Condor: 83: 387.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Cugnasse, J.M. 1984. The peregrine falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in the Massif Central from 1974 to 1983. Alauda: 52: 161-176.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mottley, J. 1863. Observations on the birds of south-eastern Borneo. Proceedings of the Zoological Society of London: 1863: 206-224.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rizzolli, F., Sergio, F., Marchesi, L. and Pedrini, P. 2005. Density, productivity, diet and population status of the Peregrine Falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in the Italian Alps. Bird Study: 52: 188-192.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Newby, J., Grettenberger, J. and Watkins, J. 1987. The birds of northern Air, Niger. Malimbus: 9: 4-16.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schoonmaker, P. K., Wallace, M. P. and Temple, S. A. 1985. Migrant and breeding Peregrine Falcons in northwest Peru. Condor: 87: 423-424.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Gainzarain, J.A., Arambarri, R., and Rodriguez, A.F. 2002. Population size and factors affecting the density of the peregrine falcon \u003Ci\u003EFalco peregrinus\u003C/i\u003E in Spain. Ardeola: 49: 67-74.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. 1972. Bird records from Surinam. Bulletin of the British Ornithologists' Club: 92: 49-53.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Crick, H.Q.P. and Ratcliffe, D.A. 1995. The peregrine \u003Ci\u003EFalco peregrinus\u003C/i\u003E breeding population of the United Kingdom in 1991. Bird Study: 42: 1-19.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Sharpe, C. J., Ascanio-Echeverria, D. and Rodríguez, G. A. 2001. Further range extensions and noteworthy records for Venezuelan birds. Bulletin of the British Ornithologists' Club: 121: 50-62.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":11646,"full_name":"Balaena mysticetus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Dutch","names":"Groenlandse Walvis","convention_language":false,"id":null},{"lang":"English","names":"Greenland Right Whale, Bowhead Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine de grande baie, Baleine du Groenland","convention_language":true,"id":null},{"lang":"Norwegian","names":"Grønlandshval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena boreal","convention_language":true,"id":null},{"lang":"Swedish","names":"grönlandsval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Rugh, D., Demaster, D., Rooney, A., Breiwick, J., Shelden, K. and Moore, S. 2003. A review of bowhead whale (Balaena mysticetus) stock identity. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 5(3): 267–279.\r\n\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Wiig, Ø., Bachmann, L., Øien, N., Kovacs, K.M. and Lydersen, C. 2010. Observations of bowhead whales (\u003Ci\u003EBalaena mysticetus\u003C/i\u003E) in the Svalbard area 1940–2009. \u003Ci\u003EPolar Biology\u003C/i\u003E: 33(7): 979–984.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ivashchenko, Y. and Clapham, P. 2010. Bowhead whales \u003Ci\u003EBalaena mysticetus\u003C/i\u003E in the Okhotsk Sea. Mammal Review: 40: 65-89.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Balaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11648,"full_name":"Scolopax rusticola","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Sluka lesní","convention_language":false,"id":null},{"lang":"Danish","names":"Skovsneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Houtsnip","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Woodcock","convention_language":true,"id":null},{"lang":"Finnish","names":"Lehtokurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécasse des bois","convention_language":true,"id":null},{"lang":"German","names":"Waldschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Erdei szalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccia","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galinhola","convention_language":false,"id":null},{"lang":"Russian","names":"Valdshnep","convention_language":false,"id":null},{"lang":"Spanish","names":"Chocha Perdiz","convention_language":true,"id":null},{"lang":"Swedish","names":"Morkulla","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Scolopax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11649,"full_name":"Eretmochelys imbricata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Hawksbill turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Joseph, D. 1984. The National Report: Antigua and Barbuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Richardson, J.I., R. Bell and T.H. Richardson. 1999. Population ecology and demographic implications drawn from an 11-yearstudy of nesting hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, at Jumby Bay, Long Island, Antigua, West Indies. Chelonian Conservation and Biology.: 3: 244-250.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dobbs, K.A., J.D. Miller, C.J. Limpus and A.M. Landry Jr. 1999. Hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, nesting at MilmanIsland, northern Great Barrier Reef, Australia. Chelonian Conservation and Biology.: 3: 344-361.; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus C.J. 1992. The hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, in Queensland: population structure within a southern Great Barrier Reef feeding ground. Wildlife Research : 19: 489-506.; Limpus, C. J. and Parmenter, C. J. 1986. The sea turtle resources of the Torres Strait region. Proceedings of Torres Strait Fisheries Seminar, Port Moresby, 1-14 February, 1985 . 96-107; Limpus, C. J., Miller, J. D., Baker, V. and McLachlan, E. 1983. The Hawksbill Turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E (L.), in north-eastern Australia: the Campbell Island rookery. Australian Wildlife Res.: 10: 185-197.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.; Horrocks, J. A. Vermeer, L. A. Krueger, B. Coyne, M. Schroeder, B. A. Balazs, G. H. 2001. Migration routes and destination characteristics of post-nesting hawksbill turtles satellite-tracked from Barbados, West Indies. Chelonian Conservation and biology: 4: 107-114.; Hunte, W. 1984. The National Report: Barbados. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Santos, A.J.B., Freire, E.M.X., Bellini, C. and Corso, G. 2010. Body mass and the energy budget of gravid Hawskbill turtles (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) during the nesting season. Journal of Herpetology: 44: 352-359.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bjorndal, K.A., A.B. Bolten and C.J. Andlagueux. 1993. Decline of the nesting population of hawksbill turtles at Tortuguero, CostaRica. Conservation Biology: 7: 925-927.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng S., P.H. Dutton and D. Evans. 2005. Migration of hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E from Tortuguero, Costa Rica. Ecography: 28: 394-402.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Carrillo, E., Webb, G. J. W. and Manolis, S. C. 1999. Hawksbill turtles (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) in Cuba: an assessment of the historical harvest and its impacts. Chelonian Conservation and Biology: 3: 264-280.; Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Edwards, S. 1984. The National Report: Dominica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Frazier, J. and Salas, S. 1984. The status of marine turtles in the Egyptian Red Sea. Biological Conservation: 30: 41-67.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Kamel, S.J. and Delcroix, E. 2009. Nesting ecology of the hawksbill turtle, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, in Guadeloupe, French West Indies from 2000-07. Journal of Herpetology: 43: 367-376.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Carr, A., Meylan, A., Mortimer, J., Bjorndal, K., and Carr, T. 1982. Preliminary survey of marine turtle populations and habitats in the western Atlantic. Interim Report to National Marine Fisheries Service. Contract NA80-FA-C-00071. NOAA Technical Memorandum NMFS-SEFC . ; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fernando, A. B. 1983. Nesting site and hatching of the Hawksbill turtle along Tirunelveli coast of Tamil Nadu. Marine Fisheries Information Service, Technical and Extension Series: 50: 33-34.; Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ; Schulz, J. P. 1984. Turtle conservation strategy in Indonesia. IUCN/WWF Report . ; Suganuma, H., N. Kamezaki and A. Yusuf. 1999. Current status of nesting populations of the hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Java Sea, Indonesia. Chelonian Conservation and Biology.: 3: 337-343.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hughes, G. R. 1973. The survival situation of the hawksbill sea-turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in Madagascar. Biological Conservation: 5: 114-118.; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Rakotonirina B. and A. Cooke. 1994. Sea turtles of Madagascar-their status, exploitation and conservation. Oryx : 28: 51-61.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Chan, E.H. and H.C. Liew. 1996. Decline of the leatherback population in Terengganu, Malaysia, 1956-1995. Chelonian Conservation and Biology.: 2: 196-203.; Chan E.H. and H.C. Liew. 1999. Hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, nesting on Redang Island, Terengganu, Malaysia, from1993 to 1997. Chelonian Conservation and Biology.: 3: 326-329.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Colton, E. O. 1977. Turtles of the Maldives. Defenders (of Wildlife): 52: 167-170.; Moutou, F. 1985. Briefly: the Maldive Islands. Oryx: 19: 232-233.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Laurent, L. and Lescure, J. 1991. Hawksbill turtles in the Mediterranean Sea. Marine Turtle Newsletter: 54: 12-13.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Anon. 1985. Mona Iguana Recovery Plan. U.S. Fish and Wildlife Service. ; Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Cuevas, E., Abreu-Grobois, F.A., Guzmán-Hernández, V., Liceaga-Correa, M.A. and van Dam, R.P. 2010. Post-nesting migratory movements of hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in waters adjacent to the Yucatan Peninsula, Mexico. Endangered Species Research: 10: 123-133.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A. 1989. Status report of the Hawksbill Turtle. In, Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 101-115 ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Seminoff, J. A., Nichols, W. J., Resendiz, A. and Brooks, L. 2003. Occurrence of hawksbill turtles, \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E, near Baja California. Pacific Science: 57: 9-16.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ; Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Martin, C. S., J. Jeffers and B. J. Godley. 2005. The status of marine turtles in Montserrat (Eastern Caribbean). Animal Biodiversity and Conservation: 28(2): 159-168.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Saba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Laguex, C. J., Campbell, C. L. and McCoy, W. A. 2003. Nesting and conservation of the Hawkbill Turtle (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E), in the Pearl Cays, Nicaragua. Chelonian Conservation and Biology: 4(3): 588-602; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Salm, R. V. 1986. The proposed Daymaniyat Islands National Nature Reserve Management Plan. IUCN Coastal Zone Management Project. Gland. ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; De Silva, G. S. 1986. Protected areas and turtle eggs in Sabah, East Malaysia. In: McNeely, J. A. and Miller, K. R. (eds) National Parks, conservation, and development. Smithsonian Institution Press. Washington D.C.; Matillano, F. S., and Ladra, D. F. 1986. Nesting habits and habitat of marine turtles in Quiniluban Island, Palawan. Unpublished report . ","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Olson, M. H. 1985. Population characteristics of the Hawksbill Turtle (\u003Ci\u003EEretmochelys imbricata\u003C/i\u003E) on Mona Island, Puerto Rico: a case study of U. S. Endangered Species Act. Proceedings of the Fifth International Coral Reef Congress, Tahiti, 1985, Vol.5 . ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Jean, C., Ciccione, S., Ballorain, K., Georges, J.-Y. and Bourjea, J. 2010. Ultralight aircraft surveys reveal marine turtle population increases along the west coast of Reunion Island. Oryx: 44: 223-229.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Morris, K. 1984. The National Report: St Vincent. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Witzell, W.N. and A.C. Banner. 1980. The hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in Western Samoa. Bull. Mar. Sci.: 30: 571-579.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: analysis of coastal and marine habitats of the Red Sea. Report to the Meteorology and Environmental Protection Administration, Jeddah. IUCN. Gland, Switzerland. ; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Brooke, M. de L. and Garnett, M. C. 1983. Survival and reproductive performance of Hawksbill Turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E L. on Cousin Island, Seychelles. Biological Conservation: 25: 161-170.; Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Meylan, A.B., and Donnelly M. 1999. Status Justification for Listing the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E as Critically Endangered on the 1996 IUCN Red List of Threatened Animals. Chelonian Conservation and Biology: 3: 200-224.; Mortimer, J. A. 1983. Marine Turtles in the Republic of Seychelles. WWF Project 1809. IUCN/WWF . ; Mortimer J.A. and R. Bresson. 1999. Temporal distribution and periodicity in hawksbill turtles \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E nestingat Cousin Island, Republic of Seychelles, 1971-1997. ChelonianConservation and Biology: 3: 318-325.; Philips, J., and Wood, V. 1983. Hawksbill Turtles in the Cousin Island Special Reserve 1973-1982. Cousin Island Research Station Technical Report No. ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Travis, W. 1967. The voice of the turtle. George Allen and Unwin Ltd. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: an assessment of biotopes and management requirements for the Saudi Arabian Gulf coastal zone. Report to the Meteorology and Environmental Protection Administration, Jeddah, Saudi Arabia. IUCN. Gland, Switzerland. ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hirth, H.F. and E.M. Abdel Latif. 1980. A nesting colony of the hawksbill turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E on Seil Ada Kebir Island,Suakin Archipelago, Sudan. Biology Conservation: 17: 125-130.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Fletemeyer, J. R. 1984. The National Report: Turks-Caicos. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Devaux, B. and Bonin, F. 2010. Oh, happy days! / Floride, Texas. La Tortue: 84: 32-53.; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Meylan, A.B. 1999. Status of the Hawksbill Turtle \u003Ci\u003EEretmochelys imbricata\u003C/i\u003E in the Caribbean Region. Chelonian Conservation and Biology: 3: 177-184.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Eretmochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11650,"full_name":"Pipistrellus pygmaeus","author_year":"(Leach, 1825)","common_names":[{"lang":"English","names":"Soprano Pipistrelle","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1983. Nouvelles données sur les chiroptères du nord algerien. Mammalia: 47: 359-369.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Lustrat, P. 1999. Première mention de Pipistrelle \"commune\", \u003Ci\u003EPipistrellus\u003C/i\u003E sp. émettant en fréquence terminale à plus de 50 kHz en France. Arvicola: 11: 34-35.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Häussler, U., Nagel, A., Herzig, G. and Braun, M. 1999. \u003Ci\u003EPipistrellus\u003C/i\u003E \"\u003Ci\u003Epygmaeus/mediterraneus\u003C/i\u003E\" in SW - Deutschland: ein fast perfekter Doppelgänger der Zwergfledermaus \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E. Der Flattermann: 21: 13-19.; Zöphel, U., Ziegler, T., Feiler, A. and Pocha, S. 2002. Erste Nachweise der Mückenfledermaus, \u003Ci\u003EPipistrellus pygmaeus\u003C/i\u003E (Leach, 1825), für Sachsen (Mammalia: Chiroptera: Vespertilionidae). Faunistiche Abhandlungen Staatliches Museum für Tierkunde Dresden: 22: 411-422.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Russ, J. M. 1996. First record of bimodality in the echolocation calls of the common pipistrelle \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E in Ireland. Irish Naturalists Journal: 25: 225-226.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Russo, D. and Jones, G. 2000. The two cryptic species of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E (Chiroptera, Vespertilionidae) occur in Italy: evidence from echolocation and social calls. Mammalia: 64: 187-197.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ruedi, M., Tupinier, Y. and De Paz, O. 1998. First breeding record for the noctule bat (\u003Ci\u003ENyctalus noctula\u003C/i\u003E) in the Iberian Peninsula. Mammalia: 62: 301-304.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Vaughan, T. C., Cockrum, E. L. and Vaughan, P. J. 1977. Four vespertilionid bats new to the fauna of Tunisia. Mammalia: 41: 517-522.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Zagorodnuik, I. V. and Tyschenko-Tyshkovets, M. L. 2001. \u003Ci\u003EPipistrellus pygmaeus\u003C/i\u003E (55 kHz) in the Kyiv Region (Ukraine). Vestnik Zoologii: 35: 52.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Jones, G. and van Parus, S. M. 1993. Bimodal echolocation in pipistrelle bats: are cryptic species present? Proc. R. Soc. London B. Biol. Sci.: 251: 119-125.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11652,"full_name":"Sylvia hortensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Mestersanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Orpheusgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Western Orphean Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Orfeuskerttu, Orpheuskerttu","convention_language":false,"id":null},{"lang":"German","names":"Orpheusgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dalos poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Bigia grossa","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka lutniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-real","convention_language":false,"id":null},{"lang":"Russian","names":"Pevchaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Mirlona","convention_language":true,"id":null},{"lang":"Swedish","names":"Mästersångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11653,"full_name":"Pseudoscaphirhynchus fedtschenkoi","author_year":"(Kessler, 1872)","common_names":[{"lang":"English","names":"Syr-Dar Shovelnose Sturgeon, Syr Darya Sturgeon, Syr-Darya Shovelnose","convention_language":true,"id":null},{"lang":"Polish","names":"Nibylopatonos syr-daryjski","convention_language":false,"id":null},{"lang":"Swedish","names":"Syr Darya-stör","convention_language":false,"id":null}],"distributions":[{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11654,"full_name":"Limosa lapponica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Lille kobbersneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Grutto","convention_language":false,"id":null},{"lang":"English","names":"Bar-tailed Godwit","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakuiri","convention_language":false,"id":null},{"lang":"French","names":"Barge rousse","convention_language":true,"id":null},{"lang":"German","names":"Pfuhlschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis goda","convention_language":false,"id":null},{"lang":"Italian","names":"Pittima minore","convention_language":false,"id":null},{"lang":"Polish","names":"Szlamnik, Szlamnik (szlimik, szlamik rdzawy)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Fuselo","convention_language":false,"id":null},{"lang":"Russian","names":"Maly Veretennik","convention_language":false,"id":null},{"lang":"Spanish","names":"Aguja colipinta","convention_language":true,"id":null},{"lang":"Swedish","names":"Myrspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pérez del Val, J. 2001. A survey of birds of Annobón Island, Equatorial Guinea: a preliminary report. Bulletin of the African Bird Club: 8: 54.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax lapponica","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11655,"full_name":"Saxicola rubetra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Bynkefugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Paapje","convention_language":false,"id":null},{"lang":"English","names":"Whinchat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensastasku","convention_language":false,"id":null},{"lang":"French","names":"Tarier des prés","convention_language":true,"id":null},{"lang":"German","names":"Braunkehlchen, Braukehlchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rozsdás csuk","convention_language":false,"id":null},{"lang":"Italian","names":"Stiaccino","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cartaxo-nortenho","convention_language":false,"id":null},{"lang":"Russian","names":"Lugovoy Chekan","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarabilla Norteña","convention_language":true,"id":null},{"lang":"Swedish","names":"Buskskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11656,"full_name":"Miniopterus natalensis","author_year":"(A. Smith, 1834)","common_names":[{"lang":"English","names":"Natal Long-fingered Bat","convention_language":true,"id":null}],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only African populations. Formerly included in \u003Ci\u003EMiniopterus schreibersii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11657,"full_name":"Phylloscopus subaffinis","author_year":"Ogilvie-Grant, 1900","common_names":[{"lang":"English","names":"Buff-throated Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot subaffin","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11658,"full_name":"Regulus regulus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fuglekonge","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudhaantje","convention_language":false,"id":null},{"lang":"English","names":"Common Goldcrest, Goldcrest","convention_language":true,"id":null},{"lang":"Finnish","names":"Hippiäinen","convention_language":false,"id":null},{"lang":"French","names":"Roitelet huppé","convention_language":true,"id":null},{"lang":"German","names":"Wintergoldhähnchen","convention_language":false,"id":null},{"lang":"Italian","names":"Regolo","convention_language":false,"id":null},{"lang":"Polish","names":"Mysikrólik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Estrelinha-de-poupa","convention_language":false,"id":null},{"lang":"Russian","names":"Zheltogolovy Korolyok","convention_language":false,"id":null},{"lang":"Spanish","names":"Reyezuelo Sencillo","convention_language":true,"id":null},{"lang":"Swedish","names":"Kungsfågel","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11659,"full_name":"Sporophila ruficollis","author_year":"Cabanis, 1851","common_names":[{"lang":"English","names":"Dark-throated Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile à gorge sombre","convention_language":true,"id":null},{"lang":"Spanish","names":"Capuchino garganta café","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11660,"full_name":"Vanellus lugubris","author_year":"(Lesson, 1826)","common_names":[{"lang":"English","names":"Senegal Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau terne","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría lúgubre","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius lugubris","author_year":"Lesson, 1826"},{"full_name":"Stephanibyx lugubris","author_year":"(Lesson, 1826)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11662,"full_name":"Lepidochelys olivacea","author_year":"(Eschscholtz, 1829)","common_names":[{"lang":"English","names":"Olive Ridley, Pacific Ridley","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Whiting, S.D., Long, J.L. and Coyne, M. 2007. Migration routes and foraging behaviour of olive ridley turtles \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E in northern Australia. Endangered Species Research: 3: 1-9.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Godgenger, M.-C., Bréheret, N., Bal, G., N'Damité, K., Girard, A. and Girondot, M. 2009. Nesting estimation and analysis of threats for Critically Endangered leatherback \u003Ci\u003EDermochelys coriacea\u003C/i\u003E and Endangered olive ridley \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E marine turtles nesting in Congo. Oryx: 43: 556-563.; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Cornelius, S. E., and Robinson, D. C. 1985. Abundance, distribution and movements of Olive Ridley sea turtles in Costa Rica, V. Final Report, USFW Contract No. 14-16-0002-81-225, WWF-US Contract No. 3085 . ; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Kelle, L., Gratiot, N. and De Thoisy, B. 2009. Olive ridley turtle \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E in French Guiana: back from the brink of regional extirpation? Oryx: 43: 243-246.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Kami, H. G. 1997. First record of the Olive Ridley turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in Iranian coastal waters (Testudines, Cheloniidae). Zoology in the Middle East: 15: 67-70.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Project Global. 2009. Country profile. Federated States of Micronesia. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Sybesma, J. and P.C. Hoetjes. 1992. First record of the Olive Ridley and of nesting by the Loggerhead turtle in Curacao. Caribbean Journal of Science: 28: 103-104.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Firdous, F. 1985. Marine turtle management along Karachi coast. WWF-Pakistan: 4: 5-9.; Kabraji, A. M. and Firdous, F. 1984. Conservation of turtles, Hawkesbay and Sandspit, Pakistan. WWF Project. WWF-International and Sind Wildlife Management Board . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hays de Brown, C. and Brown, W. B. 1982. The status of sea turtles in Peru. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Eckert K.L. and F. Alberto Abreu Grobois (eds.) 2001. Status and Distribution of the Olive Ridley Turtle, \u003Ci\u003ELepidochelys olivacea\u003C/i\u003E, in the Western Atlantic Ocean. WIDECAST, IUCN/SSC/MTSG, WWF, and the UNEP Caribbean Environment Programme . 52-56; Mohadin, K. and Reichart, H. A. 1984. The National Report: Suriname. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reichart, H. A. 1986. Sea turtles of Suriname. American: 38: 477.; Reichart, H. A. 1989. Status report of the Olive Ridley Turtle. In: Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 175-188; Schulz, J. P. 1982. Status of sea turtle populations nesting in Suriname with notes on sea turtles nesting in Guyana and French Guiana. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cheong, M. C. 1984. The National Report: Trinidad-Tobago. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Lepidochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11663,"full_name":"Branta canadensis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Berneška velká","convention_language":false,"id":null},{"lang":"Danish","names":"Kanadagås","convention_language":false,"id":null},{"lang":"Dutch","names":"Canadese Gans","convention_language":false,"id":null},{"lang":"English","names":"Canada Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Kanadanhanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache du Canada","convention_language":true,"id":null},{"lang":"German","names":"Kanadagans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kanadai lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca del Canada","convention_language":false,"id":null},{"lang":"Polish","names":"Bernikla kanadyjska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso do Canadá","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla Canadiense","convention_language":true,"id":null},{"lang":"Swedish","names":"Kanadagås","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"introduced,introduced (?)","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?),introduced","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"introduced,distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"introduced,introduced (?)","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"introduced,introduced (?)","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"introduced","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?),distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"introduced","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced (?),introduced","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11664,"full_name":"Balaenoptera musculus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Blauwe Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Blue Whale, Sulphur-bottom Whale, Sibbald's Rorqual","convention_language":true,"id":null},{"lang":"French","names":"Baleinoptère bleue, Rorqual à ventre cannelé, Rorqual de Sibbold, Baleine bleue, Rorqual bleu, Baleine d'Ostende","convention_language":true,"id":null},{"lang":"Norwegian","names":"Blåhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena azul, Rorcual azul","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgblåval, blåval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Calambokidis, J., Barlow, J., Ford, J.K.B. and Chandler, T.E. 2009. Insights into the population structure of blue whales in the Eastern North Pacific from recent sightings and photographic identification. Marine Mammal Science: 25: 816-832.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Buchan, S.J., Rendell, L.E. and Hucke-Gaete, R. 2010. Preliminary recordings of blue whale (\u003Ci\u003EBalaenoptera musculus\u003C/i\u003E) vocalizations in the Gulf of Corcovado, northern Patagonia, Chile. Marine Mammal Science: 26: 451-459.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smith, B. D., Crespo, E. A. and di Sciara, G. N (comps.) 2003. Dolphins, Whales and Porpoises: 2002-2010 Conservation Action Plan for the World's Cetaceans. IUCN/SSC Cetacean Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bailey, H., Mate, B.R., Palacios, D.M., Irvine, L., Bograd, S.J. and Costa, D.P. 2009. Behavioural estimation of blue whale movements in the Northeast Pacific from state-space model analysis of satellite tracks. Endangered Species Research: 10: 93-106.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Borsa, P. and Hoarau, G. 2004. A Pygmy Blue Whale (Cetacea: Balaenopteridae) in the inshore waters of New Caledonia. Pacific Science: 58: 579-584.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1978. Red data book: Mammalia. IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Bailey, H., Mate, B.R., Palacios, D.M., Irvine, L., Bograd, S.J. and Costa, D.P. 2009. Behavioural estimation of blue whale movements in the Northeast Pacific from state-space model analysis of satellite tracks. Endangered Species Research: 10: 93-106.; Baskin, Y. 1993. Endangered species - Blue Whale population may be increasing off California. Science: 56: 9-13.; Calambokidis, J., Barlow, J., Ford, J.K.B. and Chandler, T.E. 2009. Insights into the population structure of blue whales in the Eastern North Pacific from recent sightings and photographic identification. Marine Mammal Science: 25: 816-832.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11665,"full_name":"Thalassarche eremita","author_year":"Murphy, 1930","common_names":[{"lang":"English","names":"Chatham Albatross","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11666,"full_name":"Ardea melanocephala","author_year":"Vigors \u0026 Children, 1826","common_names":[{"lang":"Danish","names":"Fiskehejre","convention_language":false,"id":null},{"lang":"English","names":"Black-headed Heron","convention_language":true,"id":null},{"lang":"French","names":"Héron mélanocéphale","convention_language":true,"id":null},{"lang":"Spanish","names":"Garza cabecinegra","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11667,"full_name":"Phylloscopus trochiloides","author_year":"(Sundevall, 1837)","common_names":[{"lang":"Danish","names":"Phylloscopus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Fitis","convention_language":false,"id":null},{"lang":"English","names":"Greenish Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Idänuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot verdâtre","convention_language":true,"id":null},{"lang":"German","names":"Grünlaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Zö ld füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí verdastro","convention_language":false,"id":null},{"lang":"Portuguese","names":"felosa-troquilóide","convention_language":false,"id":null},{"lang":"Russian","names":"Zelyonaya Penochka","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Troquiloide","convention_language":true,"id":null},{"lang":"Swedish","names":"Lundsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11668,"full_name":"Gazella dorcas","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Dorcas gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Dorcasgazel","convention_language":false,"id":null},{"lang":"English","names":"Dorcas Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Dorkasgaselli","convention_language":false,"id":null},{"lang":"French","names":"Gazelle dorcas","convention_language":true,"id":null},{"lang":"German","names":"Dorkas-Gazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella dorcade","convention_language":false,"id":null},{"lang":"Spanish","names":"Gacela dorcas","convention_language":true,"id":null},{"lang":"Swedish","names":"dorkasgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"East, R. (comp.) 1999. African Antelope Database 1998. Compiled by Rod East and the IUCN/SSC Antelope Specialist Group. Occasional paper of the IUCN Species Survival Commission No. 21. IUCN- The World Conservation Union . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ferguson, W. W. 1981. The systematic position of \u003Ci\u003EGazella dorcas\u003C/i\u003E (Artiodactyla: Bovidae) in Israel and Sinai. Mammalia: 45: 453-457.; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Saleh, M. A. 1987. The decline of gazelles in Egypt. Biological Conservation: 39: 83-95.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Ferguson, W. W. 1981. The systematic position of \u003Ci\u003EGazella dorcas\u003C/i\u003E (Artiodactyla: Bovidae) in Israel and Sinai. Mammalia: 45: 453-457.; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Yom-tov, Y. and Ilani, G. 1987. The numerical status of \u003Ci\u003EGazella dorcas\u003C/i\u003E and \u003Ci\u003EGazella gazella\u003C/i\u003E in the southern Negev Desert, Israel. Biological Conservation: 40: 245-253.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brito, J.C., Alvares, F., Martínez-Freiría, F., Sierra, P., Sillero, N. and Tarroso, P. 2010. Data on the distribution of mammals from Mauritania, West Africa. Mammalia: 74: 449-455.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Peris, S. J. 1981. Observations ornithologiques dans le sud ouest du Maroc. Bulletin de l'Institut Scientifique, Rabat: 5: 135-141.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct,reintroduced","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Carlisle, D.B. and Ghorbial, L.I. 1968. Food and water requirements of Dorcas gazelle in the Sudan. Mammalia: 32: 570-576.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Riney, T. 1964. Potential use of wildlife resources in Tunisian forest lands. FAO report to Government of Tunisia. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Northwest African populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11669,"full_name":"Sylvia sarda","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Sardinsk sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Sardijnse Grasmus","convention_language":false,"id":null},{"lang":"English","names":"Marmora's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sardiniankerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette sarde","convention_language":true,"id":null},{"lang":"German","names":"Sardengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szardíniai poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Magnanina sarda","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka czarniawa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-sarda","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca sarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Sardinsk sångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11670,"full_name":"Diomedea antipodensis","author_year":"Robertson \u0026 Warham, 1992","common_names":[{"lang":"English","names":"Antiodean wandering albatross, Antipodean Albatross, Gibson's albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros des Antipodes","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros Errante de Gibson, Albatros Errante de las Antípodas, Albatros de Nueva Zelanda, Albatros de las Antipodas","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Diomedea exulans antipodensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea exulans\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11671,"full_name":"Aythya marila","author_year":"(Linnaeus, 1761)","common_names":[{"lang":"Czech","names":"Polák kaholka","convention_language":false,"id":null},{"lang":"Danish","names":"Bjergand","convention_language":false,"id":null},{"lang":"Dutch","names":"Toppereend","convention_language":false,"id":null},{"lang":"English","names":"Scaup, Greater Scaup","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule milouinan","convention_language":true,"id":null},{"lang":"German","names":"Bergente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hegyi réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta grigia","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bergand","convention_language":false,"id":null},{"lang":"Polish","names":"podgorzalka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-bastardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Bastardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Bergand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas marila","author_year":"Linnaeus, 1761"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11672,"full_name":"Anser anser","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Husa velká","convention_language":false,"id":null},{"lang":"Danish","names":"Grågås","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Gans","convention_language":false,"id":null},{"lang":"English","names":"Greylag Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Merihanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie cendrée","convention_language":true,"id":null},{"lang":"German","names":"Graugans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nyári lúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca selvatica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-comun, Ganso-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Sery Gus","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Grågås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas anser","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11673,"full_name":"Netta rufina","author_year":"(Pallas, 1773)","common_names":[{"lang":"Czech","names":"Zrzohlávka rudozobá","convention_language":false,"id":null},{"lang":"Danish","names":"Rødhovedet And","convention_language":false,"id":null},{"lang":"Dutch","names":"Krooneend","convention_language":false,"id":null},{"lang":"English","names":"Red-crested Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Punapäänarsku","convention_language":false,"id":null},{"lang":"French","names":"Nette rousse","convention_language":true,"id":null},{"lang":"German","names":"Kolbenente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Üstökösréce","convention_language":false,"id":null},{"lang":"Italian","names":"Fistione turco","convention_language":false,"id":null},{"lang":"Polish","names":"helmiatka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-de-bico-vermelho","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato colorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhuvad dykand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas rufina","author_year":"Pallas, 1773"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11674,"full_name":"Lagenorhynchus obscurus","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Dusky Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque sombre","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín listado","convention_language":true,"id":null},{"lang":"Swedish","names":"strimmig delfin, mörk delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Brownell, R. L. Jr and Cipriano, F. 1999. Dusky Dolphin \u003Ci\u003ELagenorhynchus obscurus\u003C/i\u003E (Gray, 1828). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11676,"full_name":"Melanitta fusca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fløjlsand","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Zeeëend","convention_language":false,"id":null},{"lang":"English","names":"White-winged Scoter, Velvet Scoter","convention_language":true,"id":null},{"lang":"Finnish","names":"Pilkkasiipi","convention_language":false,"id":null},{"lang":"French","names":"Macreuse brune","convention_language":true,"id":null},{"lang":"German","names":"Samtente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füstös réce","convention_language":false,"id":null},{"lang":"Italian","names":"Orco marino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sjøorre","convention_language":false,"id":null},{"lang":"Polish","names":"Uhla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-fusco","convention_language":false,"id":null},{"lang":"Russian","names":"Turpan","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón Especulado","convention_language":true,"id":null},{"lang":"Swedish","names":"Svärta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas fusca","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11677,"full_name":"Otonycteris hemprichii","author_year":"Peters, 1859","common_names":[{"lang":"English","names":"Hemprich's Long-eared Bat, Desert Long-eared Bat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Shaimardanov, R. T. 1982. [\u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E and \u003Ci\u003EBarbastella leucomelas\u003C/i\u003E (Chiroptera) in Kazakhstan.]. Zool. Zhur.: 61: 1765.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Fairon, J. 1980. Deux nouvelles espèces de cheiroptères pour le fauna Massif de l'Air (Niger): \u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E Peters, 1959 et \u003Ci\u003EPipistrellus nanus\u003C/i\u003E (Peters, 1852). Bulletin Inst. r. Sci. nat. Belg. (Biol.): 52: 1-7.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Madkour, G. 1986. Two microchiropterans and a carnivore from Qatar. Zoologischer Anzeiger: 216: 72-80.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Beaucornu, J.-C., Bach-Hamba, D., Launay, H., Hellal, H. and Chastel, C. 1983. Deux chiroptères peu connus de Tunisie. Mammalia: 47: 127-128.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Otonycteris","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Otonycteris hemprichi","author_year":"Peters, 1859"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11678,"full_name":"Pipistrellus pipistrellus","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Pipistreli i zakonshem","convention_language":false,"id":null},{"lang":"Croatian","names":"Patuljasti šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr hvízdavý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Kääbus-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kääpiölepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle commune","convention_language":true,"id":null},{"lang":"German","names":"Zwergfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges törpedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Dvergleðurblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello nano","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Šikšniukas nykštukas","convention_language":false,"id":null},{"lang":"Maltese","names":"Pipistrell","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dvergflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik malutki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-anão, Pipistrela","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-pitic","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier hvízdavý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago enano","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgfladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Cüce yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Fonderflick, J., Grosselet, M. and Pade, P. 1999. Capture méridionale de la barbastelle d'Europe (\u003Ci\u003EBarbastella barbastellus\u003C/i\u003E) et de la pipistrelle commune (\u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E) au Maroc.]. Mammalia: 62: 610-611.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nagy, Z. L. and Szántó, L. 2003. The occurence of hibernating \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E (Schreber, 1774) in caves of the Carpathian Basin. Acta Chiropterologica: 5(1): 161-162","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Benda, P., Hulva, P., Andreas, M. and Uhrin, M. 2003. Notes on the distribution of \u003Ci\u003EPipistrellus pipistrellus\u003C/i\u003E complex in the Eastern Mediterranean: first records of \u003Ci\u003EP. pipistrellus\u003C/i\u003E for Syria and of \u003Ci\u003EP. pygmaeus\u003C/i\u003E for Turkey. Vespertilio: 7: 87-95.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11679,"full_name":"Grampus griseus","author_year":"(G. Cuvier, 1812)","common_names":[{"lang":"English","names":"Risso's Dolphin, Grey Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Risso, Grampus","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de Risso, Fabo calderón","convention_language":true,"id":null},{"lang":"Swedish","names":"grå delfin, Rissos delfin","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Kinzelbach, R. 1986. First record of Risso's dolphin, \u003Ci\u003EGrampidelphis griseus\u003C/i\u003E, in the eastern Mediterranean Sea. Zoology in the Middle East: 1: 17-19.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goffmann, O., Roditi, M., Shariv, T., Spanier, E. and Kerem, D. 2000. Cetaceans from the Israeli coast of the Mediterranean sea. Israel journal of zoology: 46: 143-147.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Status of the Risso's dolphin, \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier) in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 189-190.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Leatherwood, S., Hubbs, C. L. and Fisher, M. 1979. First records of Risso's Dolphin (\u003Ci\u003EGrampus griseus\u003C/i\u003E) from the Gulf of California with detailed notes on mass stranding. Transactions of the San Diego Society for Natural History: 19: 45-52.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kruse, S., Caldwell, D. K. and Caldwell, M. C. 1999. Risso's Dolphin \u003Ci\u003EGrampus griseus\u003C/i\u003E (G. Cuvier, 1812). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Grampus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Mediterranean population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Baltic and North Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11680,"full_name":"Oxyura vittata","author_year":"(Philippi, 1860)","common_names":[{"lang":"English","names":"Lake Duck","convention_language":true,"id":null},{"lang":"French","names":"Érismature ornée","convention_language":true,"id":null},{"lang":"Spanish","names":"Malvasía Argentina","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Maillard Z., O., Caballero, E., Sánchez, G., Acosta, L., Rocabado, D., Velásquez, M., Terceros, C. and Alvis, W. 2006. Primer registro de \u003Ci\u003EOxyura vittata\u003C/i\u003E en Bolivia. Cotinga: 26: 46-47.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erismatura vittata","author_year":"Philippi, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11681,"full_name":"Aquila adalberti","author_year":"Brehm, 1861","common_names":[{"lang":"Danish","names":"Spansk kejserørn, Iberisk kejserørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Spaanse Keizerarend, Iberische keizerarend","convention_language":false,"id":null},{"lang":"English","names":"Spanish Imperial Eagle, Adalbert's Eagle, White-shouldered Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Iberiankeisarikotka, Espanjankeisarikotka, Pyreneidenkeisarikotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle à épaules blanches, Aigle impérial espagnol, Aquila imperiale iberica, Aigle ibérique","convention_language":true,"id":null},{"lang":"German","names":"Spanischer Kaiseradler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ibériai sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila imperiale iberica, Aquila imperiale occidentale","convention_language":false,"id":null},{"lang":"Polish","names":"Hiszpanski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-imperial, Águia-imperial ibérica","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila imperial ibérica","convention_language":true,"id":null},{"lang":"Swedish","names":"Kejsarörn, Spansk kejsarörn","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Gonzalez-Grande, J. L. 1981. Spain's Imperial Eagle. Natural History: 90: 40-43.; Gonzalez, L.M., Oria, J., Sanchex, R., Margalida, A., Aranda, A., Prada, L., Caldera, J. and Molina, J.I. 2008. Status and habitat changes in the endangered Spanish Imperial Eagle Aquila adalberti population during 1974-2004: implications for its recovery. Bird Conservation International: 18: 242-259.; Heredia, B., Gonzalez, L. M., Gonzalez, J. L. and Alonso, J. C. 1985. La emancipacion y dispersion de los jovenes de Aguila Imperial en el Parque Nacional de Donaña. Vida Silvestre: 53: 37-43.; Ortega, E., Manosa, S., Margalida, A., Sanchez, R., Oria, J. and Gonzalez, L.M. 2009. A demographic descrption of the recovery of the Vulnerable Spansh imperial eagle \u003Ci\u003EAquila adalberti\u003C/i\u003E. Oryx: 43: 113-121.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EAquila heliaca\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E).","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11683,"full_name":"Sylvia mystacea","author_year":"Ménétries, 1832","common_names":[{"lang":"Danish","names":"Menetries Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Levantzwartkop","convention_language":false,"id":null},{"lang":"English","names":"Ménétries's Warbler, Menetries's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"kaspiankerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette de Ménétries","convention_language":true,"id":null},{"lang":"German","names":"Tamariskengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kaukázusi poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Occhinocotto del Caucaso, Occhiocotto del Caucaso","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewska kaspijska, Pokrzewka kaspijska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra de Menetries","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca de Menetries","convention_language":true,"id":null},{"lang":"Swedish","names":"Östlig sammetshätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11684,"full_name":"Gallinago nemoricola","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Wood Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine des bois","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza del Himalaya","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella nemoricola","author_year":"(Hodgson, 1836)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11685,"full_name":"Isurus oxyrinchus","author_year":"Rafinesque, 1810","common_names":[{"lang":"Afrikaans","names":"Haringhaai, Kortvin-mako","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen tonil, Peshkagen tonil","convention_language":false,"id":null},{"lang":"Arabic","names":"Al karch, Qarsh, Deeba","convention_language":false,"id":null},{"lang":"Catalan","names":"Solraig","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Chlarm","convention_language":false,"id":null},{"lang":"Danish","names":"Sildehaj, Makrelhaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Spitssnuit makreelhaai, Haringhaai, Haai","convention_language":false,"id":null},{"lang":"English","names":"Snapper shark, Shortfin mako, Mackerel porbeagle, Mako shark, Bonito shark, Blue pointer, Sharp-nose mackerel shark, Sharp-nosed mackerel shark, Mackerel shark, Dog shark, Shortfin shark, Atlantic mako, Blue shark, Mako, Pointed nose shark, Sharp-nosed shark, Sharpnose mackerel shark","convention_language":true,"id":null},{"lang":"Finnish","names":"Makrillihai","convention_language":false,"id":null},{"lang":"French","names":"Requin-taupe bleu, Taupe bleu, Taupe bleue, Bleu pointu, Marache, Lamie, Requin maquereau, Mako, Requin bleu","convention_language":true,"id":null},{"lang":"German","names":"Blauhai, Mako, Makohai, Makrelenhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Amlez","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo mako, Ossirina","convention_language":false,"id":null},{"lang":"Japanese","names":"Aozame, Meikotsu","convention_language":false,"id":null},{"lang":"Maltese","names":"Pixxitondu, Pixxiplamptu","convention_language":false,"id":null},{"lang":"Maori","names":"Mako, Ngutukao","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Skyllopsaro, Carcharias, Rynchocarcharias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Makrellhai","convention_language":false,"id":null},{"lang":"Papiamento","names":"Tribon blou, Tribon mula","convention_language":false,"id":null},{"lang":"Polish","names":"Rekin ostronosy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-anequim, Rinquim, Marracho-azul, Anequin barbatana curta, Marracho, Peixe-ruim, Tubarão, Tubarão-azul, Tubarao-anequim, Anequim","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin macrou","convention_language":false,"id":null},{"lang":"Samoan","names":"Aso-polota","convention_language":false,"id":null},{"lang":"Serbian","names":"Psina du gonasa, Kucina","convention_language":false,"id":null},{"lang":"Somali","names":"Cawar","convention_language":false,"id":null},{"lang":"Spanish","names":"Atunero, Cane de mare, Tiburón carito, Dientuse, Tinto, Dentuda, Diamante, Mako, Tiburón marrajo, Dientuso azul, Marrajo dientuso, Maco, Dentuse, Tiburon carite, Tiburón bonito, Janequín, Tiburón azujelo, Pesce tondo, Marrajo, Dientuso","convention_language":true,"id":null},{"lang":"Swahili","names":"Papa nyamarasi, Papa nyamzani, Papa sumbwi","convention_language":false,"id":null},{"lang":"Swedish","names":"Makrillhaj, makohaj","convention_language":false,"id":null},{"lang":"Tagalog","names":"Pating","convention_language":false,"id":null},{"lang":"Tamil","names":"Ganumu sorrah","convention_language":false,"id":null},{"lang":"Telugu","names":"Ganumu sora","convention_language":false,"id":null},{"lang":"Turkish","names":"Dikburun","convention_language":false,"id":null},{"lang":"Wolof","names":"Gisandoo","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dulcic, J. and Lipej, L. 2002. Rare and little-known fishes in the Eastern Adriatic during last two decades (1980-2001). Periodicum Biologorum: 104: 185-194.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Isurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11686,"full_name":"Larus ridibundus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Czech","names":"Racek chechtavý","convention_language":false,"id":null},{"lang":"Danish","names":"Hættemåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kokmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Common Black-headed Gull, Black-headed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Naurulokki","convention_language":false,"id":null},{"lang":"French","names":"Mouette rieuse","convention_language":true,"id":null},{"lang":"German","names":"Lachmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dankasirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Guincho-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Reidora","convention_language":true,"id":null},{"lang":"Swedish","names":"Skrattmås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"McCrie, N. and McCrie, T. 1999. Sight records of a Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E in the Northern Territory. Australian Bird Watcher: 18: 87-92.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Muyen, B. van. 2005. First record of Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E for Benin. Bulletin of the African Bird Club: 12: 164-165.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Swarth, C. W. 1987. First sight record of the Black-headed Gull for Cameroon, West Africa. Malimbus: 9: 127-128.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.; Regalado Ruíz, P. 1998. Primer hallazgo de la Gaviota Reidora (\u003Ci\u003ELarus ridibundus\u003C/i\u003E Linneo) (Aves: Laridae) en Cuba. El Pitirre: 11: 96-97.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; Thévenot, M., Radi, M., Qninba, A. and Dakki, M. 2004. First proven breeding record of the Black-headed Gull \u003Ci\u003ELarus ridibundus\u003C/i\u003E in Africa. Alauda: 72: 59-61.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11688,"full_name":"Mesoplodon mirus","author_year":"True, 1913","common_names":[{"lang":"English","names":"True's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de True","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de True","convention_language":true,"id":null},{"lang":"Swedish","names":"Trues näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11689,"full_name":"Grus monacha","author_year":"Temminck, 1835","common_names":[{"lang":"Danish","names":"Munketrane eller hvidhovedet trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Monnikskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"Hooded Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Munkkikurki","convention_language":false,"id":null},{"lang":"French","names":"Grue moine","convention_language":true,"id":null},{"lang":"German","names":"Mönchskranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru monaca","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla monjita, Grulla monje","convention_language":true,"id":null},{"lang":"Swedish","names":"munktrana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sonobe, K. and Izawa, N. 1987. Endangered bird species in the Korean Peninsula. Museum of Korean Nature (Korea University in Tokyo) and Wild Bird Society of Japan. Tokyo.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Potapov, R. L. and Flint, V. E (eds.) 1987. [The birds of the USSR: Galliformes, Gruiformes.]. Nauka. Leningrad.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11690,"full_name":"Mergus squamatus","author_year":"Gould, 1864","common_names":[{"lang":"English","names":"Scaly-sided Merganser, Chinese Merganser","convention_language":true,"id":null},{"lang":"French","names":"Harle de Chine","convention_language":true,"id":null},{"lang":"Spanish","names":"Serreta China","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. and Verbelen, P. 1997. Scaly-sided Merganser (\u003Ci\u003EMergus squamatus\u003C/i\u003E) on Doi Inthanon: an addition to the list of Thai birds. Natural History Bulletin of the Siam Society: 45: 233-235.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11691,"full_name":"Loxodonta africana","author_year":"(Blumenbach, 1797)","common_names":[{"lang":"Afrikaans","names":"Olifant","convention_language":false,"id":null},{"lang":"Arabic","names":"Fel","convention_language":false,"id":null},{"lang":"Armenian","names":"Piugh","convention_language":false,"id":null},{"lang":"Azerbaijani","names":"Fil","convention_language":false,"id":null},{"lang":"Basque","names":"Elefante","convention_language":false,"id":null},{"lang":"Belarusian","names":"Slon","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Slon","convention_language":false,"id":null},{"lang":"Catalan","names":"Elefante","convention_language":false,"id":null},{"lang":"Central Khmer","names":"Domrey","convention_language":false,"id":null},{"lang":"Croatian","names":"Slon","convention_language":false,"id":null},{"lang":"Czech","names":"Slon","convention_language":false,"id":null},{"lang":"Danish","names":"Elefant, afrikansk elefant","convention_language":false,"id":null},{"lang":"Dutch","names":"Afrikaanse olifant, Olifant","convention_language":false,"id":null},{"lang":"English","names":"African Savannah Elephant, African Elephant","convention_language":true,"id":null},{"lang":"Estonian","names":"Elevant","convention_language":false,"id":null},{"lang":"Finnish","names":"Elefantti, Norsu, Afrikannorsu","convention_language":false,"id":null},{"lang":"French","names":"Eléphant africain, Eléphant d'Afrique","convention_language":true,"id":null},{"lang":"German","names":"Afrikanischer Elefant","convention_language":false,"id":null},{"lang":"Hindi","names":"Hathis, Haathi","convention_language":false,"id":null},{"lang":"Icelandic","names":"Fill","convention_language":false,"id":null},{"lang":"Italian","names":"Elefante africano","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Elefantas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Elefant","convention_language":false,"id":null},{"lang":"Portuguese","names":"Elefante","convention_language":false,"id":null},{"lang":"Russian","names":"Slon","convention_language":false,"id":null},{"lang":"Spanish","names":"Elefante africano","convention_language":true,"id":null},{"lang":"Swahili","names":"Ndovo, Tembo","convention_language":false,"id":null},{"lang":"Swedish","names":"afrikansk elefant","convention_language":false,"id":null},{"lang":"Urdu","names":"Haathi","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Anstey, S. 1993. Angola: elephants, people and conservation: a preliminary assessment of the status and conservation of elephants in Angola. Project report IUCN Regional Office for Southern Africa. ; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Menzies, J. I. 1996. A systematic revision of \u003Ci\u003EMelomys\u003C/i\u003E (Rodentia: Muridae) of New Guinea. Australian Journal of Zoology: 44: 367-426.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Eltringham, S. K. 1999. The hippos. Poyser Natural History. London.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.; Verschuren, J., Heymans, J. C. and Delvingt, W. 1989. Conservation in Benin - with the help of the European Economic Community. Oryx: 23: 22-26.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Gibson, D.S., Craig, G.C. and Masogo, R.M. 1998. Trends of the elephant population in northern Botswana from aerial survey data. Pachyderm: 25: 27.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Junker, J., van Aarde, R.J. and Ferreira, S.M. 2008. Temporal trends in elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E numbers and densities in northern Botswana: is the population really increasing? Oryx: 42: 58-65.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Spinage, C. A. 1990. Botswana's problem elephants. Pachyderm: 13: 14-19.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Jachmann, H. 1988. Numbers, distribution and movements of the Nazinga elephants. Pachyderm: 10: 16-21.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.; Spinage, C. A. 1985. The elephants of Burkina-Faso, West Africa. Pachyderm: 5: 2-5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bowden, C. G. R. 1986. Records of other species of mammal from western Cameroon. In: Stuart, S. N. (ed.) Conservation of Cameroon montane forests International Council for Bird Preservation. Cambridge (UK).; de Longh, H., Tchamba, M. T., Aarhaug, P. and and Verhage, B. 2004. Impact of dam construction on two elephant populations in northern Cameroon. Pachyderm: 36: 30-43.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Ekobo, A. 1993. The status of Forest Elephants in the south east of the Republic of Cameroon. Pachyderm: 16: 84.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Klop, E. and van Goethem, J. 2008. Savanna fires govern community structure of ungulates in Benoue National Park, Cameroon. Journal of Tropical Ecology: 24: 39-47.; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Van Lavieren, L. P. and Esser, J. D. 1979. Numbers, distribution and habitat preference of large mammals in Bouba Ndjida National Park, Cameroon. African Journal of Ecology: 17: 141-153.; Whyte, I. 1993. Number and migration patterns of Savanna Elephants (\u003Ci\u003ELoxodonta africana africana\u003C/i\u003E) in North Cameroon. Pachyderm: 16: 72.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1988. Elephants of the Dzanga-Sangha dense forest of south-western Central African Republic. Pachyderm: 10: 12-15.; Fay, J. M. and Agnagna, M. 1991. Forest Elephant population in the Central African Republic and Congo. Pachyderm: 14: 3-19.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dolmia, N.M., Calenge, C., Maillard, D. and Planton, H. 2007. Preliminary observations of elephant (\u003Ci\u003ELoxodonta africana\u003C/i\u003E, Blumenbach) movements and home range in Zakouma National Park, Chad. African Journal of Ecology (OnlineEarly Articles): 45(4): 594-598.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Poilecot, P., N'Gakoutou, E.B. and Taloua, N. 2010. Evolution of large mammal populations and distribution in Zakouma National Park (Chad) between 2002 and 2008. Mammalia: 74: 235-246.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Fay, J. M. and Agnagna, M. 1991. Forest Elephant population in the Central African Republic and Congo. Pachyderm: 14: 3-19.; Fay, J. M. and Agnagna, M. 1993. Elephants and ivory in the Congo since the ban: the lull before the storm. Pachyderm: 16: 51-58.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Merz, G. and Hoppe-Dominik, B. 1991. Distribution and status of the Forest Elephant in the Ivory Coast, West Africa. Pachyderm: 14: 22-24.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Alers, M. P. T., Blom, A., Sikubwabo Kiyengo, C., Masunde, T. and Barnes, R. F.W. 1992. Preliminary assessment of the Forest Elephant in Zaire. African Journal of Ecology: 30: 279-291.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Krunkelsven, E. V., Bila-Isia, I. and Draulans, D. 2000. A survey of bonobos and other large mammals in the Salonga National Park, Democratic Republic of Congo. Oryx: 34: 180-187.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Smith, K., Atalia, M. and Watkin, J. 1993. Pachyderms and threats increasing in Garamba national park, Zaire. Species: 20: 30-32.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"reintroduced,extinct","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Largen, M. J. and Yalden, D. W. 1987. The decline of Elephant and Black Rhinoceros in Ethiopia. Oryx: 21: 103-106.; Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Thouless, C. 1991. A report of the Laikipia elephant count, 1990. Pachyderm: 14: 32-36.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Anstey, S. and Dunn, A. 1991. Forest Elephants in Liberia: status and conservation. A report to WWF . ; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Mkanda, F. X. 1993. Status of elephants and poaching for ivory in Malawi: a case study in Liwonde and Kasungu national parks. Pachyderm: 16: 59-61.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chambal, M. 1992. Current elephant range and status in Mozambique. Pachyderm: 16: 44-47.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Ntumi, C.P., Ferreira, S.M. and van Aarde, R J. 2009. A review of historical trends in the distribution and abundance of elephants \u003Ci\u003ELoxodonta africana\u003C/i\u003E in Mozambique. Oryx: 43: 568-579.; Ntumi, C.P., van Aarde, R.J., Fairall, N. and de Boer, W.F. 2005. Use of space and habitat by elephants (\u003Ci\u003ELoxodonta africana\u003C/i\u003E) in the Maputo Elephant Reserve, Mozambique. South African Journal of Wildlife Research: 35: 139-146.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chase, M.J. and Griffin, C.R. 2009. Elephants caught in the middle: impacts of war, fences and people on elephant distribution and abundance in the Caprivi Strip, Namibia. African Journal of Ecology: 47: 223-233.; Gough, K. F. and Kerley, G. I. H. 2006. Demography and population dynamics in the elephants \u003Ci\u003ELoxodonta africana\u003C/i\u003E of Addo Elephant National Park, South Africa: is there evidence of density dependent regulation? Oryx: 40: 434-441.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Young, K. D., Ferreira, S. M. and van Aarde, R. J. 2009. The influence of increasing population size and vegetation productivity on elephant distribution in the Kruger National Park. Austral Ecology: 34: 329-342.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hameed, S.M.A. and Eljack, A.O. 2003. Ramsar Information Sheet (RIS) for Dinder National Park, Sudan. Wetlands International. 40","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Abe, E. 1992. The status of elephants in Uganda: Queen Elizabeth National Park. Pachyderm: 15: 49.; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Foley, C.A.H. and Faust, L.J. 2010. Rapid population growth in an elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E population recovering from poaching in Tarangire National Park, Tanzania. Oryx: 44: 205-212.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Lamprey, H.F. 1964. Estimation of the large mammal densities, biomass and energy exchange in the Tarangire Game Reserve and the Masai Steppe in Tanganyika. East African Wildlife Journal: 2: 1-46.; Swynnerton, G. H. and Hayman, R. W. 1951. A checklist of the land mammals of the Tanganyika Territory and the Zanzibar Protectorate. Journal of the East African Natural History Society: 20: 274-392.; Tanzania Wildlife Conservation Monitoring. 1992. Recent trends in Tanzanian Elephant population 1987-1992. Frankfurt Zoological Society. Arusha, Tanzania. ","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Chanda, G. and Tembo, A. 1993. Status of elephants on the Zambian bank of the middle Zambezi valley. Pachyderm: 16: 48-50.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Blanc, J.J., Thouless, C.R., Hart, J.A., Dublin H.T., Douglas-Hamilton, I., Craig, C.R. and Barnes, R.F.W. 2003. African Elephant Status Report 2002: an update from the African Elephant Database. http://iucn.org/afesg/aed/aesr2002.html IUCN/SSC African Elephant Specialist Group. IUCN, Gland, Switzerland and Cambridge, UK. ; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dunham, K.M. 2008. Detection of anthropogenic mortality in elephant \u003Ci\u003ELoxodonta africana\u003C/i\u003E populations: a long-term case study from the Sebungwe region of Zimbabwe. Oryx: 42: 36-48.; Jackson, P. 1982. Elephants and rhinos in Africa. A time for decision. IUCN. Gland.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Loxodonta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2005","name":"West African Elephants"}]},{"id":11692,"full_name":"Orcinus orca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Orca, Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Epaulard, Orque","convention_language":true,"id":null},{"lang":"German","names":"Schwertwal, Mordwal","convention_language":false,"id":null},{"lang":"Portuguese","names":"Orca, Baleia Assassina","convention_language":false,"id":null},{"lang":"Spanish","names":"Orca, Espadarte","convention_language":true,"id":null},{"lang":"Swedish","names":"späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Guinet, C. and Jouventin, P. 1990. La vie sociale des 'baleines tueuses'. Recherche (Paris): 220: 508-510.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Kami, H. T. and Hosmer, A. J. 1982. Recent beachings of whales on Guam. Micronesica: 18: 133-135.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Killer whale, \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus) and false killer whale, \u003Ci\u003EPseudorca crassidens\u003C/i\u003E Owen, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 181-182.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Ilangakoon, A., Mahendra, W. P. and Subasinghe, H. A. K. 1993. On rare cetacean species off Sri Lanka including the Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linn.) (Delphinidae: Cetacea). Journal of the Bombay Natural History Society: 89: 363-365.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Ottley, T., Henry, C., Khan, A., Siung-Chang, A. and Sturm, M. 1988. Incidents involving whales in Trinidad waters during 1987. Living World: 1988: 47.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Dalheim, M.E., Schulman-Janiger, A., Black, N., Ternullo, R., Ellifrit, D. and Balcomb III, K.C. 2008. Eastern temperate North Pacific offshore killer whales (\u003Ci\u003EOrcinus orca\u003C/i\u003E): Occurrence, movements, and insights into feeding ecology. Marine Mammal Science: 24: 719-729.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Kuker, K. and Barrett-Lennard, L. 2010. A re-evaluation of the role of killer whales \u003Ci\u003EOrcinus orca\u003C/i\u003E in a population decline of sea otters \u003Ci\u003EEnhydra lutris\u003C/i\u003E in the Aleutian Islands and a review of alternative hypotheses. Mammal Review: 40: 103-124.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Dahlheim, M. E. and Heyning, J. E. 1999. Killer Whale \u003Ci\u003EOrcinus orca\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11693,"full_name":"Oenanthe leucopyga","author_year":"(Brehm, 1855)","common_names":[{"lang":"Danish","names":"Broget Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Witkruintapuit","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Wheatear, White-crowned Black Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet à tête blanche","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.; Sorace, A. 1996. The first White-crowned Black Wheatear \u003Ci\u003EOenanthe leucopyga\u003C/i\u003E in Turkey. Sandgrouse: 18: 68.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11694,"full_name":"Pelecanus rufescens","author_year":"Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Kleine Pelikaan","convention_language":false,"id":null},{"lang":"English","names":"Pink-backed Pelican","convention_language":true,"id":null},{"lang":"French","names":"Pélican gris","convention_language":true,"id":null},{"lang":"Spanish","names":"Pelícano rosado","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Shirihai, H., Khoury, F., Al-jbour, S. and Yosef, R. 2000. The first Pink-backed Pelican in Jordan. Sandgrouse: 22: 127-130.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Mwema, M. and Razafindrajao, F. 2006. First Pink-backed pelican \u003Ci\u003EPelecanus rufescens\u003C/i\u003E sightings in Madagascar since 1960. Bulletin of the African Bird Club: 13: 86-87.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11695,"full_name":"Acipenser nudiventris","author_year":"Lovetzky, 1828","common_names":[{"lang":"Bulgarian","names":"Ship","convention_language":false,"id":null},{"lang":"Czech","names":"Jeseter hladky","convention_language":false,"id":null},{"lang":"English","names":"Barbel Sturgeon, Fringebarbel Sturgeon, Ship, Ship Sturgeon, Thorn Sturgeon, Spiny Sturgeon, Bastard Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon à barbillons frangés, Esturgeon nu","convention_language":true,"id":null},{"lang":"German","names":"Schip, Glattdick, Dick","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viza, Szintok, Simatok","convention_language":false,"id":null},{"lang":"Polish","names":"Szypr","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-ventre-nu","convention_language":false,"id":null},{"lang":"Romanian","names":"Bogzar, Viza","convention_language":false,"id":null},{"lang":"Russian","names":"Ship","convention_language":false,"id":null},{"lang":"Serbian","names":"Sim","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión barba de flecos","convention_language":true,"id":null},{"lang":"Swedish","names":"knaggstör, glatdick, viza","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Banarescu, P. M. 1994. The present day conservation status of the freshwater fish fauna of Romania. Ocrot. nat. med. inconj.: 38: 43952.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"extinct","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Urchinov, Z.U. 1995. Fisheries in the Zarafshan river basin (Uzbekistan). In: Petr, T. (ed.) Inland fisheries under the impact of irrigated agriculture: Central Asia. URL: http://www.fao.org/docrep/V9529E/v9529E06.htm FAO Fisheries Department. Rome.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11697,"full_name":"Acrocephalus paludicola","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Vandsanger, Sarakerttunen","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Aquatic Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sarakerttunen","convention_language":false,"id":null},{"lang":"French","names":"Phragmite aquatique","convention_language":true,"id":null},{"lang":"German","names":"Seggenrohrsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Pagliarolo","convention_language":false,"id":null},{"lang":"Polish","names":"Wodniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-aquática, Flosa-aquática","convention_language":false,"id":null},{"lang":"Russian","names":"Vertlyavaya Kamyshovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricerín Cejudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vattensångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Schulze-Hagen, K. 1993. Winter quarters of the Aquatic Warbler and habitat situation: short review of recent knowledge. Unpublished.; Schulze-Hagen, K. and Wawrzyniak, H. 1993. Recent situation of the Aquatic Warbler in Germany and conservation activities. Unpublished.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.; Viksne, J. 1994. Putniem Nozīmīgás Vietas Latvijá. Latvijas Ornitologijas biedríba. Riga (Latvia).","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2003","name":"Aquatic Warbler"}]},{"id":11698,"full_name":"Acipenser persicus","author_year":"Borodin, 1897","common_names":[{"lang":"English","names":"Persian Sturgeon","convention_language":true,"id":null},{"lang":"Swedish","names":"persisk stör","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; http://www.caspianenvironment.org/biodb/eng/fishes/Acipenser%20persicus/main.htm. 2008. Caspian Environment Website. ; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kajiwara, N., Ueno, D., Monirith, I., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2003. Contamination by organochlorine compounds in sturgeons from Caspian Sea during 2001 and 2002. Marine Pollution Bulletin: 46(6): 741-747; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Artyukhin, E. N. and Zarkua, Z. G. 1986. [On the question of taxonomic status of the sturgeon in the Rioni River (the Black Sea basin).]. Voprosy Ikhtiologii: 26: 61-67.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kajiwara, N., Ueno, D., Monirith, I., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2003. Contamination by organochlorine compounds in sturgeons from Caspian Sea during 2001 and 2002. Marine Pollution Bulletin: 46(6): 741-747; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Moghim, M., Kor, D., Tavakolieshkalak, M. and Khoshghalb, M.B. 2006. Stock status of Persian Sturgeon (\u003Ci\u003EAcipenser persicus\u003C/i\u003E Borodin, 1897) along the Iranian coast of the Caspian Sea. Journal of Applied Ichthyology: 22: 99-107.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11699,"full_name":"Ciconia nigra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sort stork","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ooievaar","convention_language":false,"id":null},{"lang":"English","names":"Black Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustahaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne noire","convention_language":true,"id":null},{"lang":"German","names":"Schwarzstorch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete gólya","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna nera, Cigogna nera","convention_language":false,"id":null},{"lang":"Polish","names":"Bocian czarny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cegonha-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña negra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svart stork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Haupt, H., Lutz, K. and Boye, P (eds.) 2000. Internationale Impulse für den Schutz von Wasservögeln in Deutschland. Bundesamt für Naturschutz 2000. Münster.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Salewski, V., Bobek, M., Peske, L. and Pojer, F. 2000. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Ivory Coast. Malimbus: 22: 92-93.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Mackinnon, J. R. and Phillips, K. 2000. \u003Ci\u003EA field guide to the birds of China\u003C/i\u003E. Oxford University Press, Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Johnson, G. and Smiddy, P. 1989. Black Stork in Co. Dublin - a species new to Ireland. Irish Birds: 4: 69-70.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Tilson, R. L. and Kok, O. B. 1980. Habitat ecology of Black Storks in the Kuiseb River. Madoqua: 11: 347-349.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S. 1993. Status of storks, ibises and spoonbills in Nepal. Specialist Group on Storks, Ibises and Spoonbills Newsletter: 6: 6-8.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Ottosson, U., Hjort, C., Hall, P. Velmala, W. and Wilson, J. M. 2003. On the occurence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Nigeria. Malimbus: 25: 96-97","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Ali, Z. \u0026 Akhtar, M. 2005. Bird surveys at wetlands in Punjab, Pakistan, with special reference to the present status of white-headed duck \u003Ci\u003EOxyura leucocephala\u003C/i\u003E. Forktail 21:43-50; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lesniczak, A. B. 1989. The Black Stork, \u003Ci\u003ECiconia nigra\u003C/i\u003E, in the environs of Rybnik on the Silesian upland. Chronmy PRzyr. Ojczysta: 45: 68-70.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"brazil, M; Brazil, M. 2009. \u003Ci\u003EBirds of East Asia\u003C/i\u003E. Helm Field Guides. A\u0026C Black, London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Humphrey, S. R. and Bain, J. R. 1990. Endangered animals of Thailand. Sandhill Crane Press, Inc. Florida.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1991. On the occurrence of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in West Africa. Bulletin of the British Ornithologists' Club: 111: 209-215.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haupt, H., Lutz, K. and Boye, P (eds.) 2000. Internationale Impulse für den Schutz von Wasservögeln in Deutschland. Bundesamt für Naturschutz 2000. Münster.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C. H. and Sylla, S. I. 2004. Status of the Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. http://www.wetlands.org Wetlands International. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11700,"full_name":"Oryx dammah","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"Danish","names":"Sabel oryx","convention_language":false,"id":null},{"lang":"Dutch","names":"Algazelle","convention_language":false,"id":null},{"lang":"English","names":"White Oryx, Scimitar-horned Oryx, Sahara Oryx","convention_language":true,"id":null},{"lang":"Finnish","names":"Sapelibeisa","convention_language":false,"id":null},{"lang":"French","names":"Oryx de Libye, Oryx algazelle","convention_language":true,"id":null},{"lang":"German","names":"Säbelantilope","convention_language":false,"id":null},{"lang":"Italian","names":"Orice dalla corna a sciabola","convention_language":false,"id":null},{"lang":"Spanish","names":"Orix de Cimitarra, Orix algacel","convention_language":true,"id":null},{"lang":"Swedish","names":"sabeloryx","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"extinct","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"extinct","country_references":"Anon. 1976. Consultants meeting on addax and oryx. IUCN, Morges, Switzerland . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct,reintroduced","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"extinct","country_references":"Newby, J. 1975. The Addax and the Scimitar-horned Oryx in Niger. Report to IUCN, Morges. Unpublished . ; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"extinct","country_references":"East, R. 1988. Antelopes, global survey and regional action plans. Part 1. East and Northeast Africa. IUCN. Gland.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct,reintroduced","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Oryx","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11702,"full_name":"Cepphus grylle","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Tejst","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Zeekoet","convention_language":false,"id":null},{"lang":"English","names":"Black Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Riskilä","convention_language":false,"id":null},{"lang":"French","names":"Guillemot à miroir","convention_language":true,"id":null},{"lang":"German","names":"Gryllteiste","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete lumma","convention_language":false,"id":null},{"lang":"Italian","names":"Uria nera","convention_language":false,"id":null},{"lang":"Norwegian","names":"Teist","convention_language":false,"id":null},{"lang":"Polish","names":"Nurnik, Nurnik zwyczajny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau-d'asa-branca","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao Aliblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Tobisgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Cepphus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca grylle","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11703,"full_name":"Calidris tenuirostris","author_year":"(Horsfield, 1821)","common_names":[{"lang":"Dutch","names":"Grote Kanoet","convention_language":false,"id":null},{"lang":"English","names":"Great Knot, Eastern Knot","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau de l'Anadyr","convention_language":true,"id":null},{"lang":"Russian","names":"Bolshoy Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos grande","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.; Safford, R. J. 1992. A record of Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E from Mauritius, Indian Ocean. Bulletin of the British Ornithologists' Club: 112: 134-135.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Cohen, C. and Winter, D. 2003. Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E: a new species for sub-Saharan Africa. Bulletin of the African Bird Club: 10: 120-121.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schaftenaar, A. 1998. The first Great Knot \u003Ci\u003ECalidris tenuirostris\u003C/i\u003E in Yemen. Sandgrouse: 20: 48-49.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Totanus tenuirostris","author_year":"Horsfield, 1821"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11704,"full_name":"Huso huso","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Bli turishkurter, Bli turishkurte","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Moruna","convention_language":false,"id":null},{"lang":"Czech","names":"Vyza, Vyza velka","convention_language":false,"id":null},{"lang":"Danish","names":"Hasblas","convention_language":false,"id":null},{"lang":"Dutch","names":"Visgelatine","convention_language":false,"id":null},{"lang":"English","names":"Great Sturgeon, Giant Sturgeon, Russian Sturgeon, European Sturgeon, Beluga","convention_language":true,"id":null},{"lang":"Finnish","names":"Beluga, Kitasampi","convention_language":false,"id":null},{"lang":"French","names":"Beluga, Grand esturgeon, Ichtyocolle","convention_language":true,"id":null},{"lang":"German","names":"Husso, Hausenblase, Europäischer Hausen, Hausen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viza","convention_language":false,"id":null},{"lang":"Icelandic","names":"Mjaldur, Sundmaga hlaup","convention_language":false,"id":null},{"lang":"Italian","names":"Storione ladando, Colla di pesce","convention_language":false,"id":null},{"lang":"Japanese","names":"Gyoko, Kyabia","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Akipíssios, Mocuna","convention_language":false,"id":null},{"lang":"Norwegian","names":"Belugastør, Husblas","convention_language":false,"id":null},{"lang":"Polish","names":"Bieluga z. wyz, Wiz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjâo do Cáspio, Cola de peixe, Esturjão-beluga","convention_language":false,"id":null},{"lang":"Romanian","names":"Morun, Viza","convention_language":false,"id":null},{"lang":"Russian","names":"Kyrpy, Beluga","convention_language":false,"id":null},{"lang":"Serbian","names":"Moruna","convention_language":false,"id":null},{"lang":"Slovenian","names":"Beluga","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión beluga, Cola de pescado, Esturión, Beluga","convention_language":true,"id":null},{"lang":"Swedish","names":"Belugastör, viza, husstör, beluga, Husbloss, husblosstör","convention_language":false,"id":null},{"lang":"Turkish","names":"Mersinmorinasi, Mersinmorinasi baligi, Mersin morinasi","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Jivkov, M., Paykova, G., Miloshev, G., Vassilev, M. and Usanova, E. 2003. Action plan on the conservation of sturgeons in the Bulgarian aquatories of the Danube River and the Black Sea. Institute of Zoology, Bulgarian Academy of Sciences. Sofia. 25; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct,distribution uncertain","country_references":"Lusk, S. 1996. The status of the fish fauna of the Czech Republic. In: Conservation of Endangered Freshwater Fish in Europe. Basel: Birkhäuser Verlag.; Lusk, S. Hanel, L. and Lusková, V. 2004. Red List of the ichthyofauna of the Czech Republic: Development and present status. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 215–226.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Guchmanidze, A. 2009. Current and historical status of sturgeon (Acipenseridae, Osteichthyes) in Georgia. In: Zazanashvili, N. \u0026 Mallon, D. (Eds.) Status and protection of globally threatened species in the Caucasus. Tbilisi.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct (?)","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.; Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Chebanov, M., Rosenthal, H., Wulfstorf, N., Gessner, G. J., Van Anrooy, R., Doukakis, P., Pourkazemi, M., Rasht, I. and Williot, P. 2011. Technical guidelines on sturgeon hatchery practices and hatchery management for release. Fourth inter-governmental meeting on the establishment of the Central Asian and Caucasus Regional Fisheries and Aquaculture Commission . Issyk Kul, Kyrgyzstan. ; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Guti, G. 2006. Past and present status of sturgeons in Hungary. Austrian Committee Danube Research/IAD. Vienna. 143-147; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Khodorevskaya, R.P., Dovgopol, G.F., Zhuravleva, O.L. and Vlasenko, A.D. 1997. Present status of commercial stocks of sturgeons in the Caspian Sea basin. Environmental Biology of Fishes: 48: 209-220.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Agusa, T., Kunito, T., Tanabe, S., Pourkazemi, M. and Aubrey, D.G. 2004. Concentrations of trace elements in muscle of sturgeons in the Caspian Sea. Marine Pollution Bulletin: 49: 789-800.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Scherbak, M.M et al. 1994. [Red Data Book of Ukraine.]. M. P. Bazhana \"Ukrainska encyclopedia\". Kiev.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Huso","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11705,"full_name":"Chloephaga picta","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Upland Goose, Magellan Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette de Magellan","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén común","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"extinct,introduced","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas picta","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11706,"full_name":"Eptesicus serotinus","author_year":"Schreber, 1774","common_names":[{"lang":"Albanian","names":"Lakuriqnate serotine","convention_language":false,"id":null},{"lang":"Danish","names":"Sydflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Laatvlieger","convention_language":false,"id":null},{"lang":"English","names":"Serotine, Common Serotine","convention_language":true,"id":null},{"lang":"Estonian","names":"Hilis-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Etelänlepakko","convention_language":false,"id":null},{"lang":"French","names":"Sérotine commune","convention_language":true,"id":null},{"lang":"German","names":"Breitflügelfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges késeidenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Síðblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Serotino comune","convention_language":false,"id":null},{"lang":"Maltese","names":"Serotin","convention_language":false,"id":null},{"lang":"Norwegian","names":"Sørflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-hortelão","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-cu-aripi-late","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier pozdný","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de huerta","convention_language":true,"id":null},{"lang":"Swedish","names":"Sydfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Duckworth, J. W., Salter, R. E. and Khounboline, K (comps.) 1999. Wildlife in Lao PDR, 1999 status report . IUCN, WCS, CPAWM. Vientiane.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Robinson, M. F., Smith, A. L. and Bumrungsri, S. 1995. Small mammals of Thung Yai Naresuan and Huai Kha Khaeng Wildlife Sanctuaries in western Thailand. Natural History Bulletin of the Siam Society: 43: 27-54.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Volozheninov, N. N. 1978. [On the ethology of \u003Ci\u003EVespertilio serotinus\u003C/i\u003E.]. Uzbekskii biol. Zh.: 1978: 53-55.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eptesicus sodalis","author_year":"Barrett-Hamilton, 1910"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11707,"full_name":"Thalasseus bergii","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"Dutch","names":"Grote Kuifstern","convention_language":false,"id":null},{"lang":"English","names":"Great Crested-Tern, Greater Crested tern, Crested Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne huppée","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán piquigualdo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Castill, P. 1998. The first breeding record of Swift Tern Sterna bergii in Egypt. Sandgrouse: 20: 49-51.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; McLellan-Davidson, M.E. 1934. The Templeton Crocker expedition to Western Polynesian and Melanesian islands, 1933. Proceedings of the California academy of sciences: 21(16): 189-198.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna bergii","author_year":"Lichtenstein, 1823"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"African and Southwest Asian populations. Formerly listed as \u003Ci\u003ESterna bergii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11708,"full_name":"Myotis alcathoe","author_year":"von Helversen \u0026 Heller, 2001","common_names":[{"lang":"English","names":"Alcathoe's Myotis","convention_language":true,"id":null}],"distributions":[{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"von Helversen, O., Heller, K.-G., Mager, F., Nemeth, A., Volleth, M. and Gombkoto, P. 2001. Cryptic mammalian species: a new species of whiskered bat (\u003Ci\u003EMyotis alcathoe\u003C/i\u003E n. sp.) in Europe. Naturwissenschaften: 88: 217-223.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Agirre-Mendi, P. T., García-Mudarra, J. L., Juste, J. and Ibàñez, C. 2004. Presence of \u003Ci\u003EMyotis alcathoe\u003C/i\u003E Helversen \u0026 Heller, 2001 (Chiroptera, Vespertilionidae) in the Iberian Peninsula. Acta Chiropterologica: 6: 49-57","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"23/11/2003","name":"EUROBATS"}]},{"id":11709,"full_name":"Anastomus lamelligerus","author_year":"Temminck, 1823","common_names":[{"lang":"English","names":"African Openbill","convention_language":true,"id":null},{"lang":"French","names":"Bec-ouvert africain","convention_language":true,"id":null},{"lang":"Spanish","names":"Picotenaza Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Anastomus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11710,"full_name":"Larus fuscus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Sildemåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Mantelmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Lesser Black-backed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Selkälokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland brun","convention_language":true,"id":null},{"lang":"German","names":"Heringsmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Heringsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Zafferano","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-d'asa-escura","convention_language":false,"id":null},{"lang":"Russian","names":"Klusha","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Sombría","convention_language":true,"id":null},{"lang":"Swedish","names":"Silltrut","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Smith, P. W. and Smith, S. A. 2000. Recent sight reports of Lesser Black-backed Gulls (\u003Ci\u003ELarus fuscus\u003C/i\u003E) from Cuba. El Pitirre: 13: 43-44.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S. C., Rivas, F. and Brown, C. 1998. A Lesser Black-backed Gull (\u003Ci\u003ELarus fuscus\u003C/i\u003E) in the Dominican Republic. El Pitirre: 11: 17.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Fairbank, R. J. 2002. Ring-billed \u003Ci\u003ELarus delawarensis\u003C/i\u003E and Lesser Black-backed Gulls \u003Ci\u003EL. fuscus\u003C/i\u003E in Venezuela. Cotinga: 17: 78.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus heuglini","author_year":"Bree, 1876"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11711,"full_name":"Sylvia melanocephala","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Sorthoved Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Sardinian Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Samettipääkerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette mélanocéphale","convention_language":true,"id":null},{"lang":"German","names":"Samtkopfgrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kucsmás poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Occhiocotto","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka aksamitna, Pokrzewka aksamintna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra-de-cabeça-preta, Toutinegra- de-cabeça-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Cabecinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Sammetshätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Smiddy, P. and O'Sullivan, O. 1994. Forty-first Irish Bird Report, 1993. Irish Birds: 5: 209-230.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Blad, A. 2002. [First record of the Sardinian Warbler \u003Ci\u003ESylvia melanocephala\u003C/i\u003E in Poland.]. Notatki Ornitologiczne: 43: 49-50.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11712,"full_name":"Pangasianodon gigas","author_year":"Chevey, 1931","common_names":[{"lang":"Danish","names":"Kæmpemalle","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenmeerval","convention_language":false,"id":null},{"lang":"English","names":"Giant Catfish","convention_language":true,"id":null},{"lang":"Finnish","names":"Isopiikkievämonni","convention_language":false,"id":null},{"lang":"French","names":"Silure De Verre Géant","convention_language":true,"id":null},{"lang":"German","names":"Riesenwels","convention_language":false,"id":null},{"lang":"Italian","names":"Siluro gigante","convention_language":false,"id":null},{"lang":"Spanish","names":"Siluro Gigante","convention_language":true,"id":null},{"lang":"Swedish","names":"mekongjättemal, indonesisk jättemal","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"D'Aubenton, F. 1963. Rapport sur le fonctionnement d'un barrage mobile sur le Tonlé-Sap. République Française. Ministère des Affaires Etrangères. Mission Francaise d'Aide Economique et Technique au Cambodge. Muséum National d'Histoire Naturelle . ; Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210; Kottelat, M. 1985. Fresh-water fishes of Kampuchea. A provisory annotated check-list. Hydrobiologia: 121: 249-279.; Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210; Sidthimunka, A. 1970. A report on the fisheries surveys of the Mekong River in the vicinity of the Pa Mong Dam site. Department of Fisheries, Thailand Technical Paper: 8: 75 pp.; Suvatti, C. and Menasveta, D. 1968. Threatened species of Thailand's aquatic fauna and preservation problems. In: Talbot, L. M. and Talbot, M. H. (eds.) Conservation in tropical South east Asia. IUCN Publication. New Series 10.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Hogan, Z. S. 2004. Threatened fishes of the world: \u003Ci\u003EPangasianodon gigas\u003C/i\u003E Chevey, 1931 (Pangasiidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 70: 210","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Siluriformes","class_name":"Actinopterygii","family_name":"Pangasiidae","genus_name":"Pangasianodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11713,"full_name":"Oenanthe xanthoprymna","author_year":"(Hemprich \u0026 Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Rødhalet Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodstaarttapuit","convention_language":false,"id":null},{"lang":"English","names":"Rufous-tailed Wheatear, Red-tailed Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Pinaperätasku, Punaperätasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet à queue rousse","convention_language":true,"id":null},{"lang":"German","names":"Rostbürzel-Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösarkú hantmadár, Vörösfarkú hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella codarossa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-de-dorso-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Colirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Persisk stenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11714,"full_name":"Phalaropus lobatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Lyskonoh úzkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Odinshane","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Red-necked Phalarope, Northern Phalarope","convention_language":true,"id":null},{"lang":"Finnish","names":"Vesipääsky","convention_language":false,"id":null},{"lang":"French","names":"Phalarope à bec étroit","convention_language":true,"id":null},{"lang":"German","names":"Odinshühnchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vékonycsõrû víztaposó","convention_language":false,"id":null},{"lang":"Italian","names":"Falaropo becco sottile, Falaropo beccosottile","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falaropo-de-bico-fino","convention_language":false,"id":null},{"lang":"Spanish","names":"Falaropo picofino","convention_language":true,"id":null},{"lang":"Swedish","names":"Smalnäbbad simsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dod, A. 1996. Primer reporte para \u003Ci\u003EPhalaropus lobatus\u003C/i\u003E en la República Dominicana. El Pitirre: 9: 6.; Rivas, F. M. 1997. Resumen de aves consideras como raras o accidentales para La República Dominicana. El Pitirre: 10: 58.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Phalaropus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Lobipes lobatus","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa lobata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11716,"full_name":"Rallus aquaticus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Vandrikse","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterral","convention_language":false,"id":null},{"lang":"English","names":"Western Water Rail, Water Rail","convention_language":true,"id":null},{"lang":"Finnish","names":"Luhtakana","convention_language":false,"id":null},{"lang":"French","names":"Râle d'eau","convention_language":true,"id":null},{"lang":"German","names":"Wasserralle","convention_language":false,"id":null},{"lang":"Hungarian","names":"Guvat","convention_language":false,"id":null},{"lang":"Italian","names":"Porciglione","convention_language":false,"id":null},{"lang":"Norwegian","names":"Vannrikse","convention_language":false,"id":null},{"lang":"Polish","names":"Wodnik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Frango-d'água","convention_language":false,"id":null},{"lang":"Russian","names":"Pastushok","convention_language":false,"id":null},{"lang":"Spanish","names":"Rascón Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vattenrall","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Rallus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11717,"full_name":"Acrocephalus orientalis","author_year":"(Temminck \u0026 Schlegel, 1847)","common_names":[{"lang":"English","names":"Oriental Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle d'Orient","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11718,"full_name":"Otomops martiensseni","author_year":"(Matschie, 1897)","common_names":[{"lang":"English","names":"Martienssen's Free-tailed Bat, Large-eared Free-tailed Bat","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Hill, J. E. 1983. Further records of bats from the Central African Republic (Mammalia: Chiroptera). Annals of the Carnegie Museum: 52: 55-58.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Verschuren, J. 1957. Ecologie, biologie et systematique des cheiroptères. Exploration du Parc National de la Garamba, Mission H. de Saeger (1949-1952): Fascicule 7.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Largen, M. J., Kock, D. and Yalden, D. W. 1974. Catalogue of the mammals of Ethiopia. I. Chiroptera. Monitore Zoologica Italiano: 5: 221-298.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Dowsett, R. J. and Hunter, N. D. 1980. Birds and mammals of Mangochi Mountain. Nyala: 6: 5-118.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 1999. First record of \u003Ci\u003EOtomops martiensseni\u003C/i\u003E (Matschie 1897) for the Republic of Yemen (Mammalia, Chiroptera, Molossidae). Senckenbergiana Biologica: 78: 241-245.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Otomops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Only African populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11719,"full_name":"Natator depressus","author_year":"(Garman, 1880)","common_names":[{"lang":"English","names":"Flatback turtle","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blamires, S. J. and Guinea, M. L. 2003. Emergence success of Flatback Sea Turtles (\u003Ci\u003ENatator depressus\u003C/i\u003E) at Fog Bay, Northern Territory, Australia. Chelonian Conservation and Biology: 4(3): 548-556; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Koch, A.U., Guinea, M.L. and Whiting, S.D. 2008. Asynchronous emergence of flatback seaturtules, \u003Ci\u003ENatator depressus\u003C/i\u003E, from a beach hatchery in northern Australia. Journal of Herpetology: 42: 1-8.; Sutherland, R. W. and Sutherland, E. G. 2003. Status of the Flatback Sea Turtle (\u003Ci\u003ENatator depressus\u003C/i\u003E) Rookery on Crab Island, Australia, with notes on predation by crocodiles. Chelonian Conservation and Biology: 4(3): 612-619","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Natator","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"}]},{"id":11720,"full_name":"Muscicapa dauurica","author_year":"Pallas, 1811","common_names":[{"lang":"Danish","names":"Brun Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruine Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Asian Brown Flycatcher, Brown Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche brun","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögonflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Muscicapa latirostris","author_year":"Raffles, 1822"},{"full_name":"Muscicapa williamsoni","author_year":"Deignan, 1957"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11721,"full_name":"Acrocephalus tangorum","author_year":"La Touche, 1912","common_names":[{"lang":"English","names":"Manchurian Reed-warbler, White-browed Reed-warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle mandchoue","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. and Lewthwaite, R. W. 1996. Manchurian Reed Warbler: the first records for Hong Kong. Hong Kong Bird Report 1996 : 119-122.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11722,"full_name":"Vanellus spinosus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sporevibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Sporenkievit","convention_language":false,"id":null},{"lang":"English","names":"Spur-winged Plover, Spur-winged Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à éperons","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría espinosa","convention_language":true,"id":null},{"lang":"Swedish","names":"sporrvipa","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Robinson, S., van Daele, P. and van de Woestijne, C. 2001. New to Zambia: Spur-winged Plover \u003Ci\u003EVanellus spinosus\u003C/i\u003E. Zambia Bird Report: 1999: 69-72.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius spinosus","author_year":"Linnaeus, 1758"},{"full_name":"Hoplopterus spinosus","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11723,"full_name":"Gallinago megala","author_year":"Swinhoe, 1861","common_names":[{"lang":"Dutch","names":"Siberische Snip","convention_language":false,"id":null},{"lang":"English","names":"Swinhoe's Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine de Swinhoe","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza del Baikal","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1999. Fifty species new to Israel, 1979-1998: their discovery and documentation, with tips on identification. Sandgrouse: 21: 45-105.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella megala","author_year":"(Swinhoe, 1861)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11726,"full_name":"Alle alle","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun malý","convention_language":false,"id":null},{"lang":"Danish","names":"Søkonge","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Alk","convention_language":false,"id":null},{"lang":"English","names":"Dovekie, Little Auk","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuruokki","convention_language":false,"id":null},{"lang":"French","names":"Mergule nain","convention_language":true,"id":null},{"lang":"German","names":"Krabbentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alkabukó","convention_language":false,"id":null},{"lang":"Italian","names":"Gazza marina minore","convention_language":false,"id":null},{"lang":"Polish","names":"Alczyk, Alczyk (traczyk)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Torda-aña","convention_language":false,"id":null},{"lang":"Russian","names":"Lyurik","convention_language":false,"id":null},{"lang":"Spanish","names":"Mérgulo Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Alkekung","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Alle","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca alle","author_year":"Linnaeus, 1758"},{"full_name":"Plautus alle","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11727,"full_name":"Aythya ferina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Polák velký","convention_language":false,"id":null},{"lang":"Danish","names":"Taffeland","convention_language":false,"id":null},{"lang":"Dutch","names":"Tafeleend","convention_language":false,"id":null},{"lang":"English","names":"Pochard, Common Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Punasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule milouin","convention_language":true,"id":null},{"lang":"German","names":"Tafelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barátréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moriglione","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-comum, Zarro-comun","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Brunand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas ferina","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11728,"full_name":"Gavia stellata","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Czech","names":"Potáplice malá","convention_language":false,"id":null},{"lang":"Danish","names":"Rødstrubet lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodkeelduiker","convention_language":false,"id":null},{"lang":"English","names":"Red-throated Loon, Red-throated Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Kaakkuri, Kaalkkuri","convention_language":false,"id":null},{"lang":"French","names":"Plongeon catmarin","convention_language":true,"id":null},{"lang":"German","names":"Sterntaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Északi búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Smålom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur rdzawoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo Chico, Colímbo chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Smålom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus stellatus","author_year":"Pontoppidan, 1763"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11729,"full_name":"Balaenoptera physalus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Gewone Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Herring Whale, Finner, Common Rorqual, Razorback, Fin-backed Whale, Finback, Fin Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine à nageoires, Baleinoptère commun, Baleine fin, Rorqual commun","convention_language":true,"id":null},{"lang":"German","names":"Finnwal","convention_language":false,"id":null},{"lang":"Norwegian","names":"Finnhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Rorcual común, Ballena boba, Ballena aleta","convention_language":true,"id":null},{"lang":"Swedish","names":"sillval","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Amon Kothias, J.-B. and N'Goran, N. Y. 1991. Note sur les baleines echouées en estuaires artificiels en Côte d'Ivoire. Journal Ivoirien d'Oceanologie et de Limnologie: 1: 153-155.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Grubh, B. R. and Pereira, M. J. 1965. Strandings of Finner Whale (\u003Ci\u003EBalaenoptera physalus\u003C/i\u003E Linn.) near Virar (Thana District) and at Bombay, Maharashtra State. Journal of the Bombay Natural History Society: 62: 550-551.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.; Dammerman, K. W. 1938. \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E, een voor Indie nieuwe walvischsoort gestrand op Noesa Kambangan. De Tropische Natur: 27: 48-49.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Spanier, E. 1981. Whales on Israel's coasts? Israel Land \u0026 Nature: 7: 32-33.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. and Mangano, A. 1983. Presence and distribution of \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L.) and \u003Ci\u003EBalaenoptera\u003C/i\u003E spp. in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 185-187.; Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mizroch, S.A., Rice, D.W., Zwiefelhofer, D., Waite, J. and Perryman, W.L. 2009. Distribution and movements of fin whales in the North Pacific Ocean. Mammal Review: 39: 193-227.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Anon. 2004. Blue Ventures Conservation Andavadoaka, Madagascar Research update, March 2004. http://www.blueventures.org/BVUpdate0304.pdf . ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1978. Red data book: Mammalia. IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Husson, A. M. 1978. The mammals of Surinam. E. J. Brill. Leiden.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.) 1993. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. Smithsonian Institution Press. Washington and London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.; Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Notarbartolo-di-Sciara, G., Zanardelli, M., Jahoda, M., Panigada, S. and Airoldi, S. 2003. The fin whale \u003Ci\u003EBalaenoptera physalus\u003C/i\u003E (L. 1758) in the Mediterranean Sea. Mammal Review: 33: 105-150.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Mizroch, S.A., Rice, D.W., Zwiefelhofer, D., Waite, J. and Perryman, W.L. 2009. Distribution and movements of fin whales in the North Pacific Ocean. Mammal Review: 39: 193-227.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11732,"full_name":"Glareola nordmanni","author_year":"Fischer, 1842","common_names":[{"lang":"Danish","names":"Sortvinget Braksvale","convention_language":false,"id":null},{"lang":"Dutch","names":"Steppenvorkstaartplevier, Steppevorkstaartplevier","convention_language":false,"id":null},{"lang":"English","names":"Black-winged Pratincole","convention_language":true,"id":null},{"lang":"Finnish","names":"Aropääskykahlaaja","convention_language":false,"id":null},{"lang":"French","names":"Glaréole à ailes noires","convention_language":true,"id":null},{"lang":"German","names":"Schwarzflügel-Brachschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketeszárnyú székicsér","convention_language":false,"id":null},{"lang":"Italian","names":"Pernice di mare orientale","convention_language":false,"id":null},{"lang":"Polish","names":"Wirowiec stepowy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perdoz-do-mar-d'asa-preta, Perdiz-do-mar-d'asa-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Canastera Alinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartvingad vadarsvala","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11734,"full_name":"Anas erythrorhyncha","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Red-billed Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade piquirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11735,"full_name":"Charadrius pecuarius","author_year":"Temminck, 1823","common_names":[{"lang":"Danish","names":"Kittlitz Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Herdersplevier","convention_language":false,"id":null},{"lang":"English","names":"Kittlitz's Sandplover, Kittlitz's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier pâtre","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo pecuario","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11736,"full_name":"Platalea minor","author_year":"Temminck \u0026 Schlegel, 1849","common_names":[{"lang":"English","names":"Black-faced Spoonbill","convention_language":true,"id":null},{"lang":"French","names":"Petite Spatule","convention_language":true,"id":null},{"lang":"German","names":"Schwarzgesichtlöffler","convention_language":false,"id":null},{"lang":"Spanish","names":"Espátula menor","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; La Touche, J. D. D. 1925. A handbook of the birds of eastern China, 1. Taylor and Francis. London.; La Touche, J. D. D. 1934. A handbook of the birds of eastern China, 2. Taylor and Francis. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11737,"full_name":"Taphozous nudiventris","author_year":"Cretzschmar, 1830","common_names":[{"lang":"English","names":"Naked-rumped Tomb Bat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Koch-Weser, S. 1984. Fledermäuse aus Obervolta, W-Afrika. Senckenbergiana Biologica: 64: 255-311.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Azzaroli Puccetti, M. L. and Zava, B. 1988. Nouvelles données sur les chiroptères des iles du Cap-Vert. Mus. Reg. Sci. Nat. Boll. (Turin): 6: 603-615.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Vielliard, J. 1974. Les cheiroptères du Tchad. Revue Suisse de Zoologie: 81: 975-991.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Verschuren, J. 1957. Ecologie, biologie et systematique des cheiroptères. Exploration du Parc National de la Garamba, Mission H. de Saeger (1949-1952): Fascicule 7.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Advani, R. 1982. Species composition, relative abundance and associationship of Chiroptera fauna with different rainfall zones in the Indian desert. Zool. Anz.: 208: 276-282.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chandrashekaran, M. K. 2003. Chronobiology, ecology and beaviour of some insectivorous bats of southern India. Journal of the Bombay Natural History Society: 100: 250-283.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Darweesh, N., Al-Melhim, W. N., Disi. A. M. and Amr, Z. S. 1997. First record of the naked-bellied tomb bat, \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E Crtezschmar, 1830, from Jordan. Zoology in the Middle East: 15: 13-14.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Aulagnier, S. and Denys, C. 2000. Presence du taphien à ventre nu, \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E, (Chiroptera, Emballonuridae) au Maroc. Mammalia: 64: 116-118.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dorst, J. 1982. Découverte de \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E dans l'Air (chiroptères). Mammalia: 46: 407-408.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Robbins, C. B. 1980. Small mammals of Togo and Benin. 1. Chiroptera. Mammalia: 44: 83-88.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Sachanowicz, K., Bogdanowicz, W. and Michalak, S. 1999. First record of \u003Ci\u003ETaphozous nudiventris\u003C/i\u003E Cretzschmar, 1830 (Chiroptera, Emballonuridae) in Turkey. Mammalia: 63: 105-107.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Emballonuridae","genus_name":"Taphozous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Taphozous kachhensis","author_year":"Dobson, 1872"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":11738,"full_name":"Hyperoodon ampullatus","author_year":"(Forster, 1770)","common_names":[{"lang":"English","names":"Bottlehead, Northern Bottlenose Whale","convention_language":true,"id":null},{"lang":"French","names":"Hyperoodon boréal","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena hocico de botella del norte","convention_language":true,"id":null},{"lang":"Swedish","names":"nordlig näbbval, vanlig näbbval, dögling","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Silva, M.A., Prieto, R., Magalhães, S., Cabecinhas, R., Cruz, A., Gonçalves, J.M. and Santos, R.S. 2003. Occurrence and distribution of cetaceans in the waters around the Azores (Portugal), summer and autumn 1999-2000: 29(1): 77–83.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Hyperoodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11739,"full_name":"Aythya americana","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Redhead","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à tête rouge","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón Americano","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Jones, H. L. 2005. Central America. North American Birds: 59: 162-165.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Milne, P. 2005. Fifty-first Irish Bird Report 2003. Irish Birds: 7: 549-574.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula americana","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11741,"full_name":"Charadrius montanus","author_year":"Townsend, 1837","common_names":[{"lang":"English","names":"Mountain Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier montagnard","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito llanero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"extinct","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Desmond, M. J. and Ramirez, F. C. 2002. Nest documentation confirms the presence of a breeding population of Mountain Plover \u003Ci\u003ECharadrius montanus\u003C/i\u003E in north-east Mexico. Cotinga: 17: 17-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eupoda montana","author_year":"(J. K. Townsend, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11742,"full_name":"Calidris acuminata","author_year":"(Horsfield, 1821)","common_names":[{"lang":"Danish","names":"Spidshalet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Sharp-tailed Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à queue pointue","convention_language":true,"id":null},{"lang":"Russian","names":"Ostrokhvosty Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos acuminado","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Patient, R. 2003. The first Sharp-tailed Sandpiper \u003Ci\u003ECalidris acuminata\u003C/i\u003E for Madagascar. Bulletin of the African Bird Club: 10: 50-51.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia acuminata","author_year":"(Horsfield, 1821)"},{"full_name":"Totanus acuminatus","author_year":"Horsfield, 1821"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11744,"full_name":"Trichechus inunguis","author_year":"(Natterer, 1883)","common_names":[{"lang":"Dutch","names":"Amazone Lamantijn","convention_language":false,"id":null},{"lang":"English","names":"South American Manatee, Amazonian Manatee","convention_language":true,"id":null},{"lang":"French","names":"Lamantin de l'Amazone, Lamantin d'Amérique du sud","convention_language":true,"id":null},{"lang":"German","names":"Amazonas-Seekuh","convention_language":false,"id":null},{"lang":"Spanish","names":"Lamantino amazónico, Vaca marina amazónica, Manatí amazónico","convention_language":true,"id":null},{"lang":"Swedish","names":"sydamerikansk manat, amazonmanat","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Domning, D. P. 1982. Commercial exploitation of manatees \u003Ci\u003ETrichechus\u003C/i\u003E in Brazil c. 1785-1973. Biological Conservation: 22: 101-126.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Noriega Murrieta, J. and Godfrey Ruiz, C. 2006. Conservation of aquatic biodiversity in Pacaya-Samiria National Reserve, Peru. ProNaturaleza. Lima, Peru. 8; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sirenia","class_name":"Mammalia","family_name":"Trichechidae","genus_name":"Trichechus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11745,"full_name":"Arctocephalus australis","author_year":"(Zimmermann, 1783)","common_names":[{"lang":"Dutch","names":"Zuidamerikaanse Pelsrob","convention_language":false,"id":null},{"lang":"English","names":"South American Fur Seal, Southern Fur Seal","convention_language":true,"id":null},{"lang":"French","names":"Otarie à fourrure australe","convention_language":true,"id":null},{"lang":"German","names":"Südamerikanische Pelzrobbe","convention_language":false,"id":null},{"lang":"Spanish","names":"Lobo fino sudamericano, Oso marino austral","convention_language":true,"id":null},{"lang":"Swedish","names":"sydamerikansk pälssäl, sydlig pälssäl, sydlig sjöbjörn","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Cabrera, A. 1957. Catalogo de los mamiferos de America del sur, vol. I, Metatheria, Unguiculata, Carnivora. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Ciencias Zoologicas: 4: 1-307.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Cunha Vieira, C. da. 1955. Lista remissiva dos mamiferos do Brasil. Arquivos de Zoologia do Estado de Sao Paulo: 8: 341-464.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Cabrera, A. 1957. Catalogo de los mamiferos de America del sur, vol. I, Metatheria, Unguiculata, Carnivora. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Ciencias Zoologicas: 4: 1-307.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Augusto Tovar, S. 1971. Catalogo de mamiferos peruanos. Anales Cientificos, Lima, Peru: 9: 18-37.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Otariidae","genus_name":"Arctocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11747,"full_name":"Acrocephalus arundinaceus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Rákosník velký","convention_language":false,"id":null},{"lang":"Danish","names":"Drosselrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Karekiet","convention_language":false,"id":null},{"lang":"English","names":"Great Reed Warbler, Great Reed-Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rastaskerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle turdoïde","convention_language":true,"id":null},{"lang":"German","names":"Drosselrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nádirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Cannareccione","convention_language":false,"id":null},{"lang":"Polish","names":"Trzciniak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-grande-dos-caniços","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Tordal","convention_language":true,"id":null},{"lang":"Swedish","names":"Trastsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Kainady, P. V. G. 1976. First positive breeding record of \u003Ci\u003EAcrocephalus arundinaceus\u003C/i\u003E Eurasian Great Reed Warbler for Iraq. Bull. Basrah Nat. Hist. Mus.: 3: 101-105.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11748,"full_name":"Coragyps atratus","author_year":"(Bechstein, 1783)","common_names":[{"lang":"English","names":"Black Vulture, American Black Vulture","convention_language":true,"id":null},{"lang":"French","names":"Urubu noir, Vautour urubu","convention_language":true,"id":null},{"lang":"Spanish","names":"Zopilote negro, Buitre negro americano","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Coragyps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11750,"full_name":"Otis tarda","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Drop velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stortrappe","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote trap","convention_language":false,"id":null},{"lang":"English","names":"Great Bustard","convention_language":true,"id":null},{"lang":"Finnish","names":"Isotrappi","convention_language":false,"id":null},{"lang":"French","names":"Grande Outarde, Outarde barbue","convention_language":true,"id":null},{"lang":"German","names":"Großtrappe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Túzok","convention_language":false,"id":null},{"lang":"Italian","names":"Otarda, Otarda comune","convention_language":false,"id":null},{"lang":"Polish","names":"Drop","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abetarda-comum, Abetarda","convention_language":false,"id":null},{"lang":"Russian","names":"Drofa","convention_language":false,"id":null},{"lang":"Spanish","names":"Avutarda euroasiática, Avutarda común, Avutarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Stortrapp","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct,distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"extinct,distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dornbusch, M. 1983. Status, ecology and conservation of Great Bustard in the German Democratic Republic. In Goriup, P. D. and Vardhan, H. (eds) Bustards in decline. Tourism and Wildlife Society of India. Jaipur.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Farago, S. 1993. Development of the Great Bustard population in Hungary in the period 1981-1990. Folia Zoologica: 42: 221-236.; Farago, S., Ena, V. and Martinez, A. 1987. Comparison of the state of Great Bustard stocks in Hungary and Spain. In: Farago, S. (ed.) The Great Bustard (Otis tarda L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 51-63; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.; Tareh, H. A. 2000. The status of Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Iran. Sandgrouse: 22: 55-60.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Alonso, J. C., Lane, S. J., Dawson, R. and Idaghdour, Y. 2000. Great bustards \u003Ci\u003EOtis tarda\u003C/i\u003E in Morocco: status in spring 1999 and evidence of a decline in recent decades. Oryx: 34: 141-146.; Alonso, J. C., Palacin, C., Martin, C. A., Mouati, N., Arhzaf, Z. L. and Azizi, D. 2005. The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Morocco: a re-evaluation of its status based on recent survey results. Ardeola: 52: 79-90.; Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Bereszynski, A. and Kaczmarkowski, M. 1983. Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.) in Poland. Pp. 118-120 In: Goriup, P. D. and Vardhan, H. (eds.) Bustards in decline. Tourism and Wildlife Society of India. Jaipur.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Alonso, J. C., Palacín, C. and Martín, C. A. 2003. Status and recent trends of the great bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) population in the Iberian peninsula. Biol. Conserv.: 110: 185-195.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bugalho, F. F. 1987. Great Bustard in Portugal. Pp. 65-76 In: Farago, S. (ed.) The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kohalmy, T. 1987. Data on the condition of the eastern subspecies of Great Bustard (\u003Ci\u003EOtis tarda dybowskii\u003C/i\u003E Tacz. 1874). In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. ; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Alonso, J. C., Martin, C. A., Palacin, C., Martin, B. and Magana, M. 2005. The Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E in Andalusia, southern Spain: status, distribution and trends. Ardeola: 52: 67-78.; Alonso, J. C., Palacín, C. and Martín, C. A. 2003. Status and recent trends of the great bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) population in the Iberian peninsula. Biol. Conserv.: 110: 185-195.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Farago, S., Ena, V. and Martinez, A. 1987. Comparison of the state of Great Bustard stocks in Hungary and Spain. In: Farago, S. (ed.) The Great Bustard (Otis tarda L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 51-63; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Otero, C. 1987. The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E) in Spain. In: Farago, S. (ed.) The Great Bustard (\u003Ci\u003EOtis tarda\u003C/i\u003E L.). Proceedings of the symposium in Budapest on June 2nd 1987. International Council for Game and Wildlife Conservation. Budapest. 43-50","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goriup, P. D. and Parr, D. F. 1985. Results of the ICBP bustard survey of Turkey, 1981. Bustard Studies: 2: 77-98.; Kasparek, M. 1989. Status and distribution of the Great Bustard and the Little Bustard in Turkey. Bustard Studies: 4: 80-113.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Andryushchenko, Y. 2002. Current state of the Great Bustard \u003Ci\u003EOtis tarda\u003C/i\u003E wintering population in south Ukraine. Sandgrouse: 24: 109-116.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain,extinct","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Otis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":false,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Middle-European population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2001","name":"Middle European Great Bustard"}]},{"id":11751,"full_name":"Acipenser fulvescens","author_year":"Rafinesque, 1817","common_names":[{"lang":"English","names":"Lake Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Järvisampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon jaune","convention_language":true,"id":null},{"lang":"Polish","names":"Jesiotr jeziorny","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión lacustre","convention_language":true,"id":null},{"lang":"Swedish","names":"insjöstör, Amerikansk stör","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Birstein, V., Waldman, J. R. and Bernis, W. E (eds.) 1997. Sturgeon biodiversity and conservation. Kluwer Academic Publishers. Dordrecht.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Houston, J. J. 1987. Status of the Lake Sturgeon, \u003Ci\u003EAcipenser fulvescens\u003C/i\u003E, in Canada. Canadian Field Naturalist: 101: 171-185.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Birstein, V., Waldman, J. R. and Bernis, W. E (eds.) 1997. Sturgeon biodiversity and conservation. Kluwer Academic Publishers. Dordrecht.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kempinger, J. J. 1996. Habitat, growth and food of young Lake Sturgeons in the Lake Winnebago system, Wisconsin. North American Journal of Fisheries Management: 16: 102-114.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Williamson, D.F. 2003. Caviar and conservation. TRAFFIC North America. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11752,"full_name":"Pipistrellus nathusii","author_year":"(Keyserling \u0026 Blasius, 1839)","common_names":[{"lang":"Albanian","names":"Pipistreli i Nathusit","convention_language":false,"id":null},{"lang":"Croatian","names":"Šumski šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr parkový","convention_language":false,"id":null},{"lang":"Danish","names":"Troldflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Nathusius' dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Nathusius's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Pargi-nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Pikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle de Nathusius","convention_language":true,"id":null},{"lang":"German","names":"Rauhhautfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Durvavitorlájú törpedenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Trítilblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello di Nathusius","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Natuzijaus šikšniukas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Trollflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Nathusius","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier parkový","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de Nathusius","convention_language":true,"id":null},{"lang":"Swedish","names":"Trollfladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Pürtüklü yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Borissenko, A. V., Kruskop, S. V. and Kashtalian, A. P. 1999. [New mammal species (Chiroptera, Insectivora) in the Berezinsky Biosphere Reserve.]. Vestnik Zoologii: 33: 107-113, 126.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Furmankiewicz, J. 2003. The vocal activity of \u003Ci\u003EPipistrellus nathusii\u003C/i\u003E (Vespertilionidae) in SW Poland. Acta Chiropterologica: 5(1): 97-105; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Speakman, J. R., Racey, P. A., Hutson, A. M., Webb, P. I. and Burnett, A. M. 1991. Status of Nathusius's pipistrelle (\u003Ci\u003EPipistrellus nathusii\u003C/i\u003E) in Britain. Journal of Zoology, London: 225: 685-690.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11753,"full_name":"Gavia immer","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Czech","names":"Potáplice lední","convention_language":false,"id":null},{"lang":"Danish","names":"Islom","convention_language":false,"id":null},{"lang":"Dutch","names":"Ijsduiker","convention_language":false,"id":null},{"lang":"English","names":"Great Northern Diver, Common Loon","convention_language":true,"id":null},{"lang":"Finnish","names":"Amerikanjääkuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon huard, Plongeon imbrin","convention_language":true,"id":null},{"lang":"German","names":"Eistaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jeges búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga maggiore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Islom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur lodowiec, Lodowiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-grande, Mobélha-grande","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo, Colimbo Grande, Colímbo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Islom, Svartnäbbad islom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus immer","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Northwest European population.\r\nFormerly listed as \u003Ci\u003EGavia immer immer\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11754,"full_name":"Rhinolophus hipposideros","author_year":"(Bechstein, 1800)","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i vogel","convention_language":false,"id":null},{"lang":"Croatian","names":"Mali potkovnjak","convention_language":false,"id":null},{"lang":"Czech","names":"Vrápenec malý","convention_language":false,"id":null},{"lang":"Danish","names":"Lille hesteskonæse, Lille hestekonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Lesser Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiöhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Petit rhinolophe","convention_language":true,"id":null},{"lang":"German","names":"Kleine Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis patkósdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Dvergskeifa","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Liten hesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"podkowiec maly","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-pequeno","convention_language":false,"id":null},{"lang":"Slovak","names":"Podkovár krpatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago pequeño de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärghästskonäsa","convention_language":false,"id":null},{"lang":"Turkish","names":"Küçük nal burunlu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Aellen, V. 1959. Contribution à l'étude de la faune d'Afghanistan 9. Chiroptères. Rev. suisse Zool.: 66: 353-386.; Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Demjanchik, V. and Demjanchik, M. 2003. Information on bats protection and investigation in Belarus in 2000 - first half 2003. www.eurobats.org/PartyReports/Belarus2003Report.pdf . ","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Pearch, M. J., Bates, P. J. J. and Magin, C. 2001. A review of the small mammal fauna of Djibouti and the results of a recent survey. Mammalia: 65: 387-409.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Koopman, K. F. 1975. Bats of Sudan. Bulletin of the American Museum of Natural History: 154: 355-443.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Bontadina, F., Arlettaz, R., Fankhauser, T., Lutz, M., Muhlethaler, E., Theiler, A. and Zingg, P. 2000. The lesser horseshoe bat \u003Ci\u003ERhinolophus hipposideros\u003C/i\u003E in Switzerland: present status and recommendations. Rhinolophe: 14: 69-84.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11755,"full_name":"Locustella ochotensis","author_year":"(Middendorff, 1853)","common_names":[{"lang":"English","names":"Middendorff's Grasshopper-Warbler, Middendorff's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Middendorff","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1994. Middendorff's Grasshopper Warbler: the first record for Hong Kong. Hong Kong Bird Report 194: 123-131.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11756,"full_name":"Eudromias morinellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Morinelplevier","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Dotterel","convention_language":true,"id":null},{"lang":"French","names":"Pluvier guignard","convention_language":true,"id":null},{"lang":"Russian","names":"Khrustan","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito carambolo","convention_language":true,"id":null},{"lang":"Swedish","names":"fjällpipare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Eudromias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius morinellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11757,"full_name":"Acrocephalus griseldis","author_year":"(Hartlaub, 1891)","common_names":[{"lang":"English","names":"Basra Reed-warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle d'Irak","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Lewis, J. M. S. and Tyler, L. 1997. First record of Basra Reed Warbler \u003Ci\u003EAcrocephalus griseldis\u003C/i\u003E in Botswana. Ostrich: 68: 44--45.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Adhami, A. 2006. An updated checklist of the birds of Iran. Podoces: 1: 1-16.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11759,"full_name":"Feresa attenuata","author_year":"Gray, 1874","common_names":[{"lang":"English","names":"Slender Blackfish, Pygmy Killer Whale","convention_language":true,"id":null},{"lang":"French","names":"Epaulard pygmée, Orque pygmée","convention_language":true,"id":null},{"lang":"Spanish","names":"Orca pigmea","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgspäckhuggare, mindre späckhuggare","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Lichter, A. A., Fraga, F. and Castello, H. P. 1990. First record of the pygmy killer whale, \u003Ci\u003EFeresa attenuata\u003C/i\u003E, in the southwest Atlantic. Marine Mammal Science: 6: 85-86.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Williams, A.D., Williams, R. and Brereton, R. 2002. The sighting of pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the southern Bay of Biscay and their association with cetacean calves. Journal of the Marine Biological Association of the United Kingdom: 82: 509-511.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Van Waerebeek, K. and Reyes, J. C. 1988. First record of the pygmy killer whale, \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1875 from Peru, with a summary of distribution in the eastern Pacific. Z. Säugetierkd.: 53: 253-255.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Dolar, L. L. 1994. Philippine marine mammals. Proceedings of a symposium-workshop on marine mammal conservation held at the Marine Science Insitute University of the Philippines Dilaman, Quezon City, Manila, April 7-8 1994 . 21-26; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Rodriguez-Lopez, M. A. and Mignucci-Giannoni, A. A. 1999. A stranded pygmy killer whale (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in Puerto Rico. Aquatic Mammals: 25: 119-121.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ross, G. J. B. and Leatherwood, S. 1994. Pygmy Killer Whale \u003Ci\u003EFeresa attenuata\u003C/i\u003E Gray, 1874. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Williams, A.D., Williams, R. and Brereton, R. 2002. The sighting of pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the southern Bay of Biscay and their association with cetacean calves. Journal of the Marine Biological Association of the United Kingdom: 82: 509-511.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; McSweeney, D.J., Bard, R.W., Mahaffy, S.D., Webster, D.L. and Schorr, G.S. 2009. Site fidelity and association patterns of a rare species: Pygmy killer whales (\u003Ci\u003EFeresa attenuata\u003C/i\u003E) in the main Hawaiian Islands. Marine Mammal Science: 25: 557-572.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Feresa","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11761,"full_name":"Oxyura leucocephala","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Hvidhovedet and","convention_language":false,"id":null},{"lang":"Dutch","names":"Witkopeend","convention_language":false,"id":null},{"lang":"English","names":"White-headed Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Viuhkasorsa","convention_language":false,"id":null},{"lang":"French","names":"Érismature à tête blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkopf-Ruderente, Weißkopfente, Weisskopfruderente","convention_language":false,"id":null},{"lang":"Italian","names":"Gobbo rugginoso","convention_language":false,"id":null},{"lang":"Polish","names":"Sterniczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-rabo-alçado","convention_language":false,"id":null},{"lang":"Spanish","names":"Malvasía Cabeciblanca, Malvasía","convention_language":true,"id":null},{"lang":"Swedish","names":"Kopparand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Djahida, B. 1996. Status and conservation of the White-headed Duck in Algeria. Oxyura: 8: 21-24.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Sultanov, E. H. 2001. Status of White-headed Duck in Azerbaijan. Threatened Waterfowl Research Group News: 13: 44-45.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dimitrov, M., Profirov, L., Nyagolov, K. and Michev, T. 2000. Record counts of White-headed Duck in Bulgaria. Threatened Waterfowl Research Group News: 12: 18-20.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Hulo, I., Horvat, F. and Sekeres, O. 2008. New data on rare breeding and migrant species [of birds] on Subotica lakes and sandy terrains (Serbia). Ciconia (Serbia and Montenegro): 14: 57-62.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Handrinos, G. I. 1996. The White-headed Duck \u003Ci\u003EOxyura leucocephala\u003C/i\u003E in Greece. Oxyura: 8: 31-35.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gustin, M.Rizzi, V. and Gallo-Orsi, U. 2000. White-headed Duck reintroduction in Apulia, southern Italy: 1999 update. Threatened Waterfowl Research Group News: 12: 21-25.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Torres, J. 2001. New records of White-headed Duck from Morocco. Threatened Waterfowl Research Group News: 13: 43.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dolz, J. C., Gimenez, M. and Huertas, J. 1991. Status of some threatened Anatidae species in the Comunidad, Valencia, East Spain. IWRB Threatened Waterfowl Research Group Newsletter: 1: 7-8.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Azafzaf, H. 2001. White-headed Ducks in Tunisia. Threatened Waterfowl Research Group News: 13: 37-42.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. (ed.) 1975. Turkey bird report 1970-1973.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.; Kreuzberg-Mukhina, E., Lanovenko, Y., Filatov, A. and Zagrabin, S. 2001. Status and distribution of the White-headed Duck in Uzbekistan. Threatened Waterfowl Research Group News: 13: 46-48.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11763,"full_name":"Barbastella leucomelas","author_year":"(Cretzschmar, 1826)","common_names":[{"lang":"English","names":"Eastern Barbastelle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Harrison, D. L. and Makin, D. 1989. Significant new records of vespertilionid bats (Chiroptera: Vespertilionidae) from Israel. Mammalia: 52: 593-596.; Makin, D. 1976. Preliminary report of a survey of Microchiroptera in Israel. Abstract. Israel J. Zool.: 25: 211.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Shaimardanov, R. T. 1982. [\u003Ci\u003EOtonycteris hemprichi\u003C/i\u003E and \u003Ci\u003EBarbastella leucomelas\u003C/i\u003E (Chiroptera) in Kazakhstan.]. Zool. Zhur.: 61: 1765.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Khabilov, T. K. 1986. [New data on bats (Chiroptera: Vespertilionidae) in Badakhshan.]. Dokl. Akad. Nauk Tadzh. SSR: 29: 628-631.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Barbastella darjelingensis","author_year":"(Hodgson, 1855)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11764,"full_name":"Acipenser gueldenstaedtii","author_year":"Brandt \u0026 Ratzeburg, 1833","common_names":[{"lang":"Bulgarian","names":"Ruska esetra","convention_language":false,"id":null},{"lang":"English","names":"Danube Sturgeon, Azov-Black Sea Sturgeon, Kura Sturgeon, Osetr, Russian Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Venäjänsampi","convention_language":false,"id":null},{"lang":"French","names":"Esturgeon du Danube, Esturgeon russe, Osciètre","convention_language":true,"id":null},{"lang":"German","names":"Waxdick, Russischer Stör","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vágo tok","convention_language":false,"id":null},{"lang":"Italian","names":"Storione danubiano","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Storioni","convention_language":false,"id":null},{"lang":"Norwegian","names":"Rysk stør","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr kolchidzki, Jesiotr rosyjski, Jesiotr krótkonosy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-do-Danúbio, Esturjao do Danúbio","convention_language":false,"id":null},{"lang":"Romanian","names":"Nisetru","convention_language":false,"id":null},{"lang":"Russian","names":"Russkii osetr, Viziga, Djirim, Chernamorsko-azovskyi osetr","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión del Danubio","convention_language":true,"id":null},{"lang":"Swedish","names":"Rysk stör, Osetr","convention_language":false,"id":null},{"lang":"Turkish","names":"Karaca baligi, Karaca","convention_language":false,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Karapetkova, M. Zhivkov, M. and Pchelarov, T. 1995. Ribite v B'lgariya. Geya Libris. Sofia.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Lenhardt, M., Jaric, I., Bojovic, D., Cvijanovic, G., Gacic, Z. 2006. Past and current status of sturgeon in the Servian part of the Danube River. Austrian Committee Danube Research / IAD. Vienna. 148-151","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Billard, R. and Lecointre, G. 2001. Biology and conservation of sturgeon and paddlefish. Reviews in Fish Biology and Fisheries: 10: 355-392.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Vecsei, P. 2001. Threatened fishes of the world: \u003Ci\u003EAcipenser gueldenstaedtii\u003C/i\u003EBrandt \u0026 Ratzenburg, 1833 (Acipenseridae). Environmental Biology of Fishes: 60: 362.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Vlasenko, A.D., Pavlov, A.V. Sokolov, L. I. and Vasil'ev, V.P. 1989. Acipenser gueldenstaedtii (Brandt, 1833). In: Holcik J. (ed). The Freshwater Fishes of Europe. Vol. I/II: General Introduction of Fishes. Acipenseriformes. AULA-Verlag. Wiesbaden.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Birstein, V. J. 1996. Sturgeons in the Lower Danube: a trip to Romania. The Sturgeon Quarterly: 4: 41223.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Levin, A.V. 1997. The Distribution and Migration of Sturgeon in the Caspian Sea. IUCN. Gland, Switzerland and Cambridge, UK. 13-19; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Bat, L., Erdem, Y., Ustaoglu, S., Yardim, O. and Satilmis, H.H. 2005. A study on the fishes of the central Black Sea coast of Turkey. J. Black Sea/Mediterranean Environment: 11: 281-296.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; IEE RAS (undated). 2008. Vertebrates of Russia. www.sevin.ru/vertebrates/index.html?fishes/101.html Institute of Ecology and Evolution, Russian Academy of Sciences. ; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11765,"full_name":"Niltava grandis","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Large Niltava","convention_language":true,"id":null},{"lang":"French","names":"Grand Gobemouche","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11766,"full_name":"Locustella fasciolata","author_year":"(Gray, 1860)","common_names":[{"lang":"Danish","names":"Stor Græshoppesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Krekelzanger","convention_language":false,"id":null},{"lang":"English","names":"Gray's Warbler, Gray's Grasshopper-Warbler, Gray's Grasshopper Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle fasciée","convention_language":true,"id":null},{"lang":"Swedish","names":"större flodsångare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Gregory, P. 1997. Range extensions and unusual sightings from Western Province, Papua New Guinea. Bulletin of the British Ornithologists' Club: 117: 304-311.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11767,"full_name":"Melanitta nigra","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sortand","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Zeeëend","convention_language":false,"id":null},{"lang":"English","names":"Common Scoter, Black Scoter","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustalintu","convention_language":false,"id":null},{"lang":"French","names":"Macreuse noire","convention_language":true,"id":null},{"lang":"German","names":"Trauerente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete réce","convention_language":false,"id":null},{"lang":"Italian","names":"Orchetto marino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Svartand","convention_language":false,"id":null},{"lang":"Polish","names":"Markaczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-negro","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sjöorre","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas nigra","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11768,"full_name":"Turdus obscurus","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Gul Larmdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Vale Lijster","convention_language":false,"id":null},{"lang":"English","names":"Eye-browed Thrush, Eyebrowed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle obscur","convention_language":true,"id":null},{"lang":"Polish","names":"Drozd oliwkowy","convention_language":false,"id":null},{"lang":"Russian","names":"Olivkovy Drozd","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11769,"full_name":"Turdus merula","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Solsort","convention_language":false,"id":null},{"lang":"Dutch","names":"Merel","convention_language":false,"id":null},{"lang":"English","names":"Blackbird, Common Blackbird, Eurasian Blackbird","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustarastas","convention_language":false,"id":null},{"lang":"French","names":"Merle noir","convention_language":true,"id":null},{"lang":"German","names":"Amsel","convention_language":false,"id":null},{"lang":"Italian","names":"Merlo","convention_language":false,"id":null},{"lang":"Polish","names":"Kos","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merlo-preto, Melro-preto","convention_language":false,"id":null},{"lang":"Russian","names":"Chyorny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Mirlo Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Koltrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"introduced","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"extinct,introduced","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11770,"full_name":"Himantopus himantopus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stylteløber","convention_language":false,"id":null},{"lang":"Dutch","names":"Steltkluut","convention_language":false,"id":null},{"lang":"English","names":"Black-winged Stilt","convention_language":true,"id":null},{"lang":"Finnish","names":"Pitkäjalka","convention_language":false,"id":null},{"lang":"French","names":"Échasse blanche, Echasse blanche","convention_language":true,"id":null},{"lang":"German","names":"Stelzenläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gólyatöcs","convention_language":false,"id":null},{"lang":"Italian","names":"Cavaliere d'Italia","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pernalonga, Perna-longa","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeñuela Común, Cigüeñela, Ciguëñuela común","convention_language":true,"id":null},{"lang":"Swedish","names":"Styltlöpare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Himantopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius himantopus","author_year":"Linnaeus, 1758"},{"full_name":"Himantopus ceylonensis","author_year":"Whistler, 1944"},{"full_name":"Himantopus knudseni","author_year":"Stejneger, 1887"},{"full_name":"Himantopus meridionalis","author_year":"C. L. Brehm, 1843"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11771,"full_name":"Ficedula hypoleuca","author_year":"(Pallas, 1764)","common_names":[{"lang":"Danish","names":"Broget Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonte Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"European Pied Flycatcher, Pied Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Kirjosieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche noir","convention_language":true,"id":null},{"lang":"German","names":"Trauerschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kormos légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia nera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas Cerrojillo","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartvit flugsnappare, Svarvit flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1959. Catalogo das aves da Guiné Portuguesa. II - Passeres. Memórias da Junta de Investigaçoes do Ultramar: 7: 116.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11772,"full_name":"Sialia currucoides","author_year":"Bechstein, 1798","common_names":[{"lang":"English","names":"Mountain Bluebird","convention_language":true,"id":null},{"lang":"French","names":"Merlebleu azuré","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11773,"full_name":"Haliaeetus pelagicus","author_year":"(Pallas, 1811)","common_names":[{"lang":"English","names":"Steller's Sea-Eagle","convention_language":true,"id":null},{"lang":"French","names":"Pygargue de Steller, Pygargue empereur","convention_language":true,"id":null},{"lang":"Spanish","names":"Pigargo de Steller, Pigargo gigante","convention_language":true,"id":null},{"lang":"Swedish","names":"jättehavsörn","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. 1986. Sea eagle sunrise. BBC Wildlife: 4: 588-592.; Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Lobkov, E. G. and Neufeldt, I. A. 1986. Distribution and biology of the Steller's Sea Eagle - \u003Ci\u003EHaliaeetus pelagicus pelagicus\u003C/i\u003E (Pallas). Proceedings of the Zoological Institute of the Academy of Sciences, USSR . 107-146.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11774,"full_name":"Anous tenuirostris","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Lesser Noddy","convention_language":true,"id":null},{"lang":"French","names":"Noddi marianne","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiñosa picofina","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna tenuirostris","author_year":"Temminck, 1823"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11775,"full_name":"Nycticorax nycticorax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Nathejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kwak","convention_language":false,"id":null},{"lang":"English","names":"Black-crowned Night-heron, Night Heron","convention_language":true,"id":null},{"lang":"Finnish","names":"Yöhaikara","convention_language":false,"id":null},{"lang":"French","names":"Héron bihoreau, Bihoreau gris","convention_language":true,"id":null},{"lang":"German","names":"Nachtreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bakcsó","convention_language":false,"id":null},{"lang":"Italian","names":"Nitticora","convention_language":false,"id":null},{"lang":"Polish","names":"Slepowron","convention_language":false,"id":null},{"lang":"Portuguese","names":"Goraz","convention_language":false,"id":null},{"lang":"Russian","names":"Kvakva","convention_language":false,"id":null},{"lang":"Spanish","names":"Martinete, Martinete Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Natthäger","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Vogt, C. A. 2007. Range extensions and noteworthy records for mainland Ecuador. Bulletin of the British Ornithologists' Club: 127: 228-233.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Nycticorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea nycticorax","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11776,"full_name":"Phylloscopus tytleri","author_year":"Brooks, 1872","common_names":[{"lang":"English","names":"Tytler's Leaf-warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Tytler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11777,"full_name":"Eptesicus bottae","author_year":"(Peters, 1869)","common_names":[{"lang":"English","names":"Botta's Serotine","convention_language":true,"id":null},{"lang":"French","names":"Sérotine de Botta","convention_language":true,"id":null},{"lang":"Polish","names":"Mroczek Botty","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de huerta turco","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. 1998. \u003Ci\u003EEptesicus bottae\u003C/i\u003E Mammalia, Chiroptera auf der Insel Rhodos. Bonn. Zool. Beitr.: 48: 113-121.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Bates, P. J. J. and Harrison, D. L. 1989. New records of small mammals from Jordan. Bonner Zoologische Beiträge: 40: 223-226.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Disi, A. M. and Amr, Z. S. 1992. Systematics and distribution of the bats (Mammalia: Chiroptera) of Jordan. Dirasat, Series B Pure and Applied Sciences: 19B: 101-118.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Nader, I. A. and Kock, D. 1990. \u003Ci\u003EEptesicus\u003C/i\u003E (\u003Ci\u003EEptesicus\u003C/i\u003E) \u003Ci\u003Ebottae\u003C/i\u003E (Peters 1869) in Saudi Arabia with notes on its subspecies and distribution (Mammalia: Chiroptera: Vespertilionidae). Senckenbergiana Biol.: 70: 1-13.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eptesicus ognevi","author_year":"Bobrinski, 1918"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11778,"full_name":"Rhinolophus ferrumequinum","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i madh","convention_language":false,"id":null},{"lang":"Croatian","names":"Veliki potkovnjak","convention_language":false,"id":null},{"lang":"Czech","names":"Vrápenec velký","convention_language":false,"id":null},{"lang":"Danish","names":"Stor hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Greater Horseshoe Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suur-sagarnina","convention_language":false,"id":null},{"lang":"Finnish","names":"Isohevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Grand rhinolophe","convention_language":true,"id":null},{"lang":"German","names":"Große Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy patkósdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Skeifublaka","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo maggiore","convention_language":false,"id":null},{"lang":"Maltese","names":"Rinolofu Kbir","convention_language":false,"id":null},{"lang":"Norwegian","names":"Stor hesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"podkowiec duzy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-grande","convention_language":false,"id":null},{"lang":"Slovak","names":"Podkovár stíhlokrídly","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago grande de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Stor hästskonäsa, större hästskonäsa","convention_language":false,"id":null},{"lang":"Turkish","names":"Büyük nal burunlu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qarqaz, M., Abu Baker, M., Hawamdeh, I., Taifour, H., and Azer, J. 2004. Small Mammals Survey at Dibeen Forest Reserve. The Royal Society for the Conservation of Nature . ; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Vasiliev, A. G. 1997. [First find of the Great Horseshoe Bat \u003Ci\u003ERhinolophus ferrumequinum\u003C/i\u003E in Moldova.]. Vestnik Zoologi: 31: 28.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11779,"full_name":"Phylloscopus orientalis","author_year":"(Brehm, 1855)","common_names":[{"lang":"English","names":"Eastern Bonelli's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11781,"full_name":"Saxicola insignis","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"White-throated Bushchat, Hodgson's Bushchat","convention_language":true,"id":null},{"lang":"French","names":"Tarier de Hodgson","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11782,"full_name":"Diomedea epomophora","author_year":"Lesson, 1825","common_names":[{"lang":"English","names":"Royal Albatross, Southern Royal Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros royal","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros real","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11783,"full_name":"Squalus acanthias","author_year":"Linnaeus, 1758","common_names":[{"lang":"Afrikaans","names":"Spikkel-penhaai, Doringhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkagen","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb bouchouika, Wâwy, Kelb el bahr, Abou shoka, Kelb bahr","convention_language":false,"id":null},{"lang":"Bulgarian","names":"Akula, Morsko kuce, Kuceska akula, Chernomorska akula","convention_language":false,"id":null},{"lang":"Catalan","names":"Agullat","convention_language":false,"id":null},{"lang":"Danish","names":"Kongeål, Pighaj","convention_language":false,"id":null},{"lang":"Dutch","names":"Gerookte haaiwangen, Doornhaai","convention_language":false,"id":null},{"lang":"English","names":"Spring dogfish, Spotted spiny dogfish, Rigg, Pacific dogfish, Rock salmon, White-spotted dogfish, Southern spiny dogfish, Spiky dog, Grayfish, Victorian spotted dogfish, Spiny dogfish, Darwen salmon, Spurdog, Huss, Dogfish, Common spiny fish, Piked dogfish, White-spotted spurdog, Blue dog, Flake","convention_language":true,"id":null},{"lang":"Faroese","names":"Haúr","convention_language":false,"id":null},{"lang":"Finnish","names":"Piikkihai","convention_language":false,"id":null},{"lang":"French","names":"Aiguillat, Aiguillat commun, Aiguillat tacheté","convention_language":true,"id":null},{"lang":"German","names":"Dornhai, Gemeiner Dornhai, Dornfisch, Schillerlocken","convention_language":false,"id":null},{"lang":"Hebrew","names":"Qozan qetan, Kotsan ktan kotz","convention_language":false,"id":null},{"lang":"Icelandic","names":"Háfur, Heitreykt","convention_language":false,"id":null},{"lang":"Italian","names":"Spinarolo","convention_language":false,"id":null},{"lang":"Japanese","names":"Abura-tsunozame","convention_language":false,"id":null},{"lang":"Maltese","names":"Mazzola griza, Mazzola bix-xewka, Mazzola","convention_language":false,"id":null},{"lang":"Maori","names":"Koinga, Makohuarau","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Stictokentroni, Skylópsaro, Skyllos","convention_language":false,"id":null},{"lang":"North Moluccan Malay","names":"Peegagh","convention_language":false,"id":null},{"lang":"Norwegian","names":"Pighai, Piggha","convention_language":false,"id":null},{"lang":"Polish","names":"Kolen","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galhudo, Galhudo-malhado, Malhado melga","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin, Câine de mare","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovennaya kolyuchaya akula, Kolyuchaya akula, Katran","convention_language":false,"id":null},{"lang":"Serbian","names":"Koscenjak, Pas kostelj","convention_language":false,"id":null},{"lang":"Spanish","names":"Pinchudo, Galludo, Mielga, Galludo espinoso","convention_language":true,"id":null},{"lang":"Swedish","names":"tagghaj, Pigghaj, hå, havsål","convention_language":false,"id":null},{"lang":"Turkish","names":"Mahmuzlu camgöz, Köpek baligi","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lipej. L., De Maddalena, A. and Soldo, A. 2004. Sharks of the Adriatic Sea. Knjiznica Annales Majora. Koper, Slovenia.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Squaliformes","class_name":"Elasmobranchii","family_name":"Squalidae","genus_name":"Squalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Northern hemisphere populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11784,"full_name":"Gazella cuvieri","author_year":"(Ogilby, 1841)","common_names":[{"lang":"Danish","names":"Cuviers gazelle","convention_language":false,"id":null},{"lang":"Dutch","names":"Edmigazel","convention_language":false,"id":null},{"lang":"English","names":"Idmi, Edmi Gazelle, Cuvier's Gazelle","convention_language":true,"id":null},{"lang":"Finnish","names":"Cuvieringaselli","convention_language":false,"id":null},{"lang":"French","names":"Edmi, Gazelle de Cuvier","convention_language":true,"id":null},{"lang":"German","names":"Edmi-Gazelle","convention_language":false,"id":null},{"lang":"Italian","names":"Gazzella di Cuvier","convention_language":false,"id":null},{"lang":"Spanish","names":"Gacela de Cuvier","convention_language":true,"id":null},{"lang":"Swedish","names":"Arabisk gasell, atlasgasell, bergsgasell","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"de Smet, K. 1984. On the status of antelopes in Algeria. IUCN/SSC Gnusletter May: 7-8.; de Smet, K. 1991. Cuvier's gazelle in Algeria. Oryx: 25: 99-104.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Willan, R. G. M. 1973. Tunisia's wildlife. Oryx: 12: 74-76.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11785,"full_name":"Caperea marginata","author_year":"(Gray, 1846)","common_names":[{"lang":"Dutch","names":"Dwergwalvis","convention_language":false,"id":null},{"lang":"English","names":"Pygmy Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine Pygmée","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena franca pigmea","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgrätval","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Gill, P.C., Kemper, C.M., Talbot, M. and Lyons, S.A. 2008. Large group of pygmy right whales seen in a shelf upwelling region off Victoria, Australia. Marine Mammal Science: 24: 962-968.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Aguayo, A., Navarro, D.T. and Ram, J.A. 1998. Los Mamíferos Marinos de Chile: 1. Cetacea. \u003Ci\u003ESerie Centífica Instituto Antártico Chileno\u003C/i\u003E: 48: 19–159.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Kemper, C.M. 2002. Distribution of the pygmy right whale, \u003Ci\u003ECaperea marginata\u003C/i\u003E, in the Australasian region. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 18(1): 99–111.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Neobalaenidae","genus_name":"Caperea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11786,"full_name":"Terpsiphone paradisi","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Indian Paradise-flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Tchitrec de paradis","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11787,"full_name":"Chlamydotis undulata","author_year":"(Jacquin, 1784)","common_names":[{"lang":"Danish","names":"Kravetrappe","convention_language":false,"id":null},{"lang":"Dutch","names":"Kraagtrap","convention_language":false,"id":null},{"lang":"English","names":"African Houbara Bustard, African Houbara","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutrappi, Kaulustrappi","convention_language":false,"id":null},{"lang":"French","names":"Outarde houbara, Houbara ondulé","convention_language":true,"id":null},{"lang":"German","names":"Kragentrappe","convention_language":false,"id":null},{"lang":"Italian","names":"Moara africana, Gallina prataiola, Ubara","convention_language":false,"id":null},{"lang":"Polish","names":"Hubara","convention_language":false,"id":null},{"lang":"Portuguese","names":"Sisão, Abetarda-moura","convention_language":false,"id":null},{"lang":"Spanish","names":"Hubara, Avutarda hubara","convention_language":true,"id":null},{"lang":"Swedish","names":"Kragtrapp, Småtrapp","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Smet, K. de. 1989. The Houbara Bustard in Algeria: a preliminary report. Bustard Studies: 4: 157-159.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Saleh, M. 1989. The status of the Houbara Bustard in Egypt. Bustard Studies: 4: 151-156.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goriup, P. D. (ed.) 1983. The Houbara Bustard in Morocco: a report of the Al-Areen/ICBP March 1982 preliminary survey. International Council for Bird Preservation, Cambridge, U.K., on behalf of Al-Areen Wildlife Park, Bahrain. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Anon. 2002. Tunisia National Report (2002). National Report to CMS. http://www.unep-wcmc.org/cms/index.html . ; Chammem, M., Khorchani, T., Boukhris, M., Combreau, O., Chiniti, L. and Hammadi, M. 2003. L’Outarde houbara \u003Ci\u003EChlamydotis undulata undulata\u003C/i\u003E en Tunisie : statut actuel et distribution géographique. Alauda: 71: 41-47.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Goriup, P. 1997. The world status of the Houbara Bustard Chlamydotis undulata. \u003Ci\u003EBird Conservation International\u003C/i\u003E 7: 373-397.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Chlamydotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Northwest African populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11788,"full_name":"Myotis schaubi","author_year":"Kormos, 1934","common_names":[{"lang":"English","names":"Schaub's Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11789,"full_name":"Turdus cardis","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Japanese Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle du Japon","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11790,"full_name":"Turdus iliacus","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Vindrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Koperwiek","convention_language":false,"id":null},{"lang":"English","names":"Redwing","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakylkirastas","convention_language":false,"id":null},{"lang":"French","names":"Grive mauvis","convention_language":true,"id":null},{"lang":"German","names":"Rotdrossel","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo sassello","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-ruivo-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Alirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödvingetrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11791,"full_name":"Gelochelidon nilotica","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Sandterne","convention_language":false,"id":null},{"lang":"English","names":"Gull-billed Tern, Common Gull-billed Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne hansel","convention_language":true,"id":null},{"lang":"Spanish","names":"Pagaza piconegra","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Johnston-González, R., Arbeláez-Alvardo, D. and Angarita Martínez, I. 2005. Primeros registros de reproducción del Gaviotín Blanco (\u003Ci\u003EGelochelidon nilotica\u003C/i\u003E) en Colombia. Orn. Colombiana: 3: 84-87.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Gelochelidon","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna nilotica","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African populations. Formerly listed as \u003Ci\u003ESterna nilotica nilotica\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11792,"full_name":"Sternula albifrons","author_year":"Pallas, 1764","common_names":[{"lang":"Czech","names":"Rybák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgterne","convention_language":false,"id":null},{"lang":"English","names":"Little Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne naine","convention_language":true,"id":null},{"lang":"German","names":"Zwergseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis csér","convention_language":false,"id":null},{"lang":"Italian","names":"Fraticello","convention_language":false,"id":null},{"lang":"Polish","names":"rybitwa bialoczelna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-anã","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrancito, Charrancito Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Småtärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Brenninkmeijer, A., Stienen, E. W. M., Klaassen, M. and Kersten, M. 2002. Feeding ecology of wintering terns in Guinea-Bissau. Ibis: 144: 602-613.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hansbro, P. and Sargeant, D. 1999. The first Little Tern \u003Ci\u003ESterna albifrons\u003C/i\u003E in Yemen. Sandgrouse: 21: 180.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna albifrons","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003ESterna albifrons\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11793,"full_name":"Recurvirostra avosetta","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Klyde","convention_language":false,"id":null},{"lang":"Dutch","names":"Kluut","convention_language":false,"id":null},{"lang":"English","names":"Avocet, Pied Avocet","convention_language":true,"id":null},{"lang":"Finnish","names":"Avosetti","convention_language":false,"id":null},{"lang":"French","names":"Avocette élégante","convention_language":true,"id":null},{"lang":"German","names":"Säbelschnäbler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gulipán","convention_language":false,"id":null},{"lang":"Italian","names":"Avocetta","convention_language":false,"id":null},{"lang":"Polish","names":"Szablodziób","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alfaiate","convention_language":false,"id":null},{"lang":"Spanish","names":"Avoceta, Avoceta Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Skärfläcka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. 1993. The first record of Pied Avocet (\u003Ci\u003ERecurvirostra avosetta\u003C/i\u003E) for Thailand. Natural History Bulletin of the Siam Society: 41: 69.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11794,"full_name":"Sterna paradisaea","author_year":"Pontoppidan, 1763","common_names":[{"lang":"Czech","names":"Rybák dlouhoocasý","convention_language":false,"id":null},{"lang":"Danish","names":"Havterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Stern","convention_language":false,"id":null},{"lang":"English","names":"Arctic Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapintiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne arctique","convention_language":true,"id":null},{"lang":"German","names":"Küstenseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna codalunga","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa popielata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Andorinha-do-mar-árctica","convention_language":false,"id":null},{"lang":"Russian","names":"Полярная крачка","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán ártico, Charrán Artico, Charrá árctico","convention_language":true,"id":null},{"lang":"Swedish","names":"Silvertärna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A. III, Castillo U., A., Gell-mann, M. and Rocha, O. O. 1991. Records of new and unusual birds from northern Bolivia. Bulletin of the British Ornithologists' Club: 111: 120-138.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Komar, O. 2003. Notes on autumn bird migration in coastal El Salvador. Orn. Neotrop.: 14: 39-46.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mead, C. J. and Clark, J. A. 1987. Report on bird-ringing for 1987 [error = 1986]. Ringing \u0026 Migration: 8: 135-200.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Bisschop, J. 2002. Arctic Tern in Kenya in July 2002. Dutch Birding: 24: 358-359.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Atlantic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11795,"full_name":"Calidris minutilla","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Amerikansk Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinste Strandloper, Amerikaanse Kleinste Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Least Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau minuscule","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos menudillo","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia minutilla","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa minutilla","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11796,"full_name":"Podiceps auritus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Nordisk lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Huifduiker, Kuifduiker","convention_language":false,"id":null},{"lang":"English","names":"Horned Grebe, Slavonian Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakurkku-uikku","convention_language":false,"id":null},{"lang":"French","names":"Grèbe esclavon","convention_language":true,"id":null},{"lang":"German","names":"Ohrentaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füles vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Svasso cornuto","convention_language":false,"id":null},{"lang":"Polish","names":"Perkoz rogaty","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-de-pescoço-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín cuellirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarthakedopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Carey, G. J. 1998. Horned Grebe at Mai Po: the first record for Hong Kong. Hong Kong Bird Report 1998: 114-115.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Podiceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus auritus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11798,"full_name":"Gallinago gallinago","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Bekasina otavní","convention_language":false,"id":null},{"lang":"Danish","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Watersnip","convention_language":false,"id":null},{"lang":"English","names":"Snipe, Common Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Taivaanvuohi","convention_language":false,"id":null},{"lang":"French","names":"Bécassine des marais","convention_language":true,"id":null},{"lang":"German","names":"Bekassine","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Beccaccino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dobbeltbekkasin","convention_language":false,"id":null},{"lang":"Polish","names":"Kszyk, Kszyk (bekas)","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza común","convention_language":true,"id":null},{"lang":"Swedish","names":"Enkelbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella delicata","author_year":"(Ord, 1825)"},{"full_name":"Capella gallinago","author_year":"(Linnaeus, 1758)"},{"full_name":"Scolopax delicata","author_year":"Ord, 1825"},{"full_name":"Scolopax gallinago","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11799,"full_name":"Haematopus moquini","author_year":"Bonaparte, 1856","common_names":[{"lang":"Danish","names":"Sort Strandskade","convention_language":false,"id":null},{"lang":"English","names":"African Oystercatcher, African Black Oystercatcher","convention_language":true,"id":null},{"lang":"French","names":"Huîtrier de Moquin","convention_language":true,"id":null},{"lang":"Spanish","names":"Ostrero negro Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Haematopus ostralegus moquini","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11800,"full_name":"Lymnocryptes minimus","author_year":"(Brünnich, 1764)","common_names":[{"lang":"Danish","names":"Enkeltbekkasin","convention_language":false,"id":null},{"lang":"Dutch","names":"Bokje","convention_language":false,"id":null},{"lang":"English","names":"Jack Snipe","convention_language":true,"id":null},{"lang":"Finnish","names":"Jänkäkurppa","convention_language":false,"id":null},{"lang":"French","names":"Bécassine sourde","convention_language":true,"id":null},{"lang":"German","names":"Zwergschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis sárszalonka","convention_language":false,"id":null},{"lang":"Italian","names":"Frullino","convention_language":false,"id":null},{"lang":"Polish","names":"Bekasik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Narceja-galega","convention_language":false,"id":null},{"lang":"Spanish","names":"Agachadiza Chica","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgbeckasin","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Lymnocryptes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax minima","author_year":"Brünnich, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11802,"full_name":"Steno bredanensis","author_year":"(G. Cuvier in Lesson, 1828)","common_names":[{"lang":"English","names":"Rough-toothed Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Sténo","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de pico largo","convention_language":true,"id":null},{"lang":"Swedish","names":"näbbdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Perkins, J. S. and Miller, G. W. 1983. Mass stranding of \u003Ci\u003ESteno bredanensis\u003C/i\u003E in Belize. Biotropica: 15: 235-236.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinedo, M. C. and Castello, H. P. 1980. Primeiros registros dos golfinhos \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E, \u003Ci\u003EStenella\u003C/i\u003E cfr. \u003Ci\u003Eplagiodon\u003C/i\u003E e \u003Ci\u003ESteno bredanensis\u003C/i\u003Epara o sul do Brasil, com notas osteologicas. Boletim Inst. Oceanogr. S. Paulo: 29: 313-317.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Pitman, R.L. and Stinchcomb, C. 2002. Rough-toothed dolphins (\u003Ci\u003ESteno bredanensis\u003C/i\u003E) as predators of mahimahi (_Coryphaena hippurus). Pacific Science: 56: 447-450.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Gannier, A. and West, K. L. 2005. Distribution of the Rough-toothed Dolphin (\u003Ci\u003ESteno bredanensis\u003C/i\u003E) around the Windward Islands (French Polynesia). Pacific Science: 59: 17-24.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Goosebeaked whale, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, and rough-toothed dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E G. Cuvier, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 203-204.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Vella, A. 1999. Cetacean surveys around the Maltese Islands \u0026 Maltes [Maltese] sea-user cetacean questionnaire study. European Research on Cetaceans: 12: 66-73.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Miyazaki, N. and Perrin, W. F. 1994. Rough-toothed Dolphin \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Lesson, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of marine mammals. Volume 5, the first book of dolphins. 1-21.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; West, K.L., Mead, J.G. and White, W. 2011. \u003Ci\u003ESteno bredanensis\u003C/i\u003E (Cetacea: Delphinidae). Mammalian Species: 43: 177-189.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Steno","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11803,"full_name":"Caretta caretta","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Loggerhead","convention_language":true,"id":null},{"lang":"French","names":"Caouanne","convention_language":true,"id":null},{"lang":"Spanish","names":"Caguama","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Haxhiu, I. 1995. Results of studies on the chelonians of Albania. Chelonian Conservation and Biology: 1: 324-326.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Carr, T. and Carr, N. 1984. Survey of the sea turtles of Angola. Report to the New York Zoological Society . ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J., Fleay, A. and Guinea, M. 1984. Sea turtles of the Capricornia Section, Great Barrier Reef Marine Park. In: Ward, W. T. and Saenger, P. (eds.) The Capricornia Section of the Great Barrier Reef: past, present and future. The Royal Society of Queensland and Australian Coral Reef Society. Queensland, Australia.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Baptistotte, C., Thomé, C. A. and Bjorndal, K. A. 2003. Reproductive biology and conservation status of the Loggerhead Sea Turtle (\u003Ci\u003ECaretta caretta\u003C/i\u003E) in Espírito Santo state, Brazil. Chelonian Conservation and Biology: 4(3): 603-611; Marcovaldi, M.A. and Chaloupka, M. 2007. Conservation status of the loggerhead sea turtle in Brazil: an encouraging outlook. Endangered Species Research: 3: 133-143.; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and littoral ecosystems of the region. In: Fretey, J. Biogeography and Conservation of Marine Turtles. CMS Technical Series Publication Convention on the Conservation of Migratory Species of Wild Animals. Bonn.; LeBreton, M. 1999. A working checklist of the herpetofauna of Cameroon. Netherlands Committee for IUCN. ; Uetz, P., Chenna, R., Etzold, T. and Hallermann, J. 2005. The EMBL Reptile Database. Accessed at \u003Cwww.embl-heidelberg.de/~uetz/LivingReptiles.html\u003E on 20/09/2005 . ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"C. D. Bell, J. L. Solomon, J. M. Blumenthal, T. J. Austin, G. Ebanks-Petrie, A. C. Broderick and B. J. Godley. 2007. Monitoring and conservation of critically reduced marine turtle nesting populations: lessons from the Cayman Islands. Animal Conservation: 10: 39-47.; Parsons, J. 1984. The National Report: Cayman Islands. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Marquez, R. M. 1984. Ad hoc data report: Cuba. In: Bacon et al. (Eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Broderick, A. C., Glen, F., Godley, B. J. and Hays, G. C. 2002. Estimating the number of green and loggerhead turtles nesting annually in the Mediterranean. Oryx: 36: 227-235.; Demetropoulos, A. 1983. WWF/IUCN Project 1815. Cyprus-turtle conservation. Report for 1982. ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Campbell, A., Clarke, M., Ghoneim, S., Hameid, W. S., Simms, C. and Edwards, C. 2002. On status and conservation of marine turtles along the Egyptian Mediterranean Sea coast: results of the Darwin Initiative Sea Turtle Conservation Project 1998-2000. Zoology in the Middle East: 24: 19-29.; Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Margaritoulis, D. and Rees, A. F. 2001. The Loggerhead Turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, population nesting in Kyparissia Bay, Peloponnesus, Greece: results of beach surveys over seventeen seasons and determination of the core nesting habitat. Zoology in the Middle East: 24: 75-90.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Sato, K., Bando, T., Matsuzawa, Y., Tanaka, H., Sakamoto, W., Minamikawa, S. and Goto, K. 1997. Decline of the loggerhead turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, nesting on Senri Beach in Minabe, Wakayama, Japan. Chelonian Conservation and Biology: 2: 600-603.; Stewart-Smith, J. 1987. In the shadow of Fujisan. Penguin Books. Harmondsworth, UK.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Disi, A. 2002. Jordan country study on biological diversity, the herpetofauna of Jordan. United Nation Environmental Program .; Disi, A., Modry, D., Necas, P. and Rifai, L. 2001. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Edition Chimaira.; Modry, D., Rifi, L., Abu Baker, M., and Amr, Z. 2004. Amphibians and reptiles of the Hashemite Kingdom of Jordan. Denisia, zugleich Kataloge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Newbury, N., Khalil, M. and Venizelos, L. 2002. Population status and conservation of marine turtles at El-Mansouri, Lebanon. Zoology in the Middle East: 27: 47-60.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; WWF/EGA/SSC. 2005. Marine and coastal resources assessment of the Eastern Region of Libya. Background study for the preparation of a conservation plan. The Environment General Authority of the Great Socialist People's Libyan Arab Jamahiriya.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Peckham, S.H., Maldonado-Diaz, D. Koch, V. Mancini, A., Gaos, A., Tinker, M.T. and Nichols, W.J. 2008. High mortality of loggerhead turtles due to bycatch, human consumption and strandings at Baja California Sur, Mexico, 2003 to 2007. Endangered Species Research: 5: 171-183.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; Sybesma, J. and P.C. Hoetjes. 1992. First record of the Olive Ridley and of nesting by the Loggerhead turtle in Curacao. Caribbean Journal of Science: 28: 103-104.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Montiel, R. A. 1984. The National Report: Nicaragua. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"De Celis, N. C. 1982. Status of marine turtles in the Philippines. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Iverson, J. B. 1992. A checklist with distribution maps of the turtles of the world. Second Edition. Published by the author. Richmond, Indiana.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Maigret, J. 1983. Repartition des tortues de mer sur les cotes ouest africaines. Rencontres de la Societe Herpetologique de France . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Lazar, B., Margaritoulis, D. and Tvrtkovic, N. 2004. Tag recoveries of the loggerhead sea turtle \u003Ci\u003ECaretta caretta\u003C/i\u003E in the eastern Adriatic Sea: implications for conservation. Journal of the Marine Biological Association of the United Kingdom: 84: 475-480","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Schleich, H. H., Kästle, W. and Kabisch, K. 1996. Amphibians and reptiles of North Africa. Koeltz Scientific Books. Koenigstein, Germany.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Geldiay, R. 1984. Investigation in connection with populations of sea turtles (\u003Ci\u003ECaretta c. caretta\u003C/i\u003E L. and \u003Ci\u003EChelonia m. mydas\u003C/i\u003E L.) living in the Aegean and Mediterranean coast of Turkey and their protection. Doga Bilim Dergisi: 8: 66-75.; Geldiay, R., Koray, J., and Balik, S. 1982. On the status of sea turtle populations (\u003Ci\u003ECaretta c. caretta\u003C/i\u003E and \u003Ci\u003EChelonia m. mydas\u003C/i\u003E) in the northern Mediterranean sea. Paper presented at the World Conference on Sea Turtle conservation, Nov. 26-30, 1979, Washington D.C . ; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Tükozan, O., Taskavak, E. and Ilgaz, Ç. 2003. A review of the biology of the Loggerhead Turtle, \u003Ci\u003ECaretta caretta\u003C/i\u003E, at five major nesting beaches on the south-western Mediterranean coast of Turkey. Herpetological Journal: 13(1): 27-33","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Fletemeyer, J. R. 1984. The National Report: Turks-Caicos. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Bjorndal, K. A., and Meylan, A. B. 1983. Sea turtles nesting at Melbourne Beach, Florida, I. Size, growth and reproductive biology. Biological Conservation: 26: 65-77.; Conley, W. J., and Hoffman, B. A. 1986. Florida Sea Turtle nesting activity: 1979-1985. Fla. Dept. of Natural Resources. St. Petersburg.; Dodd, C. K. and Byles, R. A. 2003. Post-nesting movements and behavior of Loggerhead Sea Turtles (Caretta caretta) departing from East-Central Florida nesting beaches. Chelonian Conservation and Biology: 4(3): 530-536; Ehrhart, L. M. 1983. An assessment of the status of the immature green turtle (\u003Ci\u003EChelonia mydas\u003C/i\u003E) and loggerhead turtle (\u003Ci\u003ECaretta caretta\u003C/i\u003E) populations of the central part of the indian river lagoon system, Brevard County, Florida. Report to WWF-US . ; Ehrhart, L. M. 1989. Status report of the Loggerhead Turtle. In Ogren, L. et al. (eds) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 122-139; Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141; Fritz, U. and Havas, P. 2006. Checklist of chelonians of the world. 230; Hawkes, L.A., Witt, M.J., Broderick, A.C., Coker, J.W., Coyne, M.S., Dodd, M., Frick, M.G., Godfrey, M.H. Griffin, D.B., Murphy, S.R., Murphy, T.M. et al. 2011. Home on the range: spatial ecology of loggerhead turtles in Atlantic waters of the USA. Diversity and Distributions: 17: 624-640.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Pritchard, P. C. H. 1984. The National Report: Venezuela. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Caretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":11804,"full_name":"Balaenoptera edeni","author_year":"Anderson, 1879","common_names":[{"lang":"Dutch","names":"Bryde's Vinvis","convention_language":false,"id":null},{"lang":"English","names":"Bryde's Whale, Tropical Whale","convention_language":true,"id":null},{"lang":"French","names":"Rorqual tropical, Rorqual de Bryde, Baleinoptère de Bryde, Rorqual d'Eden","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de Bryde","convention_language":true,"id":null},{"lang":"Swedish","names":"Brydes fenval, tropisk bardval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Sea Alarm Foundation. 2010. Bangladesh. 4","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Neve, P. 1973. Bryde's Whale beached. Journal of the Saudi Arabian Natural History Society: 7: 14.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Hoelzel, A. R. 1998. Genetic structure of cetacean populations in sympatry, parapatry, and mixed assemblages: implications for conservation policy. Journal of Heredity: 89: 451-458.; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P.B. 2001. Distribution and population separation of Bryde's whale \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E off southern Africa. Marine Ecology Progress Series: 220: 277-289.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Robineau, D. 1981. Sur l'echouage d'un rorqual de Bryde en mer Rouge, pres de Hodeidah (Yemen du nord). Mammalia: 45: 383-387.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11805,"full_name":"Delphinapterus leucas","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"White Whale, Beluga","convention_language":true,"id":null},{"lang":"Finnish","names":"Beluga","convention_language":false,"id":null},{"lang":"French","names":"Dauphin blanc, Delphinaptère blanc, Bélouga, Beluga","convention_language":true,"id":null},{"lang":"Russian","names":"Beluga","convention_language":false,"id":null},{"lang":"Slovenian","names":"Beluga","convention_language":false,"id":null},{"lang":"Spanish","names":"Beluga, Ballena blanca","convention_language":true,"id":null},{"lang":"Swedish","names":"beluga, vitval","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"de Smet, W. M. A. 1974. Inventaris van de walvisachtigen (Cetacea) van de Vlaamse kust en de Schelde. Bulletin Inst. r. Sci. nat. Belg. (Biol.): 50: 1-156.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Berzin, A. A. 1981. A note on the recent distribution and numbers of the White Whale in the Soviet far east. Report of the International Whaling Commission: 31: 527-529.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Goetz, K.T., Montgomery, R.A., Ver Hoef, J.M., Hobbs, R.C. and Johnson, D.S. 2012. Identifying essential summer habitat of the endangered beluga whale \u003Ci\u003EDelphinapterus leucas\u003C/i\u003E in Cook Inlet, Alaska. Endangered Species Research: 16: 135-147.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Monodontidae","genus_name":"Delphinapterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11806,"full_name":"Ardeola idae","author_year":"(Hartlaub, 1860)","common_names":[{"lang":"English","names":"Madagascar Pond-heron","convention_language":true,"id":null},{"lang":"French","names":"Crabier blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Garcilla Malgache","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Seddon, N., Tobias, J., Yount, J. W., Ramanampamonjy, J. R., Butchart, S. and Randrianizahana, H. 2000. Conservation issues and priorities in the Mikea Forest of south-west Madagascar. Oryx: 34: 287-304.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Ardea idae","author_year":"Hartlaub, 1860"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11807,"full_name":"Larus marinus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Svartbag","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Mantelmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Great Black-backed Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Merilokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland marin","convention_language":true,"id":null},{"lang":"German","names":"Mantelmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dolmányos sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Mugnaiaccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Morskaya Chayka","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Havstrut","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11809,"full_name":"Calidris temminckii","author_year":"(Leisler, 1812)","common_names":[{"lang":"Czech","names":"Jespák šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Temmincksryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Temmincks Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Temminck's Stint","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapinsirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau de Temminck","convention_language":true,"id":null},{"lang":"German","names":"Temminckstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Temminck-partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio nano","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus Temmincka, Biegus mały","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito de Temminck","convention_language":false,"id":null},{"lang":"Russian","names":"Belokhvosty Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Temminck","convention_language":true,"id":null},{"lang":"Swedish","names":"Mosnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia temminckii","author_year":"(Leisler, 1812)"},{"full_name":"Tringa temminckii","author_year":"Leisler, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11810,"full_name":"Branta leucopsis","author_year":"(Bechstein, 1803)","common_names":[{"lang":"Danish","names":"Bramgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Brandgans","convention_language":false,"id":null},{"lang":"English","names":"Barnacle Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoposkihanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache nonnette","convention_language":true,"id":null},{"lang":"German","names":"Nonnengans, Brandgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apácalúd","convention_language":false,"id":null},{"lang":"Italian","names":"Oca facciabianca","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-faces-brancas","convention_language":false,"id":null},{"lang":"Russian","names":"Beloschkaya Kazarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla cariblanca","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitkindad gås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Yerokhov, S. N. and Beryozovikov, N. N. 2000. [First record of the Barnacle Goose in Kazakhstan.]. Casarca: 6: 367-369.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas leucopsis","author_year":"Bechstein, 1803"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11811,"full_name":"Lagenodelphis hosei","author_year":"Fraser, 1956","common_names":[{"lang":"English","names":"Fraser's Dolphin, Sarawak Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de Fraser","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de Borneo","convention_language":true,"id":null},{"lang":"Swedish","names":"kortnäbbad delfin, Frasers delfin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Watkins, W. A., Daher, M. A., Fristrup, K. and Notarbartolo-di-Sciara, G. 1994. Fishing and acoustic behavior of Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) near Dominica, Southeast Caribbean. Caribbean Journal of Science: 30: 76-82.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Jefferson, T. A. and Leatherwood, S. 1994. \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E. Mammalian Species: 470: 1-5.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. 1996. First records of Fraser's Dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) from the Maldives. Journal of South Asian Natural History: 2: 75-80.; Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Mignucci-Giannoni, A. A., Montoya-Ospina, R. A., Pérez-Zayas, J. J., Rodriguez-López, M. A. and Williams, E. H. Jr. 1999. New records of Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) for the Caribbean. Aquatic Mammals: 25: 15-19.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D. K., Caldwell, M. C. and Walker, R. V. 1976. First records for Fraser's dolphin (\u003Ci\u003ELagenodelphis hosei\u003C/i\u003E) in the Atlantic and the melon-headed whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) in the western Atlantic. Cetology: 25: 1-4.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hersh, S. L. and Odell, D. K. 1986. Mass stranding of Fraser's dolphin, \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E, in the western North Atlantic. Marine Mammal Science: 2: 73-76.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Praderi, R., Praderi, G. and Garcia, R. 1992. First record of Fraser's dolphin, \u003Ci\u003ELagenodelphis hosei\u003C/i\u003E, in the South Atlantic Ocean (Mammalia: Cetacea: Delphinidae). Comunicaciones Zoologicas del Museo de Historia Natural de Montevideo: 12: 1-6.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenodelphis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Southeast Asian populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11812,"full_name":"Limnodromus griseus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Kortnæbbet Sneppeklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Grijze Snip","convention_language":false,"id":null},{"lang":"English","names":"Short-billed Dowitcher","convention_language":true,"id":null},{"lang":"French","names":"Bécassin roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Agujeta gris","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Mullarney, K. 1988. Short-billed Dowitcher in County Wexford - an addition to the Irish list. Irish Birds: 3: 596-600.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mjøs, A. T. 2002. Revurdering av eldre funn og endringer på den norske fuglelisten. Ornis Norvegica: 25: 64-92.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limnodromus","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[{"full_name":"Scolopax grisea","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11813,"full_name":"Kogia breviceps","author_year":"(Blainville, 1838)","common_names":[{"lang":"English","names":"Pygmy Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot pygmée","convention_language":true,"id":null},{"lang":"Portuguese","names":"Cachalote Anão","convention_language":false,"id":null},{"lang":"Spanish","names":"Cachalote cabeza chica, Cachalote pigmeo","convention_language":true,"id":null},{"lang":"Swedish","names":"pygmékaskelot","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.; Geise, L. and Borobia, M. 1988. Sobre a occorrencia de cetaceos no litoral do Estado do Rio de Janeiro, entre 1968 e 1984. Rev. Bras. Zool. : 4: 341-346.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Porter, L. and Morton, B. 2003. A description of the first intact Dwarf Sperm Whale from the South China Sea and a review of documented specimens of the Kogiidae (Cetacea) from Hong Kong. Systematics and Biodiversity: 1: 127-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Robineau, D. and Rancurel, P. 1981. Sur deux specimens du genre \u003Ci\u003EKogia\u003C/i\u003E (Cetacea, Physeteridae) en Nouvelle-Caledonie. Zeitschrift Säugetierkunde: 46: 56-58.; Sylvestre, J.-P. 1988. On a specimen of pygmy sperm whale \u003Ci\u003EKogia breviceps\u003C/i\u003E (Blainville, 1838) from New Caledonia. Aquatic Mammals: 14: 76-77.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1977. The mammals of Pakistan. Benn. London.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Bloodworth, B.E. and Odell, D.K. 2008. \u003Ci\u003EKogia breviceps\u003C/i\u003E (Cetacea: Kogiidae). Mammalian Species: 819: 1-12.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Seréne, R. 1934. Sur un échouange de \u003Ci\u003EKogia breviceps\u003C/i\u003E GRAY à proximité de l'Institut Océanographique de Nhatrang (Annam). Bull. Mus. Nat. Hist. Nat.: ?: 398-399.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Kogia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11814,"full_name":"Sporophila cinnamomea","author_year":"(Lafresnaye, 1839)","common_names":[{"lang":"English","names":"Chestnut Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile cannelle","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11815,"full_name":"Tarsiger chrysaeus","author_year":"Hodgson, 1845","common_names":[{"lang":"English","names":"Golden Bush-Robin","convention_language":true,"id":null},{"lang":"French","names":"Rossignol doré","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus chrysaeus","author_year":"(Hodgson, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11816,"full_name":"Phylloscopus nitidus","author_year":"Blyth, 1843","common_names":[{"lang":"Danish","names":"Grøn Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Groene Fitis","convention_language":false,"id":null},{"lang":"English","names":"Green Warbler, Bright Green Warbler, Yellowish-breasted Warbler, Bright-green Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot du Caucase","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A. and Adhami, A. 2006. An updated checklist of the birds of Iran. Podoces: 1: 1-16.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Ostrowski, S. and Guinard, E. 2002. First record of Green Warbler \u003Ci\u003EPhylloscopus nitidus\u003C/i\u003E in western Saudi Arabia. Sandgrouse: 24: 58-59.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11817,"full_name":"Oenanthe pleschanka","author_year":"(Lepechin, 1770)","common_names":[{"lang":"Dutch","names":"Bonte Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Pied Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Nunnatasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet pie","convention_language":true,"id":null},{"lang":"German","names":"Nonnensteinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apácahantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella dorsonero","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-de-peito-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Pía","convention_language":true,"id":null},{"lang":"Swedish","names":"Nunnestenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11819,"full_name":"Kogia sima","author_year":"(Owen, 1866)","common_names":[{"lang":"English","names":"Owen's Pygmy Sperm Whale, Dwarf Sperm Whale","convention_language":true,"id":null},{"lang":"French","names":"Cachalot nain","convention_language":true,"id":null},{"lang":"Spanish","names":"Cachalote enano","convention_language":true,"id":null},{"lang":"Swedish","names":"dvärgkaskelot, minikaskelot","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dunphy-Daly, M.M., Heithaus, M.R., Claridge, D.E. 2008. Temporal variation in dwarf sperm whale (\u003Ci\u003EKogia sima\u003C/i\u003E) habitat use and group size off Great Abaco Island, Bahamas. Marine Mammal Society: 24: 171-182.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Crovetto, A. and Toro, H. 1983. Presence de \u003Ci\u003EKogia simus\u003C/i\u003E (Cetacea, Physeteridae) dans les eaux chiliennes. Mammalia: 47: 591-593.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Porter, L. and Morton, B. 2003. A description of the first intact Dwarf Sperm Whale from the South China Sea and a review of documented specimens of the Kogiidae (Cetacea) from Hong Kong. Systematics and Biodiversity: 1: 127-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Debrot, A. O. 1992. Notes on a Gervais beaked whale, \u003Ci\u003EMesoplodon europaeus, and a dwarf sperm whale, \u003C/i\u003EKogia simus_, stranded in Curacao, Netherlands Antilles. Marine Mammal Science: 8: 172-178.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Robineau, D. and Rancurel, P. 1981. Sur deux specimens du genre \u003Ci\u003EKogia\u003C/i\u003E (Cetacea, Physeteridae) en Nouvelle-Caledonie. Zeitschrift Säugetierkunde: 46: 56-58.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1991. First record of the dwarf sperm whale, \u003Ci\u003EKogia simus\u003C/i\u003E (Owen), from New Zealand. National Museum of New Zealand Records: 3: 125-130.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D. K., Caldwell, M. C. and Arrindell, G. 1973. Dwarf sperm whales, \u003Ci\u003EKogia simus\u003C/i\u003E, from the Lesser Antillean island of St. Vincent. Journal of Mammalogy: 54: 515-517.; Cardona-Maldonado, M. A. and Mignucci-Giannoni, A. A. 1999. Pygmy and Dwarf Sperm Whales in Puerto Rico and the Virgin Islands, with a review of \u003Ci\u003EKogia\u003C/i\u003E in the Caribbean. Caribbean Journal of Science: 35: 29-37.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chou, W.-H. 1989. First record of dwarf sperm whale (\u003Ci\u003EKogia simus\u003C/i\u003E) from Taiwan. Bull. Natl. Mus. Nat. Sci. (Taichung): 1: 23-37.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Physeteridae","genus_name":"Kogia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Kogia simus","author_year":"(Owen, 1866)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":11821,"full_name":"Hydroprogne caspia","author_year":"Pallas, 1770","common_names":[{"lang":"Czech","names":"Rybák velkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Rovterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenstern","convention_language":false,"id":null},{"lang":"English","names":"Caspian Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Räyskä","convention_language":false,"id":null},{"lang":"French","names":"Sterne caspienne","convention_language":true,"id":null},{"lang":"German","names":"Raubseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Lócsér","convention_language":false,"id":null},{"lang":"Italian","names":"Rondine di mare maggiore, Sterna maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa wielkodzioba","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-de-bico-vermelho","convention_language":false,"id":null},{"lang":"Spanish","names":"Pagaza piquirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Skräntärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Hydroprogne","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hydroprogne caspia","author_year":"(Pallas, 1770)"},{"full_name":"Hydroprogne tschegrava","author_year":"(Lepechin, 1770)"},{"full_name":"Sterna caspia","author_year":"Pallas, 1770"},{"full_name":"Sterna tschegrava","author_year":"Lepechin, 1770"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"West Eurasian and African populations. Formerly listed as \u003Ci\u003ESterna caspia\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11823,"full_name":"Calidris bairdii","author_year":"(Coues, 1861)","common_names":[{"lang":"Danish","names":"Bairds Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bairds Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Baird's Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau de Baird","convention_language":true,"id":null},{"lang":"Russian","names":"Berdov Pesochnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos de Baird","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Smith, J. P. and the Israeli Rarities Committee. 2001. The Israeli Rarities and Distribution Committee Bulletin on Rare Birds in Israel (1989 - 2000). The Israeli Rarities and Distribution Committee Bulletin 1: 01.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Actodromas bairdii","author_year":"Coues, 1861"},{"full_name":"Erolia bairdii","author_year":"(Coues, 1861)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11824,"full_name":"Nyctalus lasiopterus","author_year":"(Schreber, 1780)","common_names":[{"lang":"Czech","names":"Netopýr obrovský","convention_language":false,"id":null},{"lang":"Danish","names":"Stor brunflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote rosse vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Giant Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Hiidvidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläislepakko","convention_language":false,"id":null},{"lang":"French","names":"Grande noctule","convention_language":true,"id":null},{"lang":"German","names":"Riesenabendsegler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Óriás-koraidenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola gigante","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Didysis nakviša","convention_language":false,"id":null},{"lang":"Norwegian","names":"Riseflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiec olbrzymi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-gigante","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-mare-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier východný","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Jättefladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.; Palmeirim, J. M. 1982. On the prresence of \u003Ci\u003ENyctalus lasiopterus\u003C/i\u003E in north Africa (Mammalia: Chiroptera). Mammalia: 46: 401-403.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Verbeek, H. D. J. 1997. Grote rosse vleermuis \u003Ci\u003ENyctalus lasiopterus\u003C/i\u003E (Schreber, 1780). Natuurhistorische Bibliotheek van de KNNV: 65: 188-190.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11825,"full_name":"Pelecanus crispus","author_year":"Bruch, 1832","common_names":[{"lang":"Danish","names":"Krøltoppet pelikan","convention_language":false,"id":null},{"lang":"Dutch","names":"Kroeskoppelikaan","convention_language":false,"id":null},{"lang":"English","names":"Dalmatian Pelican","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiharapelikaani","convention_language":false,"id":null},{"lang":"French","names":"Pélican dalmate, Pélican Frisé","convention_language":true,"id":null},{"lang":"German","names":"Krauskopfpelikan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Borzas gödény","convention_language":false,"id":null},{"lang":"Italian","names":"Pelícano ceñudo, Pellicano riccio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pelicano-crespo","convention_language":false,"id":null},{"lang":"Spanish","names":"Pelícano rizado, Pelícano Ceñudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Krushuvad pelikan","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shi, H.Q., Cao, L., Barter, M.A. and Liu, N.F. 2008. Status of the East Asian population of the Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E: the need for urgent conservation action. Bird Conservation International: 18: 181-193.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Crivelli, A.J. 1996. Action plan for the Dalmatian Pelican (\u003Ci\u003EPelecanus crispus\u003C/i\u003E) in Europe. European Commission for the Environment. 29","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.; Zhatkanbayev, A. H. 1994. The present state of pelican populations (\u003Ci\u003EPelecanus onocrotalus\u003C/i\u003E and \u003Ci\u003EP. crispus\u003C/i\u003E) in Kazakhstan. Bulletin of the British Ornithologists' Club: 114: 202-205.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shi, H.Q., Cao, L., Barter, M.A. and Liu, N.F. 2008. Status of the East Asian population of the Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E: the need for urgent conservation action. Bird Conservation International: 18: 181-193.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Crivelli, A.J. 1996. Action plan for the Dalmatian Pelican (\u003Ci\u003EPelecanus crispus\u003C/i\u003E) in Europe. European Commission for the Environment. 29; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Schernazarov, E. 1988. [New breeding site of Dalmatian Pelican \u003Ci\u003EPelecanus crispus\u003C/i\u003E in Uzbekistan.]. Ornitologiya: 23: 225.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Pelecanidae","genus_name":"Pelecanus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11826,"full_name":"Mycteria ibis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Skovstork","convention_language":false,"id":null},{"lang":"English","names":"Yellow-billed Stork","convention_language":true,"id":null},{"lang":"French","names":"Tantale ibis","convention_language":true,"id":null},{"lang":"Spanish","names":"Tántalo Africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ragyov, D. N., Popova-Wightman, L. G., Popov, K. S., Dalakchieva, S. Y., Nikolov, B. P. and Nikolov, I. P. 2003. The first Yellow-billed Stork \u003Ci\u003EMycteria ibis\u003C/i\u003E in Bulgaria. Sandgrouse: 25: 63-64.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hellyer, P. 2000. The first Yellow-billed Stork \u003Ci\u003EMycteria ibis\u003C/i\u003E in Qatar and the Arabian Gulf. Sandgrouse: 22: 125-126.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Mycteria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tantalus ibis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11827,"full_name":"Egretta ardesiaca","author_year":"(Wagler, 1827)","common_names":[{"lang":"English","names":"Black Heron","convention_language":true,"id":null},{"lang":"French","names":"Aigrette ardoisée","convention_language":true,"id":null},{"lang":"Spanish","names":"Garceta azabache","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Ikonga, J. M. and Rainey, H. J. 2005. Premières observations de l'Aigrette ardoisée \u003Ci\u003EEgretta ardesiaca\u003C/i\u003E au Congo-Brazzaville. Bulletin of the African Bird Club: 12: 166-167.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al--Saghier, O. and Porter, R. F. 1997. The first Black Heron Egretta ardesiaca in Yemen. Sandgrouse: 19: 140-141.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ardesiaca","author_year":"Wagler, 1827"},{"full_name":"Hydranassa ardesiaca","author_year":"(Wagler, 1827)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11828,"full_name":"Phylloscopus sibilatrix","author_year":"(Bechstein, 1793)","common_names":[{"lang":"Dutch","names":"Fluiter","convention_language":false,"id":null},{"lang":"English","names":"Wood Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Sirittäjä","convention_language":false,"id":null},{"lang":"French","names":"Pouillot siffleur","convention_language":true,"id":null},{"lang":"German","names":"Waldlaubsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Luí verde","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-assobiadeira","convention_language":false,"id":null},{"lang":"Russian","names":"Penochka-treshchotka","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Silbador","convention_language":true,"id":null},{"lang":"Swedish","names":"Grönsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Dickerman, R. W., Cane, W. P., Carter, M. F., Chapman, A. and Schmitt, C. G. 1994. Report on three collections of birds from Liberia. Bulletin of the British Ornithologists' Club: 114: 267-274.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11829,"full_name":"Erithacus rubecula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Rødhals","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodborst","convention_language":false,"id":null},{"lang":"English","names":"European Robin, Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Punarinta","convention_language":false,"id":null},{"lang":"French","names":"Rougegorge familier","convention_language":true,"id":null},{"lang":"German","names":"Rotkehlchen, Rotkenhlchen","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörösbegy","convention_language":false,"id":null},{"lang":"Italian","names":"Pettirosso","convention_language":false,"id":null},{"lang":"Polish","names":"Rudzik","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pisco-de-peito-ruivo, Pico-de-peito-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Petirrojo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Erithacus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11830,"full_name":"Sylvia deserticola","author_year":"Tristram, 1859","common_names":[{"lang":"Danish","names":"Tristrams Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Atlasgrasmus","convention_language":false,"id":null},{"lang":"English","names":"Tristram's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de l'Atlas","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11831,"full_name":"Sporophila palustris","author_year":"(Barrows, 1883)","common_names":[{"lang":"English","names":"Marsh Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile des marais","convention_language":true,"id":null},{"lang":"German","names":"Sumpfpfäffchen","convention_language":false,"id":null},{"lang":"Spanish","names":"Capuchino pecho blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"kärrfrösparv","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"This includes \u003Ci\u003ESporophila zelichi\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"This includes \u003Ci\u003ESporophila zelichi\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11833,"full_name":"Sula dactylatra","author_year":"Lesson, 1831","common_names":[{"lang":"English","names":"Masked Booby","convention_language":true,"id":null},{"lang":"French","names":"Fou masqué","convention_language":true,"id":null},{"lang":"Spanish","names":"Piquero enmascarado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"extinct","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Sula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11834,"full_name":"Bucephala islandica","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Czech","names":"Hohol islandský","convention_language":false,"id":null},{"lang":"Danish","names":"Islandsk Hvinand","convention_language":false,"id":null},{"lang":"Dutch","names":"IJslandse Brilduiker","convention_language":false,"id":null},{"lang":"English","names":"Barrow's Goldeneye","convention_language":true,"id":null},{"lang":"Finnish","names":"Amerikantelkkä","convention_language":false,"id":null},{"lang":"French","names":"Garrot d'Islande","convention_language":true,"id":null},{"lang":"German","names":"Spatelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Izlandi kerceréce","convention_language":false,"id":null},{"lang":"Italian","names":"Quattrocchi d'Islanda","convention_language":false,"id":null},{"lang":"Polish","names":"Sierpiec","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato da Islândia","convention_language":false,"id":null},{"lang":"Russian","names":"Islandski Gogol","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Islándico","convention_language":true,"id":null},{"lang":"Swedish","names":"Islandsknipa","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matejev, S.D. and Vasic, V.F. 1973. Catalogus Faunae Jugoslaviae -Aves IV/3. Academia Scientiarium et Artium Slovenic, Lubljana (in Serbian) .","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas islandica","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11835,"full_name":"Sterna repressa","author_year":"Hartert, 1916","common_names":[{"lang":"Danish","names":"Hvidkindet Terne","convention_language":false,"id":null},{"lang":"English","names":"White-cheeked Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne à joues blanches","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán arábigo","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11836,"full_name":"Ciconia abdimii","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Abdim's Stork","convention_language":true,"id":null},{"lang":"French","names":"Cigogne d'Abdim","convention_language":true,"id":null},{"lang":"Spanish","names":"Cigüeña de Abdim","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11837,"full_name":"Charadrius wilsonia","author_year":"Ord, 1814","common_names":[{"lang":"English","names":"Wilson's Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier de Wilson","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo piquigrueso","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Peredo, R. 2000. Observación de \u003Ci\u003ECharadrius wilsonia\u003C/i\u003E Ridgway, 1919 en Chile. Boletín Chileno de Ornitología: 7: 29-30.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Levesque, A., Duzont, F. and Ramsahai, A. 2005. Cinq espèces d'oiseaux nicheurs récemment découvertes en Guadeloupe (Antilles françaises). Alauda: 73: 69-70.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Schulenberg, T. S. 1987. New records of birds from western Peru. Bulletin of the British Ornithologists' Club: 107: 184-189.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11838,"full_name":"Diomedea exulans","author_year":"Linnaeus, 1758","common_names":[{"lang":"Dutch","names":"Grote Albatros","convention_language":false,"id":null},{"lang":"English","names":"Wandering Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros hurleur","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros viajero","convention_language":true,"id":null},{"lang":"Swedish","names":"vandringsalbatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Diomedea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea gibsoni","author_year":"Robertson \u0026 Warham, 1993"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11840,"full_name":"Uria aalge","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Czech","names":"Alkoun úzkozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Lomvie","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeekoet","convention_language":false,"id":null},{"lang":"English","names":"Common Murre, Guillemot, Common Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Etelänkiisla","convention_language":false,"id":null},{"lang":"French","names":"Guillemot marmette, Guillemot de troïl","convention_language":true,"id":null},{"lang":"German","names":"Trottellumme","convention_language":false,"id":null},{"lang":"Italian","names":"Uria","convention_language":false,"id":null},{"lang":"Norwegian","names":"Lomvi","convention_language":false,"id":null},{"lang":"Polish","names":"Nurzyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Tonkoklyuvaya Kayra","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sillgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Uria","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus aalge","author_year":"Pontoppidan, 1763"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11842,"full_name":"Phylloscopus borealoides","author_year":"Portenko, 1950","common_names":[{"lang":"English","names":"Sakhalin Leaf-Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11843,"full_name":"Isurus paucus","author_year":"Guitart Manday, 1966","common_names":[{"lang":"Afrikaans","names":"Langvin-mako","convention_language":false,"id":null},{"lang":"English","names":"Longfin Mako","convention_language":true,"id":null},{"lang":"French","names":"Petite taupe","convention_language":true,"id":null},{"lang":"Japanese","names":"Bake-aozame","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-anequim-de-gadanha, Tubarão","convention_language":false,"id":null},{"lang":"Spanish","names":"Dientuso prieto, Marrajo carite","convention_language":true,"id":null},{"lang":"Swedish","names":"långfenad makrillhaj","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Isurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":11844,"full_name":"Chlidonias niger","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Sortterne","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Stern","convention_language":false,"id":null},{"lang":"English","names":"Black Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustatiira","convention_language":false,"id":null},{"lang":"French","names":"Guifette noire","convention_language":true,"id":null},{"lang":"German","names":"Trauerseeschwalbe","convention_language":false,"id":null},{"lang":"Italian","names":"Mignattino","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa czarna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivina-preta","convention_language":false,"id":null},{"lang":"Spanish","names":"Fumarel común","convention_language":true,"id":null},{"lang":"Swedish","names":"Svarttärna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rivas, F. M. and López, N. 1997. Black Tern (\u003Ci\u003EChlidonias niger\u003C/i\u003E) en la Bahia de Calderas, Bani, República Dominicana. El Pitirre: 10: 58.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Browne, P. W. P. 1984. Seven new species for Conakry, Guinea. Malimbus: 6: 74.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11845,"full_name":"Mergus serrator","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Toppet Skallesluger","convention_language":false,"id":null},{"lang":"Dutch","names":"Middelste Zaagbek","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Merganser","convention_language":true,"id":null},{"lang":"Finnish","names":"Tukkakoskelo","convention_language":false,"id":null},{"lang":"French","names":"Harle huppé","convention_language":true,"id":null},{"lang":"German","names":"Mittelsäger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Örvös bukó","convention_language":false,"id":null},{"lang":"Italian","names":"Smergo minore","convention_language":false,"id":null},{"lang":"Polish","names":"Szlachar, szlachar (tracz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Merganso-de-poupa","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta mediana","convention_language":true,"id":null},{"lang":"Swedish","names":"Småskrake","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11847,"full_name":"Burhinus oedicnemus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Dytík úhorní","convention_language":false,"id":null},{"lang":"Danish","names":"Triel","convention_language":false,"id":null},{"lang":"Dutch","names":"Griel","convention_language":false,"id":null},{"lang":"English","names":"Stone Curlew, Eurasian Thick-knee, Stone-Curlew","convention_language":true,"id":null},{"lang":"Finnish","names":"Paksujalka","convention_language":false,"id":null},{"lang":"French","names":"Dicnème criard, Oedicnème criard","convention_language":true,"id":null},{"lang":"German","names":"Triel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ugartyúk","convention_language":false,"id":null},{"lang":"Italian","names":"Occhione","convention_language":false,"id":null},{"lang":"Polish","names":"Kulon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcaravão","convention_language":false,"id":null},{"lang":"Russian","names":"Avdotka","convention_language":false,"id":null},{"lang":"Spanish","names":"Alcaraván, Alcaraván común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tjockfot","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1987. A synopsis of the avifauna of China. Science Press. Beijing.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Burhinidae","genus_name":"Burhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius oedicnemus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11848,"full_name":"Lagenorhynchus acutus","author_year":"(Gray, 1828)","common_names":[{"lang":"English","names":"Atlantic White-sided Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque à flanc blanc de l'Atlantique","convention_language":true,"id":null},{"lang":"Norwegian","names":"Kvitskjeving","convention_language":false,"id":null},{"lang":"Spanish","names":"Delfín de flancos blancos","convention_language":true,"id":null},{"lang":"Swedish","names":"västlig vitsidsdelfin, atlantisk vitsiding","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 64-72.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Brownell, R. L. Jr and Kinze, C. C. 1999. Atlantic White-sided Dolphin \u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E (Gray, 1828). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Selzer, L. A. and Payne, P. M. 1988. The distribution of white-sided (\u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E) and common dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) vs. environmental features of the continental shelf of the northeastern United States. Marine Mammal Science: 4: 141-153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11849,"full_name":"Myiagra cyanoleuca","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Satin Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Monarque satiné","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Myiagra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11850,"full_name":"Hippolais olivetorum","author_year":"(Strickland, 1837)","common_names":[{"lang":"Czech","names":"Sedmihlásek olivní","convention_language":false,"id":null},{"lang":"Danish","names":"Olivensanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Griekse Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Olive-tree Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Oliivikultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs des oliviers","convention_language":true,"id":null},{"lang":"German","names":"Olivenspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Olívgeze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino levantino, Campino levantino","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganuacz oliwny, Zaganiacz oliwny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-das-oliveiras","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarcero grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Olivsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11851,"full_name":"Sylvia nana","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Ørkensanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Woestijngrasmus","convention_language":false,"id":null},{"lang":"English","names":"Asian Desert Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kääpiökerttu","convention_language":false,"id":null},{"lang":"French","names":"Fauvette naine","convention_language":true,"id":null},{"lang":"German","names":"Wüstengrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sivatagi poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola nana","convention_language":false,"id":null},{"lang":"Polish","names":"Pokrzewka pustynna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Toutinegra do Sara","convention_language":false,"id":null},{"lang":"Russian","names":"Pustynnaya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Sahariana","convention_language":true,"id":null},{"lang":"Swedish","names":"Ökensångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Murdoch, D., Andrews, I. and Hofland, R. 2004. The Syrian Wetland Expedition 2004: a summary. Sandgrouse: 26: 94-104.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11852,"full_name":"Balaenoptera omurai","author_year":"Wada, Oishi \u0026 Yamada, 2003","common_names":[{"lang":"English","names":"Omura's whale","convention_language":true,"id":null}],"distributions":[{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Wada, S., Oishi, M. and Yamada, T. K. 2003. A newly discovered species of living baleen whale. Nature: 426: 278-281.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Wada, S., Oishi, M. and Yamada, T. K. 2003. A newly discovered species of living baleen whale. Nature: 426: 278-281.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EBalaenoptera edeni\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11853,"full_name":"Acrocephalus concinens","author_year":"(Swinhoe, 1870)","common_names":[{"lang":"English","names":"Blunt-winged Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle de Swinhoe","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11854,"full_name":"Phylloscopus cantator","author_year":"(Tickell, 1833)","common_names":[{"lang":"English","names":"Yellow-vented Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot chanteur","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11855,"full_name":"Merops apiaster","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Vlha pestrá","convention_language":false,"id":null},{"lang":"Danish","names":"Biæder","convention_language":false,"id":null},{"lang":"Dutch","names":"Bijeneter","convention_language":false,"id":null},{"lang":"English","names":"European Bee-eater, Bee-eater","convention_language":true,"id":null},{"lang":"Finnish","names":"Mehiläissyöjä","convention_language":false,"id":null},{"lang":"French","names":"Guêpier d'Europe","convention_language":true,"id":null},{"lang":"German","names":"Bienenfresser","convention_language":false,"id":null},{"lang":"Hungarian","names":"Gyugyalag, Gyurgyalag","convention_language":false,"id":null},{"lang":"Italian","names":"Gruccione","convention_language":false,"id":null},{"lang":"Polish","names":"zolna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abelharuco-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Zolotisatya Shchurka","convention_language":false,"id":null},{"lang":"Spanish","names":"Abejaruco común, Abejaruco Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Biätare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. 2001. European Bee-eater Merops apiaster and Citrine Wagtail Motacilla citreola: the first records for Seychelles. Bulletin of the African Bird Club: 8: 51-53.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Coraciiformes","class_name":"Aves","family_name":"Meropidae","genus_name":"Merops","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11856,"full_name":"Cygnus columbianus","author_year":"(Ord, 1815)","common_names":[{"lang":"Danish","names":"Pibesvane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Zwaan","convention_language":false,"id":null},{"lang":"English","names":"Tundra Swan","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkujoutsen","convention_language":false,"id":null},{"lang":"French","names":"Cygne de Bewick, Cygne siffleur","convention_language":true,"id":null},{"lang":"German","names":"Zwergschwan","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis hattyú","convention_language":false,"id":null},{"lang":"Italian","names":"Cigno minore","convention_language":false,"id":null},{"lang":"Polish","names":"Łabędź czarnodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cisne-pequeno","convention_language":false,"id":null},{"lang":"Russian","names":"Американский лебедь","convention_language":false,"id":null},{"lang":"Spanish","names":"Cisne Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre sångsvan","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Georg, P. V. 1968. \u003Ci\u003ECygnus bewickii\u003C/i\u003E Yarrell, Bewick's Swan: an addition to the avifauna of Iraq. Bull. Iraq Nat. Hist. Mus.: 3: 11-13.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas columbianus","author_year":"Ord, 1815"},{"full_name":"Cygnus bewickii","author_year":"Yarrell, 1830"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11857,"full_name":"Catharus ustulatus","author_year":"(Nuttall, 1840)","common_names":[{"lang":"Danish","names":"Brunrygget Skovdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwerglijster","convention_language":false,"id":null},{"lang":"English","names":"Russet-backed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à dos olive","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"McNair, D. B., Massiah, E. B. and Frost, M. D. 1999. New and rare species of Nearctic landbird migrants during autumn for Barbados and the Lesser Antilles. Caribbean Journal of Science: 35: 46-53.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S., Rimmer, C., Keith, A., Wiley, J., Raffaele, H., Mcfarland, K. and Fernandez, E. 2006. Birds of the Dominican Republic \u0026 Haiti. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11858,"full_name":"Panurus biarmicus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Skægmejse","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardmannetje","convention_language":false,"id":null},{"lang":"English","names":"Bearded Tit, Bearded Reedling, Bearded Parrotbill","convention_language":true,"id":null},{"lang":"Finnish","names":"Viiksitimali","convention_language":false,"id":null},{"lang":"French","names":"Panure à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Bartmeise","convention_language":false,"id":null},{"lang":"Hungarian","names":"Barkóscinege","convention_language":false,"id":null},{"lang":"Italian","names":"Basettino","convention_language":false,"id":null},{"lang":"Polish","names":"wasatka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chapim-de-bigode","convention_language":false,"id":null},{"lang":"Russian","names":"Usataya Sinitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Bigotudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Skäggmes","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; Tavares, J., Sá Pessoa, P. and Brito e Abreu, F. 2000. The first breeding record of Bearded Tit \u003Ci\u003EPanurus biarmicus\u003C/i\u003E in Syria. Sandgrouse: 22: 145-146.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Panuridae","genus_name":"Panurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Panuridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11859,"full_name":"Charadrius dubius","author_year":"Scopoli, 1786","common_names":[{"lang":"Danish","names":"Lille Præstekrave","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Plevier","convention_language":false,"id":null},{"lang":"English","names":"Little Ringed Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutylli","convention_language":false,"id":null},{"lang":"French","names":"Pluvier petit-gravelot, Petit Gravelot","convention_language":true,"id":null},{"lang":"German","names":"Flußregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis lile","convention_language":false,"id":null},{"lang":"Italian","names":"Corriere piccolo","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dverglo","convention_language":false,"id":null},{"lang":"Polish","names":"Sieweczka rzeczna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Borrelho-pequeno-de-coleira","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlitejo Chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre strandpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11861,"full_name":"Regulus calendula","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Ruby-crowned Kinglet","convention_language":true,"id":null},{"lang":"French","names":"Roitelet à couronne rubis","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11862,"full_name":"Rhinolophus blasii","author_year":"Peters, 1867","common_names":[{"lang":"Albanian","names":"Lakuriqnate hundepatkua i Blasiusit","convention_language":false,"id":null},{"lang":"Croatian","names":"Blazijev potkovnjak","convention_language":false,"id":null},{"lang":"Danish","names":"Blasius hesteskonæse, Blasius' hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Blasius' hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Peak-saddle Horseshoe Bat, Blasius's Horseshoe Bat","convention_language":true,"id":null},{"lang":"Finnish","names":"Blasinhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe de Blasius","convention_language":true,"id":null},{"lang":"German","names":"Blasius-Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Blasius-patkósdenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo di Blasius","convention_language":false,"id":null},{"lang":"Norwegian","names":"Blasiushesteskonese","convention_language":false,"id":null},{"lang":"Polish","names":"Podkowiec Blasiusa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Liliacul-lui-Blasius","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de herradura de Blasius, Murciélago dálmata de herradura","convention_language":true,"id":null},{"lang":"Swedish","names":"Blasius hästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, M. and Happold, D. C. D. 1997. New records of bats (Chiroptera: Mammalia) from Malawi, east-central Africa, with an assessment of their status and conservation. Journal of Natural History: 31: 805-836.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kock, D. and Howell, K. M. 1988. Three bats new for mainland Tanzania (Mammalia: Chiroptera). Senckenbergiana biologica: 68: 223-239.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11863,"full_name":"Hippolais icterina","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Czech","names":"Sedmihlásek hajní","convention_language":false,"id":null},{"lang":"Danish","names":"Gulbug","convention_language":false,"id":null},{"lang":"Dutch","names":"Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Icterine Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs ictérine","convention_language":true,"id":null},{"lang":"German","names":"Gelbspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerti geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"felosa-icterina","convention_language":false,"id":null},{"lang":"Russian","names":"Zelyonaya Peresmeshka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarcero Icterino","convention_language":true,"id":null},{"lang":"Swedish","names":"Härmsångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. R. 2007. First records of Icterine Warbler \u003Ci\u003EHippolais icterina\u003C/i\u003E for The Gambia and Senegal. Bulletin of the African Bird Club: 14: 72-74.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Catry, P. and Mendes, L. 1998. Red-throated Pipit \u003Ci\u003EAnthus cervinus\u003C/i\u003E and Icterine Warbler \u003Ci\u003EHippolais icterinus\u003C/i\u003E, new to Guinea-Bissau. Malimbus: 20: 123-124.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Barlow, C. R. 2007. First records of Icterine Warbler \u003Ci\u003EHippolais icterina\u003C/i\u003E for The Gambia and Senegal. Bulletin of the African Bird Club: 14: 72-74.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11864,"full_name":"Cettia brunnifrons","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Grey-sided Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle à couronne brune","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11866,"full_name":"Sterna bernsteini","author_year":"Schlegel, 1863","common_names":[{"lang":"English","names":"Chinese Crested Tern, Chinese Crested-tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne d'Orient","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán Chino","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna zimmermanni","author_year":"Reichenow, 1903"},{"full_name":"Thalasseus zimmermanni","author_year":"(Reichenow, 1903)"}],"cms_listings":[],"cms_instruments":[]},{"id":11869,"full_name":"Inia geoffrensis","author_year":"(Blainville, 1817)","common_names":[{"lang":"Dutch","names":"Inia","convention_language":false,"id":null},{"lang":"English","names":"Amazon River Dolphin, Boutu, Boto","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de l'Amazone, Inia","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo","convention_language":true,"id":null},{"lang":"Swedish","names":"boutu, amazondelfin","convention_language":false,"id":null}],"distributions":[{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Yoneda, M. 1984. [An introduction to the mammalian fauna in Bolivia.]. Honyurui Kagaku [Mammalian Science]: 49: 21-40.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Iniidae","genus_name":"Inia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11870,"full_name":"Myadestes townsendi","author_year":"(Audubon, 1838)","common_names":[{"lang":"English","names":"Townsend's Solitaire","convention_language":true,"id":null},{"lang":"French","names":"Solitaire de Townsend","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Myadestes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11871,"full_name":"Egretta gularis","author_year":"(Bosc, 1792)","common_names":[{"lang":"Danish","names":"Revhejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Westelijke Rifreiger","convention_language":false,"id":null},{"lang":"English","names":"Western Reef Heron, Western Reef-egret","convention_language":true,"id":null},{"lang":"French","names":"Aigrette à gorge blanche","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Norton, R. L., White, A. and Dobson, A. 2005. West Indies and Bermuda. North American Birds: 59: 166-169.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea gularis","author_year":"Bosc, 1792"},{"full_name":"Egretta dimorpha","author_year":"Hartert, 1914"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11874,"full_name":"Ficedula zanthopygia","author_year":"(Hay, 1845)","common_names":[{"lang":"English","names":"Yellow-rumped Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à croupion jaune","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11875,"full_name":"Ardeola rufiventris","author_year":"(Sundevall, 1851)","common_names":[{"lang":"English","names":"Rufous-bellied Heron","convention_language":true,"id":null},{"lang":"French","names":"Crabier à ventre roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Garcilla ventrirroja","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardeola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea rufiventris","author_year":"Sundevall, 1851"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11876,"full_name":"Turdus pilaris","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Sjagger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kramsvogel","convention_language":false,"id":null},{"lang":"English","names":"Fieldfare","convention_language":true,"id":null},{"lang":"Finnish","names":"Räkättirastas","convention_language":false,"id":null},{"lang":"French","names":"Grive litorne","convention_language":true,"id":null},{"lang":"German","names":"Wacholderdrossel","convention_language":false,"id":null},{"lang":"Italian","names":"Cesena","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-zornal","convention_language":false,"id":null},{"lang":"Russian","names":"Ryabinnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal Real","convention_language":true,"id":null},{"lang":"Swedish","names":"Bjö rktrast, Björktrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Marchant, S. 1963. Notes on the winter status of certain species in Iraq. Ardea: 51: 237-243.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11877,"full_name":"Aythya nyroca","author_year":"(Güldenstädt, 1770)","common_names":[{"lang":"Czech","names":"Polák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Hvidøjet and","convention_language":false,"id":null},{"lang":"Dutch","names":"Witoogeend","convention_language":false,"id":null},{"lang":"English","names":"Ferruginous Duck, White-eyed Pochard, Ferruginous Pochard","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruskosotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule nyroca","convention_language":true,"id":null},{"lang":"German","names":"Moorente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Cigányréce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta tabaccata","convention_language":false,"id":null},{"lang":"Polish","names":"Podgorza","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-castanho","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón pardo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitögd dykand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Sultanov, E. and Agayeva, N. 2003. The current breeding status of Ferruginous Duck \u003Ci\u003EAythya nyroca\u003C/i\u003E in Azerbaijan. Sandgrouse: 25: 41-49.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Petkov, N. 2000. Population trends of breeding Ferruginous Duck in Bulgaria. Threatened Waterfowl Research Group News: 12: 44-48.; Petkov, N. and Mittev, D. 2001. Ferruginous Ducks at Durankulak Lake complex, Bulgaria, 1995-2001. Threatened Waterfowl Research Group News: 13: 49-55.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Trolliet, B. and Girard, O. 2001. Record counts of Ferruginous Duck in Sahelian Africa. Threatened Waterfowl Research Group News: 13: 56-57.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Talukdar, B. K. and Bhattacharjee, P. C. 2000. Status of wintering Ferruginous Duck in the Brahmaputra valley, Assam, India. Threatened Waterfowl Research Group News: 12: 39-41.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Saporetti, F. 2000. Breeding Ferruginous Duck at Palude Brabbia Regional Reserve, northern Italy. Threatened Waterfowl Research Group News: 12: 42-43.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Davletkeldiev, A.A. (Editor-in-Chief). 2006. Kyrgyz Republic red data book. Second edition. Institute for Biology and Pedology of National Academy of Sciences of Kyrgyz Republic. Bishkek.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Trolliet, B. and Girard, O. 2001. Record counts of Ferruginous Duck in Sahelian Africa. Threatened Waterfowl Research Group News: 13: 56-57.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R. 1968. Beiträge zur avifauna der mongolei teil I. Non-passeriformes. Ergebnisse der Mongolisch- Deutschen Biologischen Expecition seit 1962. Mitt. Zool. Mus. Berlin: 44: 149-292.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11878,"full_name":"Orcaella brevirostris","author_year":"(Owen in Gray, 1866)","common_names":[{"lang":"English","names":"Irrawaddy Dolphin, Snubfin Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Orcelle","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín del Irrawaddy","convention_language":true,"id":null},{"lang":"Swedish","names":"irawaddydelfin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.; Smith, B.D., Diyan, M.A.A., Mansur, R.M., Mansur E.F. and Ahmed B. 2010. Identification and channel characteristics of cetacean hotspots in waterways of the eastern Sundarbans mangrove forest, Bangladesh. Oryx: 44: 241-247.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Baird, I. G. and Beasley, I. L. 2005. Irrawaddy Dolphin \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E in the Cambodian Mekong River: an initial survey. Oryx: 39: 301-310.; Baird, I. G. and Bounhong Mounsouphom. 1994. Irrawaddy Dolphins (\u003Ci\u003EOrcaella brevirostris\u003C/i\u003E) in southern Lao PDR and northeastern Cambodia. Natural History Bulletin of the Siam Society: 42: 159-175.; Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Baird, I. G. and Bounhong Mounsouphom. 1994. Irrawaddy Dolphins (\u003Ci\u003EOrcaella brevirostris\u003C/i\u003E) in southern Lao PDR and northeastern Cambodia. Natural History Bulletin of the Siam Society: 42: 159-175.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Gressitt, J. L. 1970. Biogeography of Laos. Pacific Insects Monograph: 24: 573-626.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Stacey, P. J. and Leatherwood, S. 1997. The Irrawaddy Dolphin, \u003Ci\u003EOrcaella brevirostris\u003C/i\u003E: a summary of current knowledge and recommendations for conservation action. Asian Marine Biology: 14: 195-214.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Orcaella","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11879,"full_name":"Anser brachyrhynchus","author_year":"Baillon, 1834","common_names":[{"lang":"Czech","names":"Husa krátkozobá","convention_language":false,"id":null},{"lang":"Danish","names":"Kortnæbbet Gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Rietgans","convention_language":false,"id":null},{"lang":"English","names":"Pink-footed Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Lyhytnokkahanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie à bec court","convention_language":true,"id":null},{"lang":"German","names":"Kurzschnabelgans","convention_language":false,"id":null},{"lang":"Italian","names":"Oca zamperosee","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-bico-curto, Ganso-de-boco-curto","convention_language":false,"id":null},{"lang":"Swedish","names":"Spetsbergsgås","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anser fabalis brachyrhynchus","author_year":"(Latham, 1787)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11880,"full_name":"Monodon monoceros","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Narwhal, Unicorn Whale","convention_language":true,"id":null},{"lang":"French","names":"Narval","convention_language":true,"id":null},{"lang":"Norwegian","names":"Narhval","convention_language":false,"id":null},{"lang":"Spanish","names":"Narval","convention_language":true,"id":null},{"lang":"Swedish","names":"narval","convention_language":false,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Dietz, R., Heide-Jorgensen, M.P., Richard, P., Orr, J., Laidre, K. and Schmidt, H.C. 2008. Movements of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) from Admiralty Inlet monitored by satellite telemetry. Polar Biology: 31: 1295-1306.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Heide-Jorgensen, M.P., Dietz, R., Laidre, K.L. and Richard, P. 2002. Autumn movements, home ranges, and winter density of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) tagged in Tremblay Sound, Baffin Island. Polar Biology: 25: 331-341.; Hrynyshyn, J. and Sorg A. 2004. Canada's narwhal whale - a species on the edge. Arctic Series - Canadian Marine Environment Protection Society. British Columbia, Canada. ; Marcoux, M., uger-Methe, M. and Humphries, M.M. 2009. Encounter frequencies and grouping patterns of narwhals in Koluktoo Bay, Baffin Island. Polar Biology: 32: 1705-1716.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Born, E.W., Heide-Jorgensen, M.P., Larsen, F. and Martin, A. 1994. Abundance and stock composition of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) in Inglefield Bredning (NW Greenland). Meddelelser om Gradand. BioScience: 39: 51-68.; Heide-Jorgensen, M. and Acquarone, M. 2002. Size and trends of the bowhead whale, beluga and narwhal stocks wintering off west Greenland. NAMMCO Scientific Publications: 4: 191-210.; Heide-Jorgensen, M.P. 2004. Aerial digital photographic surveys of narwhals, \u003Ci\u003EMonodon monoceros\u003C/i\u003E, in Northwest Greenland. Marine Mammal Science: 20: 246-261.; Heide-Jørgensen, M.P., Laidre, K.L., Burt, M.L., Borchers, D.L., Marques, T.A., Hansen, R.G., Rasmussen, M. and Fossette, S. 2010. Abundance of narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) on the hunting grounds in Greenland. Journal of Mammalogy: 91: 1135-1151.; Nielsen, M.R. 2009. Is climate change causing the increasing narwhal (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) catches in Smith Sound, Greenland? Polar Research: 28: 238-245.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mittermeier, R. A. and Roosmalen, M. G. M. van. 1982. Conservation of primates in Surinam. International Zoo Yearbook: 22: 59-68.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Wolkers, H., Lydersen, C., Kovacs, K. M., Burkow, I. and van Bavel, B. 2006. Accumulation, metabolism, and food-chain transfer of chlorinated and brominated contaminants in subadult white whales (\u003Ci\u003EDelphinapterus leucas\u003C/i\u003E) and Narwhals (\u003Ci\u003EMonodon monoceros\u003C/i\u003E) from Svalbard, Norway. \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 50(1): 69–78.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Monodontidae","genus_name":"Monodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11881,"full_name":"Alca torda","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Alka malá","convention_language":false,"id":null},{"lang":"Danish","names":"Alk","convention_language":false,"id":null},{"lang":"Dutch","names":"Alk","convention_language":false,"id":null},{"lang":"English","names":"Razorbill, Razor-billed Auk","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokki","convention_language":false,"id":null},{"lang":"French","names":"Petit Pingouin, Pingouin torda","convention_language":true,"id":null},{"lang":"German","names":"Tordalk","convention_language":false,"id":null},{"lang":"Hungarian","names":"Alka","convention_language":false,"id":null},{"lang":"Italian","names":"Gazza marina","convention_language":false,"id":null},{"lang":"Norwegian","names":"Alke","convention_language":false,"id":null},{"lang":"Polish","names":"Alka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Torda-mergulheira","convention_language":false,"id":null},{"lang":"Russian","names":"Gagarka","convention_language":false,"id":null},{"lang":"Spanish","names":"Alca Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tordmule","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Alca","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11882,"full_name":"Myotis blythii","author_year":"(Tomes, 1857)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu i vogel","convention_language":false,"id":null},{"lang":"Croatian","names":"Oštrouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr východní","convention_language":false,"id":null},{"lang":"Danish","names":"Lille museøre","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine vale vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Lesser Mouse-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Teravkõrv-lendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Hiirenkorvasiippa","convention_language":false,"id":null},{"lang":"French","names":"Petit murin","convention_language":true,"id":null},{"lang":"German","names":"Kleines Mausohr","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hegyesorrú denevér","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Liten musøre","convention_language":false,"id":null},{"lang":"Polish","names":"Nocek ostrouszny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rato-pequeno","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier ostrouchý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago ratonero mediano","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre musöra","convention_language":false,"id":null},{"lang":"Turkish","names":"Fare kukali küçük yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Rakhmatulina, I. K. 1980. [Material on the ecology of bats from Azykhsk Cave.]. Pp. 154-179 in A. P. Kuzyakin and K. K. Panyutin (eds.) [Bats (Chiroptera).]. Nauka, Moscow.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1984. The mammals of the Palaearctic region: a taxonomic review. Supplement. British Museum (Natural History). London.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11883,"full_name":"Phylloscopus collybita","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Gransanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Tjiftjaf","convention_language":false,"id":null},{"lang":"English","names":"Eurasian Chiffchaff, Common Chiffchaff, Chiffchaff","convention_language":true,"id":null},{"lang":"Finnish","names":"Tiltaltti","convention_language":false,"id":null},{"lang":"French","names":"Pouillot véloce","convention_language":true,"id":null},{"lang":"German","names":"Zilpzalp","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csilpcsalpfüzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí piccolo","convention_language":false,"id":null},{"lang":"Polish","names":"Pierwiosnek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Gransångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Püttger-Conradt, A. 2002. A record of Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E in Kinshasa, Congo. Die Vogelwelt: 123: 109.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Bara, T. 2002. Bird notes from Lebanon, including two new species. Sandgrouse: 24: 44-45.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Phylloscopus brehmii","author_year":"(Homeyer, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11884,"full_name":"Glareola cinerea","author_year":"Fraser, 1843","common_names":[{"lang":"English","names":"Grey Pratincole","convention_language":true,"id":null},{"lang":"French","names":"Glaréole grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Canastera gris","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Glareola","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11885,"full_name":"Hirundo atrocaerulea","author_year":"Sundevall, 1850","common_names":[{"lang":"English","names":"Blue Swallow","convention_language":true,"id":null},{"lang":"French","names":"Hirondelle bleue","convention_language":true,"id":null}],"distributions":[{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Hirundinidae","genus_name":"Hirundo","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11886,"full_name":"Rousettus aegyptiacus","author_year":"(É. Geoffroy, 1810)","common_names":[{"lang":"English","names":"Egyptian fruit bat, Egyptian Rousette","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Feiler, A. 1986. Zur Faunistik und Biometrie angolanischer Fledermause (Mammalia, Mega- et Microchiroptera). Zoologische Abhandlungen st. Mus. Tierk., Dresden: 42: 65-77.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Kock, D. 1981. Zur Chiropteran-fauna von Burundi (Mammalia). Senckenbergiana Biologica: 61: 329-336.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J., Harrison, D. L. and Granjon, L. 1991. Bats (Chiroptera) from the Mayombe and lower Kouilou (with a checklist for Congo). Tauraco Research Report: 4: 251-263.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Cabrera, A. 1929. Catalogo descriptivo de los mamiferos de la Guinea Espanola. Memorias de la Sociedad Espagnol de Historia Natural, Madrid: 16: 1-121.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Lavrenchenko, L. A., Kruskop, S. V. and Morozov, P. N. 2004. Notes on the bats (Chiroptera) collected by the Joint Ethiopian-Russian Biological Expedition, with remarks on their systematics, distribution, and ecology. Bonner Zoologische Beiträge: 52: 127-147.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Fahr, J. and Ebigbo, N. M. 2003. A conservation assessment of the bats of the Simandou Range, Guinea, with the first record of \u003Ci\u003EMyotis welwitschii\u003C/i\u003E (Gray, 1866) from West Africa. Acta Chiropterologica: 5(1): 125-141; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Roche, J. 1971. Recherches mammalogiques en Guinea forestière. Bulletin du Muséum National d'Histoire Naturelle: 16: 737-781.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Eid, E., and Dhesat, M. 2007. Small mammals monitoring program at mujib nature reserve. Royal Society for the Conservation of Nature . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Qumsiyeh, M. B., Schlitter, D. A. and Disi, A. M. 1986. New records and karyotypes of small mammals from Jordan. Zeitschrift Säugetierkunde: 51: 139-146.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Aggundey, I. R. and Schlitter, D. A. 1984. Annotated checklist of the mammals of Kenya. I. Chiroptera. Annals of Carnegie Museum: 53: 119-161.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Koopman, K. F., Kofron, C. P. and Chapman, A. 1995. The bats of Liberia: systematics, ecology, and distribution. American Museum Novitates: 3148: 24.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Bergmans, W. and Van Strien, N. 2004. Systematic notes on a collection of bats from Malawi. I. Megachiroptera: Epomophorinae and Rousettinae (Mammalia, Chiroptera). Acta Chiropterologica: 6: 249-268.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Baeten, B. B., van Cakenberghe, V. and de Vree, F. 1984. An annotated inventory of a collection of bats from Rwanda. Revue de Zoologie Africaines: 98: 183-196.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Feiler, A. 1988. Die Säugetiere der inseln im Golf von Guinea. Zoologische Abhandlungen staatliche Museum für Tierkunde Dresden: 44: 83-88.; Juste, J. and Ibáñez, C. 1993. Geographic variation and taxonomy of \u003Ci\u003ERousettus aegyptiacus\u003C/i\u003E (Mammalia: Megachiroptera) in the islands of the Gulf of Guinea. Zoological Journal of the Linnean Society: 107: 117-129.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Rosevear, D. R. 1965. The bats of West Africa. British Museum (Natural History). London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Cockle, A., Kock, D., Stublefield, L., Howell, K. M. and Burgess, N. D. 1998. Bat assemblages in Tanzanian coastal forests. Mammalia: 62: 53-68.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mickleburgh, S. P., Hutson, A. M., and Racey, P. A (comps.) 1992. Old World fruit bats: an action plan for their conservation. IUCN. Gland, Switzerland.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Pteropodidae","genus_name":"Rousettus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Rousettus arabicus","author_year":"Anderson \u0026 de Winton, 1902"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":11887,"full_name":"Phylloscopus occipitalis","author_year":"(Blyth, 1845)","common_names":[{"lang":"English","names":"Western Crowned-Warbler, Western Crowned Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11888,"full_name":"Uria lomvia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Alkoun tlustozobý","convention_language":false,"id":null},{"lang":"Danish","names":"Polarlomvie","convention_language":false,"id":null},{"lang":"Dutch","names":"Dikbekzeekoet","convention_language":false,"id":null},{"lang":"English","names":"Thick-billed Murre, Brünnich's Guillemot","convention_language":true,"id":null},{"lang":"Finnish","names":"Pohjankiisla","convention_language":false,"id":null},{"lang":"French","names":"Guillemot de Brünnich","convention_language":true,"id":null},{"lang":"German","names":"Dickschnabellumme","convention_language":false,"id":null},{"lang":"Italian","names":"Uria di Brünnich","convention_language":false,"id":null},{"lang":"Polish","names":"Nurzyk polarny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Arau de Brünnich","convention_language":false,"id":null},{"lang":"Russian","names":"Tolstoklyuvaya Kayra","convention_language":false,"id":null},{"lang":"Spanish","names":"Arao de Brünnich","convention_language":true,"id":null},{"lang":"Swedish","names":"Spetsbergsgrissla","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Mullarney, K. 1988. Brünnich's Guillemot in County Wexford - an addition to the Irish list. Irish Birds: 3: 601-605.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Uria","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Alca lomvia","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11889,"full_name":"Phylloscopus proregulus","author_year":"(Pallas, 1811)","common_names":[{"lang":"Danish","names":"Fuglekongesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Pallas' Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Lemon-rumped Warbler, Pallas's Leaf-Warbler, Pallas's Leaf Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Pallas","convention_language":true,"id":null},{"lang":"Russian","names":"Korolkovaya Penochka","convention_language":false,"id":null},{"lang":"Swedish","names":"kungsfågelsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bellio, M. G., Pressanin, R. and Parodi, R. 1997. First record of Pallas' Warbler (\u003Ci\u003EPhylloscopus proregulus\u003C/i\u003E) in Italy. Fauna: 4: 133-134.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11890,"full_name":"Oxyura jamaicensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Czech","names":"Kachnice kaštanová","convention_language":false,"id":null},{"lang":"Danish","names":"Amerikansk Skarveand","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse Stekelstaarteend, Rosse Stekelstaart","convention_language":false,"id":null},{"lang":"English","names":"Ruddy Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Kupariviuhkasorsa","convention_language":false,"id":null},{"lang":"French","names":"Erismature rousse, Érismature rousse, Érismature roux","convention_language":true,"id":null},{"lang":"German","names":"Schwarzkopf-Ruderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Feketefejú halcsontfarkú réce","convention_language":false,"id":null},{"lang":"Italian","names":"Gobbo rugginoso della Giamaica","convention_language":false,"id":null},{"lang":"Polish","names":"Sterniczka jamajska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-rabo-alçado-americano","convention_language":false,"id":null},{"lang":"Spanish","names":"Malvasía Canela","convention_language":true,"id":null},{"lang":"Swedish","names":"Amerikansk kopparand","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"Brown, A. C. and Collier, N. 2004. A new breeding population of \u003Ci\u003EOxyura jamaicensis\u003C/i\u003E (Ruddy Duck) on St. Martin, Lesser Antilles. Caribbean Journal of Science: 40: 259-263.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A., Duzont, F. and Ramsahai, A. 2005. Cinq espèces d'oiseaux nicheurs récemment découvertes en Guadeloupe (Antilles françaises). Alauda: 73: 69-70.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"introduced","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Norway","country":"Norway","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,introduced (?)","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Oxyura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas jamaicensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11891,"full_name":"Phocoena dioptrica","author_year":"Lahille, 1912","common_names":[{"lang":"Dutch","names":"Brilbruinvis","convention_language":false,"id":null},{"lang":"English","names":"Spectacled Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin de Lahille, Marsouin à lunettes","convention_language":true,"id":null},{"lang":"Spanish","names":"Marsopa de anteojo","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögontumlare","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Goodall, R. N. P. and Cameron, L. S. 1979. \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E, una nueva especie para aguas chilenas. Revista Mus. argent. Cienc. nat. Bernardino Rivadavia Inst. nac. Invest. Cienc. nat. (Zool.): 12: 143-152.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. 1977. Spectacled Porpoise, \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E, new to the subantarctic Pacific Ocean. New Zealand Journal of Marine and Freshwater Research: 11: 401-406.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Brownell, R. L. Jr and Clapham, P. J. 1999. Spectacled Porpoise \u003Ci\u003EPhocoena dioptrica\u003C/i\u003E Lahille, 1912. In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11892,"full_name":"Sporophila hypochroma","author_year":"Todd, 1915","common_names":[{"lang":"English","names":"Grey-and-chestnut Seedeater, Rufous-rumped Seedeater","convention_language":true,"id":null},{"lang":"French","names":"Sporophile à croupion roux","convention_language":true,"id":null},{"lang":"German","names":"Rotbürzelpfäffchen","convention_language":false,"id":null},{"lang":"Swedish","names":"kastanjekindad frösparv","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S., Rocha, G. and Aldabe, J. 2006. The occurrence of \u003Ci\u003ESporophila hypochroma\u003C/i\u003E and \u003Ci\u003ES. hypoxantha\u003C/i\u003E in Uruguay. Bulletin of the British Ornithologists' Club: 126: 45-49.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Thraupidae","genus_name":"Sporophila","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11893,"full_name":"Phylloscopus ijimae","author_year":"(Stejneger, 1882)","common_names":[{"lang":"English","names":"Ijima's Leaf-warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot d'Ijima","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11894,"full_name":"Aix galericulata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Mandarinand","convention_language":false,"id":null},{"lang":"Dutch","names":"Mandarijneend","convention_language":false,"id":null},{"lang":"English","names":"Mandarin, Mandarin Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Mandariinisorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard mandarin","convention_language":true,"id":null},{"lang":"German","names":"Mandarinente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mandarinréce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra mandarina","convention_language":false,"id":null},{"lang":"Polish","names":"Mandarynka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-mandarim","convention_language":false,"id":null},{"lang":"Russian","names":"Mandarinka","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato Mandarín","convention_language":true,"id":null},{"lang":"Swedish","names":"påfågelkalkon, Mandarinand","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced,introduced (?)","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas galericulata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11895,"full_name":"Alectrurus tricolor","author_year":"(Vieillot, 1816)","common_names":[{"lang":"English","names":"Cock-tailed Tyrant","convention_language":true,"id":null},{"lang":"French","names":"Moucherolle petit-coq","convention_language":true,"id":null},{"lang":"Spanish","names":"Yetapá chico","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Parker, T. A. III, Castillo U., A., Gell-mann, M. and Rocha, O. O. 1991. Records of new and unusual birds from northern Bolivia. Bulletin of the British Ornithologists' Club: 111: 120-138.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Alectrurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":11896,"full_name":"Limosa fedoa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Marbled Godwit","convention_language":true,"id":null},{"lang":"French","names":"Barge marbrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Aguja canela","convention_language":true,"id":null}],"distributions":[{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Senner, N. R. 2006. First record of Long-billed Curlew \u003Ci\u003ENumenius americanus\u003C/i\u003E in Peru and other observations of Nearctic waders at the Virilla estuary. Cotinga: 26: 39-42.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax fedoa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11897,"full_name":"Fulica cristata","author_year":"Gmelin, 1789","common_names":[{"lang":"Danish","names":"Kamblishøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Knobbelmeerkoet","convention_language":false,"id":null},{"lang":"English","names":"Crested Coot, Red-knobbed Coot","convention_language":true,"id":null},{"lang":"Finnish","names":"Syylänokikana","convention_language":false,"id":null},{"lang":"French","names":"Foulque caronculée, Foulque à crête","convention_language":true,"id":null},{"lang":"German","names":"Kammbläßhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös szárcsa","convention_language":false,"id":null},{"lang":"Italian","names":"Folaga cornuta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galeirão-de-crista","convention_language":false,"id":null},{"lang":"Spanish","names":"Focha moruna, Focha cornuda","convention_language":true,"id":null},{"lang":"Swedish","names":"Kamsothöna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gustad, J. R. and Schjolberg, K. 2002. The first Red-knobbed Coots \u003Ci\u003EFulica cristata\u003C/i\u003E in Oman and the Middle East. Sandgrouse: 24: 65-67.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Fulica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11898,"full_name":"Platalea leucorodia","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Kolpík bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Skestork","convention_language":false,"id":null},{"lang":"Dutch","names":"Lepelaar","convention_language":false,"id":null},{"lang":"English","names":"Spoonbill, Eurasian Spoonbill, White Spoonbill","convention_language":true,"id":null},{"lang":"Finnish","names":"Kapustahaikara","convention_language":false,"id":null},{"lang":"French","names":"Spatule blanche","convention_language":true,"id":null},{"lang":"German","names":"Löffler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kanalasgém","convention_language":false,"id":null},{"lang":"Italian","names":"Spatola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Colhereiro","convention_language":false,"id":null},{"lang":"Spanish","names":"Espátula, Espátula blanca, Espátula común","convention_language":true,"id":null},{"lang":"Swedish","names":"vanlig skedstork, Skedstork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (3). Bulletin of the British Ornithologists' Club: 198: 112-120.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marion, L. and Marion, P. 1982. [The Spoonbill \u003Ci\u003EPlatalea leucorodia\u003C/i\u003E nests at the Lac de Grand-Lieu, France.]. Alauda: 50: 241-249.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jairaj, A. P. and Sanjeev Kumar, V. K. 1990. Occurrence of the Spoonbill \u003Ci\u003EPlatalea leucorodia\u003C/i\u003E in Kerala. Journal of the Bombay Natural History Society: 87: 289-290.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan, E., Al-Nasrallah, K. and Gregory, G. 2004. Bubiyan Island: a rich Kuwait avifauna. Sandgrouse: 26: 23-26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S. 1993. Status of storks, ibises and spoonbills in Nepal. Specialist Group on Storks, Ibises and Spoonbills Newsletter: 6: 6-8.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1996. Bird list of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project WWF/EC. Bach Ma (Viet Nam). 59; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11899,"full_name":"Melanitta perspicillata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Brilleand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilzeeëend","convention_language":false,"id":null},{"lang":"English","names":"Surf Scoter","convention_language":true,"id":null},{"lang":"French","names":"Macreuse à lunettes, Macreuse à front blanc","convention_language":true,"id":null},{"lang":"Polish","names":"Uhla pstrodzioba","convention_language":false,"id":null},{"lang":"Spanish","names":"Negrón careto","convention_language":true,"id":null},{"lang":"Swedish","names":"vitnackad svärta","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas perspicillata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11901,"full_name":"Thalassarche impavida","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Campbell Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea melanophris","author_year":"Temminck, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea melanophris\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11902,"full_name":"Phaethon rubricauda","author_year":"Boddaert, 1783","common_names":[{"lang":"English","names":"Red-tailed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à brins rouges","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabijunco colirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Couto, G. S., Interaminense, L. J. L. and Morette, M. E. 2001. First record of Red-tailed Tropicbird (\u003Ci\u003EPhaethon rubricauda\u003C/i\u003E) in Brazil. Nattereria: 2: 24-25.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hogsas, T. E. 1999. An observation of Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E in Tacna, Peru. Cotinga: 12: 75.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S. 1990. Notes on Philippine birds, 16. First records of the Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E and Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E from the Philippines. Bulletin of the British Ornithologists' Club: 110: 107-109.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11903,"full_name":"Anser caerulescens","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Snegås","convention_language":false,"id":null},{"lang":"Dutch","names":"Sneeuwgans","convention_language":false,"id":null},{"lang":"English","names":"Snow Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie des neiges","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar nival","convention_language":true,"id":null},{"lang":"Swedish","names":"snögås, Spetsbergsgås","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas caerulescens","author_year":"Linnaeus, 1758"},{"full_name":"Chen caerulescens","author_year":"(Linnaeus, 1758)"},{"full_name":"Chen hyperboreus","author_year":"(Pallas, 1769)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11904,"full_name":"Tringa guttifer","author_year":"(Nordmann, 1835)","common_names":[{"lang":"Danish","names":"Nordmanns klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Gevlekte groenpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Spotted Greenshank, Nordmann's Greenshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Täpläviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier tacheté, Chevalier à gouttelette","convention_language":true,"id":null},{"lang":"German","names":"Sachalin-Grnschenkel, Tüpfel-Grünschenkel","convention_language":false,"id":null},{"lang":"Italian","names":"Piro macchiato","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe manchado, Archibebe moteado","convention_language":true,"id":null},{"lang":"Swedish","names":"ochotsk snäppa, fläckgluttsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Kennerley, P. R. and Bakewell, D. N. 1987. Nordmann's Greenshank in Hong Kong: a review of the identification and status. Hong Kong Bird Report: 1986: 83-100.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11906,"full_name":"Coturnix coturnix","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Kwartel","convention_language":false,"id":null},{"lang":"English","names":"Common Quail, Quail, Scaled Quail (Blue)","convention_language":true,"id":null},{"lang":"Finnish","names":"Viiriäinen","convention_language":false,"id":null},{"lang":"French","names":"Caille des blés","convention_language":true,"id":null},{"lang":"German","names":"Wachtel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fürj","convention_language":false,"id":null},{"lang":"Italian","names":"Quaglia","convention_language":false,"id":null},{"lang":"Polish","names":"Przepiórka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Codorniz","convention_language":false,"id":null},{"lang":"Russian","names":"Perepel","convention_language":false,"id":null},{"lang":"Spanish","names":"Codorniz, Codorniz Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Vaktel","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Clark, R. J. and Mikkola, H. 1989. A preliminary revision of threatened and near-threatened nocturnal birds of prey of the world. In: Meyburg, B.-U. and Chancellor, R. D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"introduced (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct,introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Galliformes","class_name":"Aves","family_name":"Phasianidae","genus_name":"Coturnix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11907,"full_name":"Uncia uncia","author_year":"(Schreber, 1775)","common_names":[{"lang":"Danish","names":"sneleopard","convention_language":false,"id":null},{"lang":"Dutch","names":"Sneeuwpanter","convention_language":false,"id":null},{"lang":"English","names":"Snow Leopard, Ounce","convention_language":true,"id":null},{"lang":"Finnish","names":"Lumileopardi","convention_language":false,"id":null},{"lang":"French","names":"Léopard des neiges, Once, Irbis, Panthère des neiges","convention_language":true,"id":null},{"lang":"German","names":"Schneeleopard","convention_language":false,"id":null},{"lang":"Italian","names":"Leopardo delle Irbis","convention_language":false,"id":null},{"lang":"Spanish","names":"Pantera de la nieves, Leopardo de las nieves, Leopardo nival","convention_language":true,"id":null},{"lang":"Swedish","names":"snöleopard","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Naumann, C. and Niethammer, J. 1973. Zur Saügetierfauna des afghanischen Pamir und des Wakhan. Bonner Zoologische Beitrage: 24: 237-248.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Gee, E. P. 1967. Occurrence of the Snow Leopard, \u003Ci\u003EPanthera uncia\u003C/i\u003E (Schreber), in Bhutan. Journal of the Bombay Natural History Society: 64: 552-553.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Lu, Hou-ji. 1990. Cat problems in China. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 10.; Schaller, G. 1988. Snow Leopard in China. Cat News: 9: 11.; Schaller, G. B., Li Hong Talipu, Lu Hua, Ren Junrang, Qiu Mingjiang and Wang Haibin. 1987. Status of large mammals in the Taxkorgan Reserve, Xinjiang, China. Biological Conservation: 42: 53-71.; Seidensticker, J., Eisenberg, J. F. and Simons, R. 1984. The Tangjiahe, Wanglang, and Fengtongzhai Giant Panda reserves and biological conservation in the People's Republic of China. Biological Conservation: 28: 217-251.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Fox, J. L., Sinha, S. P., Chundawat, S. and Das, P. V. 1991. Status of the Snow Leopard \u003Ci\u003EPanthera uncia\u003C/i\u003E in North west India. Biological Conservation: 55: 283-298.; Green, M. J. B. 1982. Status, distribution and conservation of the Snow Leopard in north India. International Pedigree Book of Snow Leopards: 3: 6-10.; Osborne, B. C., Mallon, D. P. and Fraser, S. J. R. 1983. Ladakh, threatened stronghold of rare Himalayan mammals. Oryx: 17: 182-189.; Sathyakumar, S., Bashir, T., Bhattacharya, T. and Poudyal, K. 2011. Assessing mammal distribution and abundance in intricate eastern Himalayan habitats of Khangchendzonga, Sikkim, India. Mammalia: 75: 257-268.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Mallon, D. P. 1985. The mammals of the Mongolian People's Republic. Mammal Review: 15: 71-102.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rabinowitz, A. and Saw Tun Khaing. 1998. Status of selected mammal species in north Myanmar. Oryx: 32: 201-208.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Jackson, P. and Ahlborn, G. 1988. A radio-telemetry study of the Snow Leopard (\u003Ci\u003EPanthera uncia\u003C/i\u003E) in West Nepal. Tigerpaper: 15: 1-14.; Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Hussain, S. 2003. The status of the snow leopard in Pakistan and its conflict with local farmers. Oryx: 37: 26-33.; Mallon, D. 1988. Snow Leopards in northern Hunza. Cat News: 9: 12.; Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Uncia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPanthera uncia\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11908,"full_name":"Thalassarche steadi","author_year":"Falla, 1933","common_names":[{"lang":"English","names":"White-capped Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11909,"full_name":"Thalassornis leuconotus","author_year":"Eyton, 1838","common_names":[{"lang":"English","names":"White-backed Duck","convention_language":true,"id":null},{"lang":"French","names":"Dendrocygne à dos blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato dorsiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Bouet, G. 1914. Liste des oiseaux recueillis ou observés au Dahomey de 1908 à 1911. Rev. fr. Orn.: 3: 265-269, 305-308.; Cheke, R. A. 1996. Historical records of birds from the Republic of Benin. Malimbus: 18: 58-59.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Thalassornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11910,"full_name":"Ziphius cavirostris","author_year":"G. Cuvier, 1823","common_names":[{"lang":"English","names":"Goose-beaked Whale, Cuvier's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Ziphius","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de Cuvier, Ziphio de Cuvier","convention_language":true,"id":null},{"lang":"Swedish","names":"Cuviers val, småhuvudval","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Caldwell, D. K. 1971. Cuvier's Beaked Whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E from Barbados. Bulletin Southern California Academy of Science: 70: 52-53.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Robineau, D. 1975. Échouage d'un \u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier, 1823 (Cetacea, Hyperoodontidae) dans l'archipel des Comores (Océan Indien). Mammalia: 39: 513-515.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Lastavel, A. 1980. Une baleine à bec (\u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier 1823) s'échoue à Dunkerque (1er échouage de l'espèce sur les côtes françaises de la Manche. Héron: 1980: 126-129.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Dammerman, K. W. 1926. \u003Ci\u003EZiphius cavirostris\u003C/i\u003E in the Indo-Australian Archipelago. Treubia: 8: 336-339.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Goosebeaked whale, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, and rough-toothed dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E G. Cuvier, in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 203-204.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; van Bree, P. J. H. and Kristensen, I. 1974. On the intriguing stranding of four Cuvier's beaked whales, \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, 1823, on the Lesser Antillean island of Bonaire. Bijdragen Dierk.: 44: 235-238.; van Bree, P. J. H., Creutzberg, F. and Kristensen, I. 1973. On strandings of Cuvier's whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier, 1823, on the Lesser Antillean Islands of Sint Maarten and Curaçao. Lutra: 15: 6-8.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Fordyce, R. E., Mattlia, R. H. and Wilson, G. J. 1979. Stranding of a Cuvier's Beaked Whale \u003Ci\u003EZiphius cavirostris\u003C/i\u003E Cuvier, 1823, at New Brighton, New Zealand. Mauri Ora: 7: 73-82.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Caldwell, D., Caldwell, M., Rathjen, W. and Sullivan, J. 1974. Cetaceans from the lesser Antillean island of St Vincent. Fishery Bull. U. S. natn. ocean. atmos. Admn: 69: 303-312.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Wang, J. Y., Chou, L. S., Yao, C. J., Neimanis, A. S. and Chou, W. H. 1995. Records of Cuvier's beaked whales (\u003Ci\u003EZiphius cavirostris\u003C/i\u003E) from Taiwan, Republic of China. Asian Marine Biology: 12: 111-118.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Casinos, A. 1981. \u003Ci\u003EZiphius cavirostris\u003C/i\u003E G. Cuvier 1823 (Cetacea, Hyperoodontidae) en Isla Margarita (Venezuela). Publicaciones Dep. Zool. Univ. Barcelona: 6: 61-63.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Ziphius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"Mediterranean population only","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11912,"full_name":"Numenius madagascariensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Far Eastern Curlew, Eastern Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis de Sibérie","convention_language":true,"id":null},{"lang":"Spanish","names":"Zarapito Siberiano","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Watling, D. 1982. Birds of Fiji, Tonga and Samoa. Millwood Press. Wellington.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Scolopax madagascariensis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2012","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11913,"full_name":"Regulus satrapa","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Golden-crowned Kinglet","convention_language":true,"id":null},{"lang":"French","names":"Roitelet à couronne dorée","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11914,"full_name":"Phylloscopus maculipennis","author_year":"(Blyth, 1867)","common_names":[{"lang":"English","names":"Ash-throated Warbler, Ashy-throated Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à face grise","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11917,"full_name":"Hodgsonius phaenicuroides","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"White-bellied Redstart","convention_language":true,"id":null},{"lang":"French","names":"Bradybate à queue rouge","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Hodgsonius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11918,"full_name":"Phalacrocorax carbo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kormorán velký","convention_language":false,"id":null},{"lang":"Danish","names":"Skarv","convention_language":false,"id":null},{"lang":"Dutch","names":"Aalscholver","convention_language":false,"id":null},{"lang":"English","names":"Great Cormorant","convention_language":true,"id":null},{"lang":"Finnish","names":"Merimetso","convention_language":false,"id":null},{"lang":"French","names":"Grand Cormoran","convention_language":true,"id":null},{"lang":"German","names":"Kormoran","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kárókatona","convention_language":false,"id":null},{"lang":"Italian","names":"Marangone","convention_language":false,"id":null},{"lang":"Polish","names":"Kormoran","convention_language":false,"id":null},{"lang":"Portuguese","names":"Corvo-marinho-de-faces-brancas, Corvo-marinho-de-faces brancas","convention_language":false,"id":null},{"lang":"Russian","names":"Bolshoy Baklan","convention_language":false,"id":null},{"lang":"Spanish","names":"Cormorán Grande","convention_language":true,"id":null},{"lang":"Swedish","names":"Storskarv","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1966. Colonies reproductrices de Spatules africaines, Ibis sacré et Laridés dans l'archipel des Bijagos (Guinée portugaise). Alauda: 34: 257-278.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Gibbs, D. 1996. Notes on Solomon Island birds. Bulletin of the British Ornithologists' Club: 116: 18-25.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus carbo","author_year":"Linnaeus, 1758"},{"full_name":"Phalacrocorax lucidus","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11919,"full_name":"Larus canus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Stormmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Stormmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Mew Gull, Common Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Kalalokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland cendré","convention_language":true,"id":null},{"lang":"German","names":"Sturmmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Viharsirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gavina","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa pospolita","convention_language":false,"id":null},{"lang":"Portuguese","names":"Alcatraz-pardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Cana","convention_language":true,"id":null},{"lang":"Swedish","names":"Fiskmås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Carey, G. J. and Kennerley, P. R. 1996. 'Mew' Gull: the first record for Hong Kong and the identification and systematics of Common Gull forms in East Asia. Hong Kong Bird Report 1996: 134-149.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"DEG. 2003. Regional Touristic Masterplan Ulcinj. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Yésou, P. and Triplet, P. 1995. The Common Gull \u003Ci\u003ELarus canus\u003C/i\u003E in Senegal. Malimbus: 17: 26-27.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11920,"full_name":"Burhinus senegalensis","author_year":"(Swainson, 1837)","common_names":[{"lang":"Danish","names":"Senegal Triel","convention_language":false,"id":null},{"lang":"English","names":"Senegal Thick-knee","convention_language":true,"id":null},{"lang":"French","names":"OEdicnème du Sénégal","convention_language":true,"id":null},{"lang":"Spanish","names":"Alcaraván Senegalés","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Burhinidae","genus_name":"Burhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Burhinus senegalensis inornatus","author_year":"(Swainson, 1837)"},{"full_name":"Burhinus senegalensis senegalensis","author_year":"(Swainson, 1837)"},{"full_name":"Oedicnemus senegalensis","author_year":"Swainson, 1837"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11922,"full_name":"Monticola solitarius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Skalník modrý","convention_language":false,"id":null},{"lang":"Danish","names":"Blådrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwe Rotslijster","convention_language":false,"id":null},{"lang":"English","names":"Blue Rock Thrush, Blue Rock-Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Sinirastas","convention_language":false,"id":null},{"lang":"French","names":"Monticole bleu, Monticole merle-bleu","convention_language":true,"id":null},{"lang":"German","names":"Blaumerle","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kék kövirigó","convention_language":false,"id":null},{"lang":"Italian","names":"Passero solitario","convention_language":false,"id":null},{"lang":"Polish","names":"Modrak","convention_language":false,"id":null},{"lang":"Portuguese","names":"Melro-azul","convention_language":false,"id":null},{"lang":"Russian","names":"Siny Kamenny Drozd","convention_language":false,"id":null},{"lang":"Spanish","names":"Roquero Solitario","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåtrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Carter, M. and Shaw, R. 1999. Blue Rock-Thrush \u003Ci\u003EMonticola solitarius\u003C/i\u003E: first record for Australia. Aust. Bird Watcher: 18: 101-105.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Hipkin, P. R. 2003. Breeding of Blue Rock-Thrush \u003Ci\u003EMonticola solitarius\u003C/i\u003E at Lake Toba, Sumatra. Kukila: 12: 66.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Harvancík, S. and Snírer, L. 1997. [First documented occurrence of Blue Rock Thrush (Monticola solitarius) in Slovakia.]. Tichodroma: 10: 164-167.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11923,"full_name":"Myotis hajastanicus","author_year":"Argyropulo, 1939","common_names":[{"lang":"English","names":"Armenian Myotis, Hajastan Myotis","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11924,"full_name":"Locustella pleskei","author_year":"Taczanowski, 1889","common_names":[{"lang":"English","names":"Pleske's Grasshopper-Warbler, Pleske's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Locustelle de Pleske","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11925,"full_name":"Gavia adamsii","author_year":"(Gray, 1859)","common_names":[{"lang":"Danish","names":"Hvidnæbbet Lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Geelsnavelduiker","convention_language":false,"id":null},{"lang":"English","names":"Yellow-billed Loon, White-billed Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Jääkuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon à bec blanc","convention_language":true,"id":null},{"lang":"German","names":"Gelbschnabel-Eistaucher","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga beccogiallo","convention_language":false,"id":null},{"lang":"Polish","names":"Nur bialodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-de-bico-branco","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo de Adams","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitnäbbad islom, Svartnäbbad islom","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus adamsii","author_year":"G. R. Gray, 1859"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11927,"full_name":"Pterodroma atrata","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Henderson Petrel","convention_language":true,"id":null},{"lang":"Spanish","names":"Fardela de Henderson","convention_language":true,"id":null}],"distributions":[{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11929,"full_name":"Xema sabini","author_year":"(J. Sabine, 1819)","common_names":[{"lang":"Dutch","names":"Vorkstaartmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Sabine's Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Sabine","convention_language":true,"id":null},{"lang":"Russian","names":"Vilokhvostaya Chayka","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota de Sabine","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Dobson, A. 1998. Fall bird news. Bermuda Audubon Society Newsletter: 9: 5.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fry, C. H. 1965. Sabine's Gull \u003Ci\u003EXema sabini\u003C/i\u003E (Sabine) off West Africa. Bull. Nigerian Orn. Soc.: 6: 47-48.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Quinn, J. L. and Kokorev, Y. 1999. A westward extension to the known breeding range of Sabine's Gull \u003Ci\u003ELarus sabini\u003C/i\u003E in Siberia. Bulletin if the British Ornithologists's Club: 119: 206-208.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Xema","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus sabini","author_year":"J. Sabine, 1819"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11930,"full_name":"Gallinula chloropus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Slípka zelenonohá","convention_language":false,"id":null},{"lang":"Danish","names":"Grønbenet Rørhøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Moorhen, Common Moorhen","convention_language":true,"id":null},{"lang":"Finnish","names":"Liejukana","convention_language":false,"id":null},{"lang":"French","names":"Poule d'eau, Gallinule poule-d'eau","convention_language":true,"id":null},{"lang":"German","names":"Teichhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vízityúk","convention_language":false,"id":null},{"lang":"Italian","names":"Gallinella d'acqua","convention_language":false,"id":null},{"lang":"Polish","names":"Kokoszka (kurka wodna, kokoszka wodna), Kokoszka wodna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galinha-d'água","convention_language":false,"id":null},{"lang":"Russian","names":"Kamyshnitsa","convention_language":false,"id":null},{"lang":"Spanish","names":"Gallineta Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Rörhöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Janni, O. 2004. More distributional data on Ecuadorian birds. Cotinga: 21: 25-26.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"introduced","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Gallinula","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Fulica chloropus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11931,"full_name":"Myotis nipalensis","author_year":"(Dobson, 1871)","common_names":[{"lang":"English","names":"Nepalese Myotis, Asian Whiskered Bat","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J., Tin Nwe, Si Si Hla Bu, Khin Mie Mie, Khin Maung Swe, Nyo Nyo, Aye Aye Khaing, Nu Nu Aye, Yin Yin Toke, Naing Naing Aung, et al. 2005. A review of the genera \u003Ci\u003EMyotis\u003C/i\u003E, \u003Ci\u003EIa\u003C/i\u003E, \u003Ci\u003EPipistrellus\u003C/i\u003E, \u003Ci\u003EHypsugo\u003C/i\u003E, and \u003Ci\u003EArielulus\u003C/i\u003E (Chiroptera: Vespertilionidae) from Myanmar (Burma), including three species new to the country. Acta Chiropterologica: 7: 205-236.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Dong Ho Yoo and Myung Hee Yoon. 1992. A karyotypic study on six Korean vespertilionid bats. Korean Journal of Zoology: 33: 489-496.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11932,"full_name":"Phylloscopus borealis","author_year":"(Blasius, 1858)","common_names":[{"lang":"Danish","names":"Nordsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Arctic Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Lapinuunilintu","convention_language":false,"id":null},{"lang":"French","names":"Pouillot boréal","convention_language":true,"id":null},{"lang":"German","names":"Wanderlaubsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Északi füzike","convention_language":false,"id":null},{"lang":"Italian","names":"Luí boreale, Luí boreale","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-boreal","convention_language":false,"id":null},{"lang":"Spanish","names":"Mosquitero Boreal","convention_language":true,"id":null},{"lang":"Swedish","names":"Nordsångare","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume One. http://users.bigpond.net.au/palliser/barc/vol1.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11933,"full_name":"Ixobrychus minutus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Dværghejre","convention_language":false,"id":null},{"lang":"Dutch","names":"Woudaapje","convention_language":false,"id":null},{"lang":"English","names":"Common Little Bittern, Little Bittern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuhaikara","convention_language":false,"id":null},{"lang":"French","names":"Blongios nain","convention_language":true,"id":null},{"lang":"German","names":"Zwergdommel, Zwergreiher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Törpegém","convention_language":false,"id":null},{"lang":"Italian","names":"Tarabusino","convention_language":false,"id":null},{"lang":"Polish","names":"baczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garça-pequena","convention_language":false,"id":null},{"lang":"Spanish","names":"Avetorillo Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Dvärgrördrom","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"extinct,extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ixobrychus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea minuta","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11934,"full_name":"Turdus albocinctus","author_year":"Royle, 1840","common_names":[{"lang":"English","names":"White-collared Blackbird","convention_language":true,"id":null},{"lang":"French","names":"Merle à collier blanc","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11935,"full_name":"Branta ruficollis","author_year":"(Pallas, 1769)","common_names":[{"lang":"Danish","names":"Rødhalset gås","convention_language":false,"id":null},{"lang":"Dutch","names":"Roodhalsgans","convention_language":false,"id":null},{"lang":"English","names":"Red-breasted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Punakaulahanhi","convention_language":false,"id":null},{"lang":"French","names":"Bernache à cou roux","convention_language":true,"id":null},{"lang":"German","names":"Rothalsgans","convention_language":false,"id":null},{"lang":"Italian","names":"Oca collorosso, Oca del collo rosso","convention_language":false,"id":null},{"lang":"Polish","names":"Bernikla rdzawoszyja","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-de-pescoço-ruivo","convention_language":false,"id":null},{"lang":"Spanish","names":"Barnacla cuellirroja","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödhalsad gås","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Skokova, N. N. and Vinogradov, V. G. 1986. [Waterfowl habitat conservation.]. Agropromizdat. Moscow.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.; Sterbetz, I. 1982. Migration of \u003Ci\u003EAnser erythropus\u003C/i\u003E and \u003Ci\u003EBranta ruficollis\u003C/i\u003E in Hungary 1971-1980. Aquila: 89: 107-114.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Beaman, M. (ed.) 1975. Turkey bird report 1970-1973.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kasparek, M. and van der Ven, J. 1983. Birds of Turkey. 1: Ercek Golu. Published by the authors. Heidelburg.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11936,"full_name":"Psephurus gladius","author_year":"(Martens, 1862)","common_names":[{"lang":"English","names":"Chinese Paddlefish, Paddlefish, Chinese Swordfish","convention_language":true,"id":null},{"lang":"Finnish","names":"Miekkasampi","convention_language":false,"id":null},{"lang":"Polish","names":"Wioslonos chinski","convention_language":false,"id":null},{"lang":"Swedish","names":"kinesisk svärdstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Polyodontidae","genus_name":"Psephurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11937,"full_name":"Oreopholus ruficollis","author_year":"(Wagler, 1829)","common_names":[{"lang":"English","names":"Tawny-throated Dotterel","convention_language":true,"id":null},{"lang":"French","names":"Pluvier oréophile","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito cabezón","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"extinct","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Oreopholus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius ruficollis","author_year":"Wagler, 1829"},{"full_name":"Eudromias ruficollis","author_year":"(Wagler, 1829)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11939,"full_name":"Aix sponsa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Carolinaeend, Carolina-eend","convention_language":false,"id":null},{"lang":"English","names":"Wood Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Morsiosorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard branchu, Canard carolin","convention_language":true,"id":null},{"lang":"German","names":"Brautente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Karolinai réce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra sposa","convention_language":false,"id":null},{"lang":"Polish","names":"Karolinka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-carolino","convention_language":false,"id":null},{"lang":"Spanish","names":"Pato joyuyo","convention_language":true,"id":null},{"lang":"Swedish","names":"Brudand","convention_language":false,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"introduced","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Perezgasga, F. V. 1999. Wood Duck \u003Ci\u003EAix sponsa\u003C/i\u003E breeding in the Nazas River, Durango, Mexico. Cotinga: 11: 13-14.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"introduced","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aix","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas sponsa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11940,"full_name":"Ciconia boyciana","author_year":"Swinhoe, 1873","common_names":[{"lang":"Dutch","names":"Zwartsnavelooievaar","convention_language":false,"id":null},{"lang":"English","names":"Japanese White Stork, Oriental White Stork, Oriental Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Idänkattohaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne blanche orientale, Cigogne blanche du Japon, Cigogne orientale, Cigogne blanche de Corée, Cigogne à bec noir","convention_language":true,"id":null},{"lang":"German","names":"Schwarzschnabelstorch","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna dal becco nero","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña del Japón, Cigüeña oriental, Cigüeña blanca coreana","convention_language":true,"id":null},{"lang":"Swedish","names":"svartnäbbad stork, koreansk vit stork","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fei Dian-jin. 1989. [An observation and investigation on the breeding situation of the Oriental Stork in Qiqihar Suburban District.]. Zoological Research: 10: 263-270.; Williams, M. D. 1986. Preliminary report on the China Cranewatch 1986. Unpublished. ","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Sonobe, K. and Izawa, N. 1987. Endangered bird species in the Korean Peninsula. Museum of Korean Nature (Korea University in Tokyo) and Wild Bird Society of Japan. Tokyo.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Mackinnon, J. R. and Phillips, K. 2000. \u003Ci\u003EA field guide to the birds of China\u003C/i\u003E. Oxford University Press, Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Brazil, M. 2009. \u003Ci\u003EBirds of East Asia\u003C/i\u003E. Helm Field Guides. A\u0026C Black, London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11941,"full_name":"Ardea alba","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Great Egret, Great White Heron, Great White Egret","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Casmerodius albus","author_year":"Linnaeus, 1758"},{"full_name":"Egretta alba","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Palearctic populations.\r\nFormerly listed as \u003Ci\u003ECasmerodius albus albus\u003C/i\u003E (Western Palearctic populations)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11942,"full_name":"Gypaetus barbatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Orlosup bradatý","convention_language":false,"id":null},{"lang":"Danish","names":"Lammegrib","convention_language":false,"id":null},{"lang":"Dutch","names":"Lammergier","convention_language":false,"id":null},{"lang":"English","names":"Bearded Vulture, Lammergeier","convention_language":true,"id":null},{"lang":"Finnish","names":"Partakorppikotka","convention_language":false,"id":null},{"lang":"French","names":"Gypaète barbu","convention_language":true,"id":null},{"lang":"German","names":"Bartgeier","convention_language":false,"id":null},{"lang":"Hungarian","names":"Saskeselyû","convention_language":false,"id":null},{"lang":"Italian","names":"Gipeto, Avvoltoio degli agnelli, Aquila di mare","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-rabalva, Quebra-osso","convention_language":false,"id":null},{"lang":"Russian","names":"Borodach","convention_language":false,"id":null},{"lang":"Serbian","names":"Kostoberina, Orao bradan","convention_language":false,"id":null},{"lang":"Spanish","names":"Quebrantahuesos","convention_language":true,"id":null},{"lang":"Swedish","names":"Lammgam, Gamörn, skäggam","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"extinct","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Johnson, E. D. H. 1972. Observations on the birds of the Upper Blue Nile Basin. Bulletin of the British Ornithologists' Club: 92: 42-49.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"extinct","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Margalida, A., García, D., Heredia, R. and Bertran, J. 2010. Video-monitoring helps to optimize the rescue of second-hatched chicks in the endangered Bearded Vulture \u003Ci\u003EGypaetus barbatus\u003C/i\u003E. Bird Conservation International: 20: 55-61.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gypaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":11943,"full_name":"Pluvianus aegyptius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Krokodilvogter","convention_language":false,"id":null},{"lang":"English","names":"Egyptian Plover, Crocodile-bird","convention_language":true,"id":null},{"lang":"French","names":"Pluvian fluviatile","convention_language":true,"id":null},{"lang":"Spanish","names":"Pluvial","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Glareolidae","genus_name":"Pluvianus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Charadrius aegyptius","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11945,"full_name":"Cygnus buccinator","author_year":"Richardson, 1832","common_names":[{"lang":"English","names":"Trumpeter Swan","convention_language":true,"id":null},{"lang":"French","names":"Cygne trompette","convention_language":true,"id":null},{"lang":"Spanish","names":"Cisne trompetero","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11946,"full_name":"Balaenoptera bonaerensis","author_year":"Burmeister, 1867","common_names":[{"lang":"Dutch","names":"Dwergvinvis","convention_language":false,"id":null},{"lang":"English","names":"Southern Minke Whale, Antarctic Minke Whale","convention_language":true,"id":null},{"lang":"French","names":"Petit rorqual de l'Antarctique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rorcual enano del antarctica","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11948,"full_name":"Phylloscopus schwarzi","author_year":"(Radde, 1863)","common_names":[{"lang":"Danish","names":"Schwarz Løvsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Radde's Boszanger","convention_language":false,"id":null},{"lang":"English","names":"Radde's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Schwarz","convention_language":true,"id":null},{"lang":"Russian","names":"Tolstoklyuvaya Penochka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Gee, B. 1998. Radde's Warbler \u003Ci\u003EPhylloscopus schwarzi\u003C/i\u003E: a new species for the Philippines. Forktail: 14: 81.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11949,"full_name":"Phoebastria nigripes","author_year":"(Audubon, 1849)","common_names":[{"lang":"English","names":"Black-footed Albatross","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebastria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea nigripes","author_year":"Audubon, 1839"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea nigripes\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"30/07/2009","name":"ACAP"}]},{"id":11950,"full_name":"Larus hemprichii","author_year":"Bruch, 1853","common_names":[{"lang":"Danish","names":"Hemprichs Måge","convention_language":false,"id":null},{"lang":"English","names":"Sooty Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland de Hemprich","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cejiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Hobro, F. E. and Catry, T. 2006. First record of Sooty Gull \u003Ci\u003ELarus hemprichii\u003C/i\u003E for Seychelles. Bulletin of the African Bird Club: 13: 213-214.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11951,"full_name":"Procapra gutturosa","author_year":"(Pallas, 1777)","common_names":[{"lang":"English","names":"Mongolian Gazelle","convention_language":true,"id":null},{"lang":"German","names":"Mongolische Gazelle","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"extinct","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Miura, N., Ito, T. Y., Lhagvasuren, B., Enkhbileg, D. Tsunekawa, A., Takatsuki, S., Jiang, Z. and Mochizuki, K. 2004. Analysis of the seasonal migrations of Mongolian Gazelle, using Modis Data. XXth ISPRS Congress, Istanbul 12-23 July 2004 . 418-422; Olson, K.A., Mueller, T., Bolortsetseg, S., Leimgruber, P., Fagan, W.F. and Fuller, T.K. 2009. A mega-herd of more than 200,000 Mongolian gazelles \u003Ci\u003EProcapra gutturosa\u003C/i\u003E: a consequence of habitat quality. Oryx: 43: 146-148.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Procapra","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Gazella gutturosa","author_year":"Pallas, 1777"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11953,"full_name":"Fulica atra","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Blishøne","convention_language":false,"id":null},{"lang":"Dutch","names":"Meerkoet","convention_language":false,"id":null},{"lang":"English","names":"Common Coot, Coot, Eurasian Coot","convention_language":true,"id":null},{"lang":"Finnish","names":"Nokikana","convention_language":false,"id":null},{"lang":"French","names":"Foulque macroule","convention_language":true,"id":null},{"lang":"German","names":"Bläßhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szárcsa","convention_language":false,"id":null},{"lang":"Italian","names":"Folaga","convention_language":false,"id":null},{"lang":"Portuguese","names":"Galeirão-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Focha Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Sothöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Gore, M. E. J. and Won, P-O. 1971. The birds of Korea. Royal Asiatic Society, Korea Branch, in conjunction with Taiwan Publishing Co. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schricke, V., Triplet, P. and Leroy, G. 2001. La Foulque macroule \u003Ci\u003EFulica atra\u003C/i\u003E, une nouvelle espèce nicheuse au Sénégal. Alauda: 69: 328.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R., Santana, F., Xavier, A., Xavier, F. and Da Silva, A. 2004. Status of globally threatened birds and internationally significant sites in East Timor based on rapid participatory biodiversity assessments. Report to BirdLife International - Asia Programme. ","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Fulica","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Mediterranean and Black Sea populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11954,"full_name":"Thalasseus bengalensis","author_year":"(Lesson, 1831)","common_names":[{"lang":"Czech","names":"Rybák bengálský","convention_language":false,"id":null},{"lang":"Dutch","names":"Bengaalse Stern","convention_language":false,"id":null},{"lang":"English","names":"Lesser Crested-Tern, Lesser Crested Tern","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutöyhtötiira","convention_language":false,"id":null},{"lang":"French","names":"Sterne voyageuse","convention_language":true,"id":null},{"lang":"German","names":"Rüppelseeschwalbe, Rüppellseeschwalbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bengáli csér","convention_language":false,"id":null},{"lang":"Italian","names":"Sterna di Rüppell","convention_language":false,"id":null},{"lang":"Polish","names":"Rybitwa bengalska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Garajau-bengalense","convention_language":false,"id":null},{"lang":"Spanish","names":"Charrán Bengalí","convention_language":true,"id":null},{"lang":"Swedish","names":"Iltärna","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Edwards, P. J. 1999. Recent waterbird surveys in Cambodia. Forktail: 15: 29-42.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct (?)","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Sterna bengalensis","author_year":"Lesson, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"African and Southwest Asian populations. Formerly listed as \u003Ci\u003ESterna bengalensis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11955,"full_name":"Hippolais languida","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Upchers Gulbug","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Vale Spotvogel","convention_language":false,"id":null},{"lang":"English","names":"Upcher's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaakultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs d'Upcher","convention_language":true,"id":null},{"lang":"German","names":"Dornspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Keleti geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino di Upcher","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz pustynny","convention_language":false,"id":null},{"lang":"Spanish","names":"Zercero de Upcher","convention_language":true,"id":null},{"lang":"Swedish","names":"Orientsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Corso, A. 2003. New to Cyprus - Upcher's Warbler. BirdLife Cyprus Annual Report: 1: 113-116.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11956,"full_name":"Charadrius placidus","author_year":"Gray \u0026 Gray, 1863","common_names":[{"lang":"English","names":"Long-billed Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à long bec","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo piquilargo","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Carey, G. J. 1995. Long-billed plover: the first record for Hong Kong. Hong Kong Bird Report 1995: 110-112.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11957,"full_name":"Anser rossii","author_year":"(Cassin, 1861)","common_names":[{"lang":"Dutch","names":"Ross' Gans","convention_language":false,"id":null},{"lang":"English","names":"Ross's Goose, Ross' Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie de Ross","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar de Ross","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Chen rossii","author_year":"Cassin, 1861"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11958,"full_name":"Aythya baeri","author_year":"(Radde, 1863)","common_names":[{"lang":"English","names":"Baer's Pochard","convention_language":true,"id":null},{"lang":"French","names":"Fuligule de Baer","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón de Baer","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas baeri","author_year":"Radde, 1863"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11959,"full_name":"Ficedula superciliaris","author_year":"(Jerdon, 1840)","common_names":[{"lang":"English","names":"Ultramarine Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche ultramarin","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11960,"full_name":"Sylvia communis","author_year":"Latham, 1787","common_names":[{"lang":"Danish","names":"Tornsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Grasmus","convention_language":false,"id":null},{"lang":"English","names":"Whitethroat, Common Whitethroat, Greater Whitethroat","convention_language":true,"id":null},{"lang":"Finnish","names":"Pensaskerttu","convention_language":false,"id":null},{"lang":"German","names":"Dorngrasmücke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Mezei poszáta","convention_language":false,"id":null},{"lang":"Italian","names":"Sterpazzola","convention_language":false,"id":null},{"lang":"Polish","names":"Cierniówka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-amoras-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Slavka","convention_language":false,"id":null},{"lang":"Spanish","names":"Curruca Zarcera","convention_language":true,"id":null},{"lang":"Swedish","names":"Törnsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11961,"full_name":"Spheniscus demersus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Brillepingvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwartvoetpinguin","convention_language":false,"id":null},{"lang":"English","names":"African Penguin, Jackass Penguin, Black-footed Penguin","convention_language":true,"id":null},{"lang":"Finnish","names":"Afrikanpingviini","convention_language":false,"id":null},{"lang":"French","names":"Manchot du Cap","convention_language":true,"id":null},{"lang":"German","names":"Brillenpinguin","convention_language":false,"id":null},{"lang":"Italian","names":"Sfenisco del Capo","convention_language":false,"id":null},{"lang":"Spanish","names":"Pingüino del Cabo","convention_language":true,"id":null},{"lang":"Swedish","names":"Glasögonpingvin, sydafrikansk pingvin","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Crawford, R. J. M., Williams, A. J., Randall, R. M., Randall, B. M., Berruti, A. and Ross, G. J. B. 1990. Recent population trends of Jackass Penguins \u003Ci\u003ESpheniscus demersus\u003C/i\u003E off Southern Africa. Biological Conservation: 52: 229-243.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sphenisciformes","class_name":"Aves","family_name":"Spheniscidae","genus_name":"Spheniscus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"26/12/2002","name":"AEWA"}]},{"id":11962,"full_name":"Huso dauricus","author_year":"(Georgi, 1775)","common_names":[{"lang":"English","names":"Great Siberian Sturgeon, Huso Sturgeon","convention_language":true,"id":null},{"lang":"Finnish","names":"Amurinkitasampi","convention_language":false,"id":null},{"lang":"German","names":"Kaluga-Hausen","convention_language":false,"id":null},{"lang":"Japanese","names":"Dauria-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Kaluga","convention_language":false,"id":null},{"lang":"Russian","names":"Kaluga","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Huso","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11963,"full_name":"Tringa flavipes","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Danish","names":"Lille Gulbenet Klire","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Geelpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Lesser Yellowlegs","convention_language":true,"id":null},{"lang":"French","names":"Petit Chevalier","convention_language":true,"id":null},{"lang":"Spanish","names":"Archibebe patigualdo chico","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax flavipes","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11964,"full_name":"Muscicapa striata","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Lejsek šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Grauwe Vliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Spotted Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaasieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche gris","convention_language":true,"id":null},{"lang":"German","names":"Grauschnäpper, Garuschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Pigliamosche","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-cinzento","convention_language":false,"id":null},{"lang":"Russian","names":"Seraya Mukholovka","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Grå flugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; McGeoch, J. A. 1963. Observations from Ser Amadia, Kurdistan, Iraq. Ardea: 51: 244-250.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11965,"full_name":"Lagenorhynchus albirostris","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"White-beaked Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque à bec blanc de l'Atlantique","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de pico blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"vitnosdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Collet, A. and Duguy, R. 1981. \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E (Cetacea, Odontoceti): espèce nouvelle pour la faune de France. Mammalia: 45: 387-388.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Andrésson, G. 1978. Chasing the elusive dolphin. Atlantica Iceland Rev.: 16: 28-31.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Reeves, R. R., Smeenk, C., Kinze, C. C., Brownell, R. L. Jr and Lien, J. 1999. White-beaked Dolphin \u003Ci\u003ELagenorhynchus albirostris\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"Only North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":11966,"full_name":"Porphyrio alleni","author_year":"Thomson, 1842","common_names":[{"lang":"Dutch","names":"Afrikaanse Purperhoen","convention_language":false,"id":null},{"lang":"English","names":"Allen's Gallinule","convention_language":true,"id":null},{"lang":"French","names":"Talève d'Allen","convention_language":true,"id":null},{"lang":"Spanish","names":"Calomoncillo africano","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Porphyrio","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Porphyrula alleni","author_year":"(Thomson, 1842)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11967,"full_name":"Saiga tatarica","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Saigaantilope","convention_language":false,"id":null},{"lang":"Dutch","names":"Saiga-antiloop","convention_language":false,"id":null},{"lang":"English","names":"Saiga Antelope, Saiga","convention_language":true,"id":null},{"lang":"Finnish","names":"Saigaantilooppi","convention_language":false,"id":null},{"lang":"French","names":"Saïga","convention_language":true,"id":null},{"lang":"German","names":"Saiga","convention_language":false,"id":null},{"lang":"Italian","names":"Antilope delle steppe","convention_language":false,"id":null},{"lang":"Spanish","names":"Antílope saiga, Saiga","convention_language":true,"id":null},{"lang":"Swedish","names":"saigaantilop, saiga","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zhang, Y. (ed.) 1997. Distribution of mammalian species in China. CITES Management Authority of China. China Forestry Publishing House. Beijing.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.; Milner-Gulland, E.J., Kholodova, M.V., Bekenov, A., Bukreeva, O.M., Grachev, I.A., Amgalan, L., and Lushchekina, A.A. 2001. Dramatic declines in Saiga antelope populations. Oryx: 35: 340-345.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Abaturov, B.D. 2007. The population of Saiga antelopes in Russia and the problems of its preservation. Herald of the Russian Academy of Sciences: 77: 462-469.; Milner-Gulland, E.J., Kholodova, M.V., Bekenov, A., Bukreeva, O.M., Grachev, I.A., Amgalan, L., and Lushchekina, A.A. 2001. Dramatic declines in Saiga antelope populations. Oryx: 35: 340-345.; Sokolov, V. E. and Zhirnov, L. V (eds.) 1998. The saiga antelope, phylogeny, systematics, ecology, conservation and use. Russian Academy of Sciences. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bekenov, A. B., Grachev, Iu. A. and Milner-Gulland, E. J. 1998. The ecology and management of the saiga antelope in Kazakhstan. Mammal Review: 28: 1-52.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Saiga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESaiga tatarica\u003C/i\u003E, sensu Wilson \u0026 Reeder (1993).","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Saiga Antelope"}]},{"id":11968,"full_name":"Nyctalus leisleri","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Czech","names":"Netopýr stromový","convention_language":false,"id":null},{"lang":"Danish","names":"Leislers flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Bosvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Leisler's Bat, Lesser Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Väikevidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Metsäisolepakko","convention_language":false,"id":null},{"lang":"French","names":"Noctule de Leisler","convention_language":true,"id":null},{"lang":"German","names":"Kleinabendsegler","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola di Leisler","convention_language":false,"id":null},{"lang":"Norwegian","names":"Leislerflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiaczek, Borowiec Leislera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-pequeno","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-mic-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier stromový","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo pequeño","convention_language":true,"id":null},{"lang":"Swedish","names":"Leislers fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Gaisler, J. 1984. Bats of northern Algeria and their winter activity. Myotis: 21: 89-95.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Baagøe, H. and Bloch, D. 1994. Bats (Chiroptera) in the Faroe Islands. Frodskaparrit: 41: 83-88.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Pinder, N. J. and Bolton, S. M. 1990. Some recent bat records. Peregrine: 6: 66-67.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hanák, V. and Gaisler, J. 1983. \u003Ci\u003ENyctalus leisleri\u003C/i\u003E (Kuhl, 1818), une espèce nouvelle pour le continent africain. Mammalia: 47: 585-587.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Peiffer, R. and Pir, J. B. 1994. Erster gesicherter Nachweis des Kleinen Abendseglers (\u003Ci\u003ENyctalus leisleri\u003C/i\u003E, Kuhl 1818) für Luxemburg (Mammalia, Chiroptera). Bulletin de la Societe des Naturalistes Luxembourgeois: 95: 209-213.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Arrizabalaga, A. and Montagud, E. 1984. Notes sobre la fauna de quiropteros del Valle Oriental (Barcelona, Catalunya). Una nova especie per a la fauna espanyola. Miscellanea zool.: 8: 307-310.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Nyctalus verrucosus","author_year":"Bowditch, 1825"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":11969,"full_name":"Plecotus macrobullaris","author_year":"Kuzyakin, 1965","common_names":[{"lang":"English","names":"Alpine Long-eared Bat","convention_language":true,"id":null},{"lang":"French","names":"L'oreillard montagnard ou l'oreillard alpin","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago orejudo alpino","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"EUROBATS"}]},{"id":11970,"full_name":"Somateria spectabilis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kajka královská","convention_language":false,"id":null},{"lang":"Danish","names":"Kongederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Koningseider, Koningseidereend","convention_language":false,"id":null},{"lang":"English","names":"King Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Kyhmyhaahka","convention_language":false,"id":null},{"lang":"French","names":"Eider à tête grise","convention_language":true,"id":null},{"lang":"German","names":"Prachteiderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Cifra pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Re degli Edredoni","convention_language":false,"id":null},{"lang":"Polish","names":"Turkan","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider-real","convention_language":false,"id":null},{"lang":"Russian","names":"Gaga-grebyonushka","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider real","convention_language":true,"id":null},{"lang":"Swedish","names":"Praktejder","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas spectabilis","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11971,"full_name":"Gazella gazella","author_year":"(Pallas, 1766)","common_names":[{"lang":"English","names":"Mountain Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Edmi, Gazelle d'Arabie","convention_language":true,"id":null},{"lang":"Swedish","names":"Arabisk gasell","convention_language":false,"id":null}],"distributions":[{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"introduced","country_references":"Karami, M., Hemami, M. R. and Groves, C. P. 2002. Taxonomic, distributional and ecological data on gazelles in Iran. Zoology in the Middle East: 26: 29-36.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M., Amr, Z., and Budari, M. 1996. Status and conservation of artiodactyla (Mammalia) in Jordan. Mammalia: 60: 417-430.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Only Asian populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11972,"full_name":"Turdus naumanni","author_year":"Temminck, 1820","common_names":[{"lang":"Danish","names":"Brundrossel","convention_language":false,"id":null},{"lang":"English","names":"Dusky Thrush, Naumann's Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Naumann","convention_language":true,"id":null},{"lang":"Polish","names":"Drozd rdzawy","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11973,"full_name":"Puffinus creatopus","author_year":"Coues, 1864","common_names":[{"lang":"English","names":"Pink-footed Shearwater","convention_language":true,"id":null},{"lang":"French","names":"Puffin à pieds roses","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de ventre blanco, Pardela blanca, Pardela patirrosa","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Navas, J. R. 1998. Primer registro de la Pardela Patas Rosas \u003Ci\u003EPuffinus creatopus\u003C/i\u003E en las costas Argentinas. El Hornero: 15: 43.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Puffinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":11974,"full_name":"Podocnemis expansa","author_year":"(Schweigger, 1812)","common_names":[{"lang":"English","names":"Arrau turtle, Giant South American turtle, South American river turtle, Tartaruga","convention_language":true,"id":null}],"distributions":[{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Killeen, T. J. and Schulenberg, T. S (eds.) 1998. A biological assessment of Parque Nacional Noel Kempff Mercado, Bolivia. RAP Working Papers 10 Conservation International. Washington, D.C.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Ferreira Júnior, P.D. and Castro, P.T.A. 2006. Geological characteristics of the nesting areas of the giant Amazon river turtle, (\u003Ci\u003EPodocnemis expansa\u003C/i\u003E) in the Crixás-Açu river in Goiás State, Brazil. Acta Amazonica: 36: 249-258.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Hildebrand, P. von. 1985. Biology and conservation of \u003Ci\u003EPodocnemis expansa\u003C/i\u003E in the Rio Caqueta of eastern Colombia. Final Report, Fundacion Estacion de Biologia Puerto Rastrojo . ; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Miyata, K. 1982. A check list of the amphibians and reptiles of Ecuador (with a bibliography of Ecuadorian herpetology). Smithsonian Herpetological Information Service.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Donnelly, M., Chen, M., Watson, C. and Watkins, G. G. 1999. Amphibians and reptiles of the Iwokrama Forest. The Academy of Natural Sciences of Philadelphia. Philadelphia. ; Fritz, C. and Havaš, P. 2007. Checklist of chelonians of the world. Vertebrate Zoology: 57: 149-368.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Dixon, J. R., and Soini, P. 1986. The reptiles of the Upper Amazon Baisin, Iquitos Basin, Peru. Part 1: lizards and amphibisbaenians. Part 2: crocodilians, turtles and snakes. Milwaukee Public Museum.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Noriega Murrieta, J. and Godfrey Ruiz, C. 2006. Conservation of aquatic biodiversity in Pacaya-Samiria National Reserve, Peru. ProNaturaleza. Lima, Peru. 8; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.; Soini, P. 1996. Reproduccion, abundancia y situacion de quelonios acuaticos en la Reserva Nacional Pacaya-Samiria, Peru. Folia Amazonica: 8: 145-156.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Fritz, C. and Havaš, P. 2007. Checklist of chelonians of the world. Vertebrate Zoology: 57: 149-368.; Iverson, J. B. 1992. A revised checklist with distribution maps of the turtles of the world. Published by the author. Richmond, Indiana.; Ojasti, J. 1996. Wildlife utilization in Latin America. Current situation and prospects for sustainable management. Food and Agriculture Organization of the United Nations. Rome.; Pritchard, P. C. H. and Trebbau. 1984. The turtles of Venezuela. Society for the Study of Amphibians and Reptiles, Contributions to Herpetology: 2: 283-399.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Podocnemididae","genus_name":"Podocnemis","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"Only Upper Amazon populations.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11975,"full_name":"Anas poecilorhyncha","author_year":"Forster, 1781","common_names":[{"lang":"English","names":"Spot-billed Duck, Indian Spot-billed Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à bec tacheté","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade picopinto","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11976,"full_name":"Bucephala albeola","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Bøffeland","convention_language":false,"id":null},{"lang":"Dutch","names":"Buffelkopeend","convention_language":false,"id":null},{"lang":"English","names":"Bufflehead","convention_language":true,"id":null},{"lang":"French","names":"Petit Garrot, Garrot albéole","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón albeola","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas albeola","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11977,"full_name":"Thalassarche chrysostoma","author_year":"(Forster, 1785)","common_names":[{"lang":"Danish","names":"Gråhovedet Albatros","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijskopalbatros","convention_language":false,"id":null},{"lang":"English","names":"Grey-headed Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Diomedea chrysostoma","author_year":"Forster, 1785 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea chrysostoma\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11978,"full_name":"Pandion haliaetus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Fiskeørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Visarend","convention_language":false,"id":null},{"lang":"English","names":"Osprey","convention_language":true,"id":null},{"lang":"Finnish","names":"Sääksi, Kalasääski","convention_language":false,"id":null},{"lang":"French","names":"Balbugard fluviatile, Balbuzard pêcheur, Aigle pêcheur","convention_language":true,"id":null},{"lang":"German","names":"Fischadler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Halászsas","convention_language":false,"id":null},{"lang":"Italian","names":"Falco pescatore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fiskeørn","convention_language":false,"id":null},{"lang":"Polish","names":"rybolów","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-pesqueira","convention_language":false,"id":null},{"lang":"Russian","names":"Skopa","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila pescadora, Gavilán pescador, Águila sangual, Guincho","convention_language":true,"id":null},{"lang":"Swedish","names":"Fiskgjuse","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Saggese, M. D., Krapovickas, S. F., Haene, E. H. and De Lucca, E. R. 1996. Presencia del Aguila Pescadora (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) en Argentina y Uruguay. El Hornero: 14: 44-49.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Monaco","country":"Monaco","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Diamond, J.M. 1975. Distribution ecology and habitats of some Bougainville birds (Solomn Islands). The Condor: 77: 14-23.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Clancey, P. A., Brooke, R. K., Crowe, T. M. and Mendelsohn, J. M. 1987. S.A.O.S. checklist of southern African birds. First updating report. Southern African Ornithological Society. Johannesburg.; Dean, W. R. J. and Tarboton, W. R. 1983. Osprey breeding records in South Africa. Ostrich: 54: 241-242.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Galarza, A. and Dennis, R.H. 2009. A spring stopover of a migratory osprey (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) in northern Spain as revealed by satellite tracking: implications for conservation. Animal Biodiversity and Conservation: 32: 117-122.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; Ehrlich, P. R, Dobkins, D. S. and Wheye, D. 1992. Birds in jeopardy. The imperiled and extinct birds of the United States \u0026 Canada. Stanford University Press. Stanford, CA.; Snyder, N. F. R. and Snyder, H. A. 1991. Birds of prey. Natural history and conservation of North American raptors. Voyageur Press. Stillwater, Minnesota, USA.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; Saggese, M. D., Krapovickas, S. F., Haene, E. H. and De Lucca, E. R. 1996. Presencia del Aguila Pescadora (\u003Ci\u003EPandion haliaetus\u003C/i\u003E) en Argentina y Uruguay. El Hornero: 14: 44-49.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Pandionidae","genus_name":"Pandion","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":11979,"full_name":"Bos grunniens","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Yak","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Bos","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Bos mutus","author_year":"Przewalski, 1883"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11980,"full_name":"Crocodylus porosus","author_year":"Schneider, 1801","common_names":[{"lang":"Danish","names":"Saltvandskrokodille","convention_language":false,"id":null},{"lang":"Dutch","names":"Zeekrokodil","convention_language":false,"id":null},{"lang":"English","names":"Estuarine Crocodile, Salt-water Crocodile","convention_language":true,"id":null},{"lang":"Finnish","names":"Suistokrokotiili","convention_language":false,"id":null},{"lang":"French","names":"Crocodile marin, Crocodile d'estuaire","convention_language":true,"id":null},{"lang":"German","names":"Leistenkrokodil","convention_language":false,"id":null},{"lang":"Italian","names":"Coccodrillo marino","convention_language":false,"id":null},{"lang":"Malay","names":"Buaya tembaga","convention_language":false,"id":null},{"lang":"Spanish","names":"Cocodrilo poroso","convention_language":true,"id":null},{"lang":"Swedish","names":"saltvattenskrokodil, listkrokodil, deltakrokodil","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Das, I. 2007. Amphibians and Reptiles of Brunei. Natural History Publications (Borneo).; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Das, I. and Hee, K.B. 2008. Herpetofauna of the Pulau Bangi group of islands off northeastern Borneo. Herpetological Review: 39: 296-298.; Grismer, L.L. and Aun, P.K. 2008. Diversity, endemism, and conservation of the amphibians and reptiles of southern Peninsular Malaysia and its offshore islands. Herpetological Review: 39: 270-281.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Thorbjamarson, J., Platt, S. G. and U. Saw Tun Khaing. 2000. A population survey of the estuarine crocodile in the Ayeyarwady Delta, Myanmar. Oryx: 34: 317-324.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Messel, H. and King, F. W. 1991. Area reports: Palau. IUCN/SSC Crocodile Specialist Group Newsletter: 10: 22.; Messel, H. and King, F. W. 1991. Survey of the crocodile populations of the Republic of Palau, Caroline Islands, Pacific Ocean. 8-24 June. Unpublished report. 49 pp . ; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Cox, J.H., Gowep, B., Mava, A., Wana, J., Genolagani, J.-M., Kula, V., Solmu, G., Sine, R., Wilken, D. and Langelet, E. 2006. The Saltwater Crocodile \u003Ci\u003ECrocodylus porosus\u003C/i\u003E egg harvest program in Papua New Guinea: Linking conservation, commerce and community development. Crocodiles: Proceedings of the 18th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. 134-155; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.; Sine, R. and Kula, V. 2006. Status of \u003Ci\u003ECrocodylus porosus\u003C/i\u003E and \u003Ci\u003EC. novaeguineae\u003C/i\u003E in Papua New Guinea after twenty-five years (1981-2006) of aerial nesting surveys. Crocodiles: Proceedings of the 18th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. ; Solmu, G.C. 2004. Status of \u003Ci\u003ECrocodylus porosus\u003C/i\u003E and \u003Ci\u003ECrocodylus novaeguineae\u003C/i\u003E conservation and management in Papua New Guinea (1981-2004). Crocodiles: Proceedings of the 17th Working Meeting of the Crocodile Specialist Group IUCN. Gland, Switzerland. 195-203","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.; Messel, H. and King, F. W. 1989. Report on the CITES and Solomon Islands Government national survey of the crocodile populations of the Solomon Islands. 20 July - 8 September 1989. Unpublished report. 43 pp . ; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Deraniyagala, P.E.P. 1939. The tetrapod reptiles of Ceylon. Vol.1. Testudines and crocodilians. Colombo Museum and Dulau and Co. Ceylon \u0026 London.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Chambers, M. R. and Esrom, D. 1991. A survey of the estuarine crocodiles (\u003Ci\u003ECrocodylus porosus\u003C/i\u003E) of Vanua Lava. Naika: 35: 20-27.; Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Groombridge, B. 1982. The IUCN Amphibia - Reptilia Red Data Book. Part 1, Testudines, Crocodylia, Rhynchocephalia. IUCN. Gland, Switzerland.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Crocodylia","class_name":"Reptilia","family_name":"Crocodylidae","genus_name":"Crocodylus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11981,"full_name":"Oenanthe picata","author_year":"(Blyth, 1847)","common_names":[{"lang":"English","names":"Variable Wheatear","convention_language":true,"id":null},{"lang":"French","names":"Traquet variable","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11982,"full_name":"Irania gutturalis","author_year":"(Guérin-Méneville, 1843)","common_names":[{"lang":"Danish","names":"Hvidhals","convention_language":false,"id":null},{"lang":"Dutch","names":"Perzische Roodborst","convention_language":false,"id":null},{"lang":"English","names":"White-throated Robin","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivikkosatakieli","convention_language":false,"id":null},{"lang":"French","names":"Iranie à gorge blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkehlsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehértorkú fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Irania golabianca","convention_language":false,"id":null},{"lang":"Polish","names":"Iranka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-de-garganta-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Solovey-belosheyka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Pintado","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitstrupig näktergal","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1972. White-throated Robin \u003Ci\u003EIrania gutturalis\u003C/i\u003E breeding in northern Iraq. Bull. Iraq Nat. Hist. Mus.: 5: 1-8.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Toropova, V. I. and Toropov, S. A. 2005. [Records of Orphean Warbler, White-throated Robin and White's Thrush in new regions of Kyrgyzstan.]. Selevinia: 2005: 239.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Irania","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11984,"full_name":"Acinonyx jubatus","author_year":"(Schreber, 1775)","common_names":[{"lang":"Afrikaans","names":"Jagluiperd","convention_language":false,"id":null},{"lang":"Danish","names":"gepard, cheetah eller jagtleopard","convention_language":false,"id":null},{"lang":"Dutch","names":"Jachtluipaard","convention_language":false,"id":null},{"lang":"English","names":"Cheetah, Hunting Leopard","convention_language":true,"id":null},{"lang":"Finnish","names":"Gepardi","convention_language":false,"id":null},{"lang":"French","names":"Guépard","convention_language":true,"id":null},{"lang":"German","names":"Gepard","convention_language":false,"id":null},{"lang":"Hindi","names":"Chita","convention_language":false,"id":null},{"lang":"Italian","names":"Ghepardo","convention_language":false,"id":null},{"lang":"Spanish","names":"Guepardo, Chita","convention_language":true,"id":null},{"lang":"Swedish","names":"gepard","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Habibi, K. 1977. The mammals of Afghanistan, their distribution and status. Ministry of Agriculture. Kabul.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Busby, G.B.J., Gottelli, D., Wacher, T., Marker, L., Belbachir, F., De Smet, K., Belbachir-Bazi, A. and Fellous, A. 2009. Genetic analysis of scat reveals leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in southern Algeria. Oryx: 43: 412-415.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Jeannin, A. 1936. Les mammifères sauvages du Cameroun. Lechevalier. Paris.; Nowell, K. and Jackson, P. 1994. Wild cats status report and conservation action plan. Cat News: 21: 20-21.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct (?)","country_references":"Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Booth, A. H. 1960. Small mammals of West Africa. Longmans. London.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Yalden, D. W., Largen, M. J. and Kock, D. 1980. Catalogue of the mammals of Ethiopia, 4. Carnivora. Monitore Zoologico Italiano (Suppl.): 13: 169-272.","id":null},{"name":"India","country":"India","tags_list":"extinct","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Anon. 1990. Cheetah surviving in Iran. Cat News: 13: 13.; Farhadinia, M. S., Akbari, H., Mousavi, S.-J., Eslami, M., Azizi, M., Shokouhi, J., Gholikhani, N., Hosseini-Zavarei, F. (2013). Exceptionally long movements of the Asiatic cheetah \u003Ci\u003EAcinonyx jubatus venaticus\u003C/i\u003E across multiple arid reserves in central Iran. Oryx, 47(3), 427–430.; Farhadinia, M. S., Hosseini-Zavarei, F., Nezami, B., Harati, H., Absalan, H., Fabiano, E., \u0026 Marker, L. (2012). Feeding ecology of the Asiatic cheetah \u003Ci\u003EAcinonyx jubatus venaticus\u003C/i\u003E in low prey habitats in northeastern Iran: Implications for effective conservation. Journal of Arid Environments, 87, 206–211.; Karami, M. 1992. Cheetah distribution in Khorasan Province, Iran. Cat News: 16: 4.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Gakuya, F., Ombui, J., Maingi, N., Muchemi, G., Ogara, W., Soriguer, R. C., \u0026 Alasaad, S. (2012). Sarcoptic mange and cheetah conservation in Masai Mara (Kenya): epidemiological study in a wildlife/livestock system. Parasitology, 139(12), 1587–1595.\r\n; Hamilton, P. H. 1981. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and the Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kenya: ecology, status, conservation, management. Report prepared for the Office of Endangered Species. U.S. Fish and Wildlife Service. Washington, D.C. ; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"extinct","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Marker-Koaus, L. and Koaus, D. 1990. Status of the Cheetah in Zimbabwe and Namibia. Cat News: 12: 15-16.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Grettenberger, J. 1984. W National Park in Niger - a case for urgent assistance. Oryx: 18: 230-236.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Poche, R. M. 1973. Niger's threatened park. Oryx: 12: 216-222.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct","country_references":"Dupuy, A. R. 1971. Les oiseaux et les mammifères de la cuvette du Djoudj (Delta du fleuve Sénégal). Bulletin de l'I.F.A.N.: 33: 237-248.; Newby, J. 1981. The conservation status of the Sahelo-Saharan fauna of Africa. Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Mills, M. G. L. 1990. Lion \u003Ci\u003EPanthera leo\u003C/i\u003E and Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kruger National Park, South Africa. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 6.; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"extinct","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Anon. 1999. African Mammals Databank. www.gisbau.uniroma1.it/amd/ Instituto di Ecologia Applicata. Rome. ; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Anon. 1977. Report of the working group on the distribution and status of East African mammals, Phase 1: large mammals. East African Wildlife Society, Scientific and Technical Committee. ; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"extinct","country_references":"Harrison, D. L. 1972. The mammals of Arabia, Vol. III, Lagomorpha, Rodentia. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Krausman, P.R. and Morales, S.M. 2005. \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E. Mammalian Species: 771: 1-6.; Marker-Koaus, L. and Koaus, D. 1990. Status of the Cheetah in Zimbabwe and Namibia. Cat News: 12: 15-16.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Wilson, V. 1988. Cheetah in Zimbabwe. Cat News: 8: 9-10.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Acinonyx","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Except the populations of Botswana, Namibia and Zimbabwe ","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11985,"full_name":"Acrocephalus stentoreus","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"Danish","names":"Langnæbbet Drosselrørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Stentorkarekiet","convention_language":false,"id":null},{"lang":"English","names":"Clamorous Reed Warbler, Clamorous Reed-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Rousserolle stentor","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Diamond, J.M. 1975. Distribution ecology and habitats of some Bougainville birds (Solomn Islands). The Condor: 77: 14-23.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11986,"full_name":"Pterodroma cahow","author_year":"(Nichols \u0026 Mowbray, 1916)","common_names":[{"lang":"English","names":"Cahow, Bermuda Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel des Bermudes","convention_language":true,"id":null},{"lang":"Spanish","names":"Petrel cahow","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Pterodroma","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Aestrelata cahow","author_year":"Nichols \u0026 Mowbray, 1916"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11987,"full_name":"Eubalaena australis","author_year":"(Desmoulins, 1822)","common_names":[{"lang":"English","names":"Southern Right Whale","convention_language":true,"id":null},{"lang":"French","names":"Baleine australe","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena franca","convention_language":true,"id":null},{"lang":"Swedish","names":"sydkapare, sydval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Carroll, E., Patenaude, N., Alexander, A., Steel, D., Harcourt, R., Childerhouse, S., Smith, S., Bannister, J., Constantine, R. and Baker, C. 2011. Population structure and individual movement of southern right whales around New Zealand and Australia. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 432: 257–268.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Carroll, E., Patenaude, N., Alexander, A., Steel, D., Harcourt, R., Childerhouse, S., Smith, S., Bannister, J., Constantine, R. and Baker, C. 2011. Population structure and individual movement of southern right whales around New Zealand and Australia. \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 432: 257–268.; Richards, R. 2009. Past and present distributions of southern right whales (\u003Ci\u003EEubalaena australis\u003C/i\u003E). \u003Ci\u003ENew Zealand Journal of Zoology\u003C/i\u003E: 36: 447–459.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Bests, P.B., Payne, R., Rowntree, V., Palazzo, J. and Do Carma Both, M. 1993. Long-range movements of south Atlantic right whales Eubalaena australis. \u003Ci\u003EMarine Mammal Science\u003C/i\u003E: 9(3): 227–234; Hoyt, E. 2005. \u003Ci\u003EMarine protected areas for whales, dolphins and porpoises. A world handbook for Cetacean habitat conservation\u003C/i\u003E. London: Earthscan.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P. B. and Roscoe, M. J. 1974. Survey of right whales off South Africa, 1972, with observations from Tristan da Cunha, 1971-72. Report int. Commn Whal.: 24: 136-141.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Greig, J. C. 1983. The South African Southern Right Whale census, 1983. African Wildlife: 37: 184.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Bonner, W. N. 1987. Right whale sightings around South Georgia. British Antarctic Survey Bulletin: 76: 99-103.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenidae","genus_name":"Eubalaena","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Initially included within \u003Ci\u003EEubalaena glacialis\u003C/i\u003E (\u003Ci\u003Esensu lato\u003C/i\u003E), and subsequently also listed as \u003Ci\u003EBalaena glacialis australis\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":11988,"full_name":"Polystictus pectoralis","author_year":"(Vieillot, 1817)","common_names":[{"lang":"English","names":"Bearded Tachuri","convention_language":true,"id":null},{"lang":"French","names":"Tyranneau barbu","convention_language":true,"id":null},{"lang":"Spanish","names":"Tachurí canela","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Esquivel, A., Velazquez, M.C., Bodrati, A., Fraga, R., Del Castillo, H., Klavins, J., Clay, R.P., Madrono, A., and Peris, S.J. 2007. Status of the avifauna of San Rafael National Park, one of the last strongholds of the Atlantic forest in Paraguay. Bird Conservation International: 17: 301-317.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Polystictus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11989,"full_name":"Coracias garrulus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Czech","names":"Mandelík hajní","convention_language":false,"id":null},{"lang":"Danish","names":"Ellekrage","convention_language":false,"id":null},{"lang":"Dutch","names":"Scharrelaar","convention_language":false,"id":null},{"lang":"English","names":"European Roller, Roller","convention_language":true,"id":null},{"lang":"Finnish","names":"Sininärhi","convention_language":false,"id":null},{"lang":"French","names":"Rollier d'Europe","convention_language":true,"id":null},{"lang":"German","names":"Blauracke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szalakóta","convention_language":false,"id":null},{"lang":"Italian","names":"Ghiandaia marina","convention_language":false,"id":null},{"lang":"Polish","names":"Kraska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rolieiro, Rolieiro-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Sizovoronka","convention_language":false,"id":null},{"lang":"Spanish","names":"Carraca, Carraca Europea, Carraca común","convention_language":true,"id":null},{"lang":"Swedish","names":"Blåkråka, Blåråka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Prigogine, A. 1971. Les oiseaux de l`Itombwe et de son hinterland. Annales du Musée Royal de l`Afrique Centrale Serie In-8 Sciences Zoologiques: 185: 28-66","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferreira, J. A. 1973. Bichos da Guiné: caça, fauna, natureza.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Coraciiformes","class_name":"Aves","family_name":"Coraciidae","genus_name":"Coracias","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11993,"full_name":"Vanellus gregarius","author_year":"(Pallas, 1771)","common_names":[{"lang":"Dutch","names":"Steppekievit","convention_language":false,"id":null},{"lang":"English","names":"Sociable Lapwing, Sociable Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau sociable","convention_language":true,"id":null},{"lang":"Polish","names":"Czajka towarzyska","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría sociable","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Sachanowicz, K. A., Karczmarczyk, P. and Olszewski, A. 2002. Significant bird observations from Iran, August-September 1998. Sandgrouse: 24: 48-51.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eichhorn, G. and Khrokov, V. V. 2002. Decline in breeding Sociable Plover \u003Ci\u003EChettusia gregaria\u003C/i\u003E in the steppes of Naurzum and Korgalzhyn, Kazakhstan. Sandgrouse: 24: 22-27.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Charadrius gregarius","author_year":"Pallas, 1771"},{"full_name":"Chettusia gregaria","author_year":"(Pallas, 1771)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EChettusia gregaria\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11994,"full_name":"Phoebetria fusca","author_year":"(Hilsenberg, 1822)","common_names":[{"lang":"English","names":"Sooty Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros brun","convention_language":true,"id":null},{"lang":"Spanish","names":"Albatros ahumado","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.; Willis, E. O. and Oniki, Y. 1993. On a \u003Ci\u003EPhoebetria\u003C/i\u003E specimen from southern Brazil. Bulletin of the British Ornithologists' Club: 113: 60-61.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Phoebetria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea fusca","author_year":"Hilsenberg, 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":11995,"full_name":"Hippolais polyglotta","author_year":"(Vieillot, 1817)","common_names":[{"lang":"Danish","names":"Spottesanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Orpheusspotvogel","convention_language":false,"id":null},{"lang":"English","names":"Melodious Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Taiturikultarinta","convention_language":false,"id":null},{"lang":"French","names":"Hypolaïs polyglotte","convention_language":true,"id":null},{"lang":"German","names":"Orpheusspötter","convention_language":false,"id":null},{"lang":"Hungarian","names":"Déli geze","convention_language":false,"id":null},{"lang":"Italian","names":"Canapino","convention_language":false,"id":null},{"lang":"Polish","names":"Zaganiacz szczebiotliwy","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-poliglota","convention_language":false,"id":null},{"lang":"Swedish","names":"Polyglottsångare","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Hippolais","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":11997,"full_name":"Larus cirrocephalus","author_year":"Vieillot, 1818","common_names":[{"lang":"Dutch","names":"Grijskopmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Grey-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Elmberg, J. and Müller, L. 2003. The first records of Grey-headed Gull \u003Ci\u003ELarus cirrocephalus\u003C/i\u003E in Egypt. Sandgrouse: 25: 67-68.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Chroicocephalus cirrocephalus","author_year":"(Vieillot, 1818)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":11999,"full_name":"Delphinus delphis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Dolphin, Saddle-backed Dolphin, Short-beaked Saddleback Dolphin, Atlantic Dolphin, Pacific Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin commun","convention_language":true,"id":null},{"lang":"Italian","names":"Delfino comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Golfinho","convention_language":false,"id":null},{"lang":"Spanish","names":"Delfín común","convention_language":true,"id":null},{"lang":"Swedish","names":"sadeldelfin, äkta delfin, springare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Filby, N.E., Bossley, M., Sanderson, K.J., Martinez, E. and Stockin, K.A. 2010. Distribution and population demographics of Common Dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) in the Gulf St. Vincent, South Australia. Aquatic Mammals: 36: 33-45.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Common Dolphin \u003Ci\u003EDelphinus delphis\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 55-63.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Bearzi, G., Agazzi, S., Gonzalvo, J., Costa, M., Bonizzoni, S., Politi, E., Piroddi, C. and Reeves, R.R. 2008. Overfishing and the disappearance of short-beaked common dolphins from western Greece. Endangered Species Research: 5: 1-12.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. Distribution, frequency and biology of the common dolphin, \u003Ci\u003EDelphinus delphis\u003C/i\u003E Linnaeus, in the central Mediterranean Sea. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 199-200.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Beqiraj, S. and Dhora, D. 2007. Regional importance of the fauna of the cross-border River Buna. Rivers and citizens - Cross-border experiences in environmental protection and sustainable development .","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Neumann, D.R. 2001. Seasonal movements of short-beaked common dolphins (Delphinus delphis) in the north-western Bay of Plenty, New Zealand: influence of sea surface temperature and El Niño/La Niña. : 35: 371-374.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Syvertsen, P. O., van der Kooij, J. and Isaksen, K. 1999. Forekomsten av stripedelfin \u003Ci\u003EStenella coeruleoalba\u003C/i\u003E og delfin \u003Ci\u003EDelphinus delphis\u003C/i\u003E langs norskekysten. Fauna (Oslo): 52: 104-117.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Cañadas, A. and Hammond, P.S. 2008. Abundance and habitat preferences of the short-beaked common dolphin \u003Ci\u003EDelphinus delphis\u003C/i\u003E in the southwestern Mediterranean: implications for conservation. Endangered Species Research: 4: 309-331.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ; Perrin, W.F., Würsig, B. and Thewissen, J.G.M (eds.) 2009. \u003Ci\u003EEncyclopedia of Marine Mammals\u003C/i\u003E. Second edition. Academic Press. Amsterdam.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ktari-Chakroun, F. 1981. Nouvelles mentions de cetaces en Tunisie. Bulletin Inst. natn. scient. tech. Oceanogr. Peche Salammbo: 8: 119-121.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Selzer, L. A. and Payne, P. M. 1988. The distribution of white-sided (\u003Ci\u003ELagenorhynchus acutus\u003C/i\u003E) and common dolphins (\u003Ci\u003EDelphinus delphis\u003C/i\u003E) vs. environmental features of the continental shelf of the northeastern United States. Marine Mammal Science: 4: 141-153.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Delphinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Only Mediterranean population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"North and Baltic Sea, Mediterranean, Black Sea and eastern tropical Pacific populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12000,"full_name":"Amazonetta brasiliensis","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Brazilian Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard amazonette","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato Brasileño","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Amazonetta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas brasiliensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12001,"full_name":"Chloephaga rubidiceps","author_year":"P.L. Sclater, 1861","common_names":[{"lang":"English","names":"Ruddy-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette à tête rousse","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén colorado","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Madsen, J., Matus, R., Blank, O., Benegas, L., Mateazzi, G. and Blanco, D. E. 2003. Population status of the Ruddy-headed Goose (\u003Ci\u003EChloephaga rubidiceps\u003C/i\u003E) in Tierra del Fuego and Mainland Patagonia (Chile and Argentina). Ornithologia Neotropical: 14: 15-28.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.; Madsen, J., Matus, R., Blank, O., Benegas, L., Mateazzi, G. and Blanco, D. E. 2003. Population status of the Ruddy-headed Goose (\u003Ci\u003EChloephaga rubidiceps\u003C/i\u003E) in Tierra del Fuego and Mainland Patagonia (Chile and Argentina). Ornithologia Neotropical: 14: 15-28.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Ruddy-headed Goose"}]},{"id":12002,"full_name":"Turdus rubrocanus","author_year":"Hodgson, 1846","common_names":[{"lang":"English","names":"Chestnut Thrush","convention_language":true,"id":null},{"lang":"French","names":"Merle à tête grise","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12004,"full_name":"Vanellus leucurus","author_year":"(Lichtenstein, 1823)","common_names":[{"lang":"Dutch","names":"Witstaartkievit","convention_language":false,"id":null},{"lang":"English","names":"White-tailed Lapwing, White-tailed Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à queue blanche","convention_language":true,"id":null},{"lang":"Polish","names":"Czajka stepowa","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría coliblanca","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dijksen, L. J. 1996. White-tailed Plover \u003Ci\u003EVanellus leucurus\u003C/i\u003E, new for Ethiopia. Bull. Afr. Bird Club: 3: 130.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius leucurus","author_year":"Lichtenstein, 1823"},{"full_name":"Chettusia leucura","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12005,"full_name":"Phylloscopus pulcher","author_year":"Blyth, 1845","common_names":[{"lang":"English","names":"Buff-barred Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot élégant","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12006,"full_name":"Hippocamelus bisulcus","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"South Andean Deer, Patagonian Huemul, Chilean Huemul, South Andean Huemul","convention_language":true,"id":null},{"lang":"French","names":"Cerf des Andes méridionales, Huémul des Andes méridionales","convention_language":true,"id":null},{"lang":"Spanish","names":"Huemul, Ciervo andino meridional","convention_language":true,"id":null},{"lang":"Swedish","names":"chilensk huemul, chilensk gaffelhjort","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Flueck W. T. and Smith-Flueck J. M. 2006. Predicaments of endangered huemul deer, Hippocamelus bisulcus, in Argentina: a review. European Journal of Wildlife Research : 52: 69-80.; Olrog, C. C. 1983. La situación presente de los carnívoros y ungulados Argentinos. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 619-623.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Smith-Flueck, J. A. 2000. The current situation of the Patagonian huemul. Monografia L.O.L.A.: 3: 67-145.; Smith-Flueck, J. A. M. and Flueck, W. T. 2001. Natural mortality patterns in a population of southern Argentina huemul (\u003Ci\u003EHippocamelus bisulcus\u003C/i\u003E): an endangered Andean cervid. Zeitschrift für Jagdwissenschaft: 47: 178-188.; Whitehead, G. K. 1972. Deer of the world. Constable. London.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Cofre, H. and Marquet, P. A. 1999. Conservation status, rarity, and geographic priorities for conservation of Chilean mammals: an assessment. Biological Conservation: 88: 53-68.; Miller, S. D., Rottmann, J., Raedeke, K. J. and Taber, R. D. 1983. Endangered mammals of Chile: status and conservation. Biological Conservation: 25: 335-352.; Povilitis, A. 1983. The Huemul in Chile: national symbol in jeopardy? Oryx: 17: 34-40.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Smith-Flueck, J. A. 2000. The current situation of the Patagonian huemul. Monografia L.O.L.A.: 3: 67-145.; Whitehead, G. K. 1972. Deer of the world. Constable. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Cervidae","genus_name":"Hippocamelus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"04/12/2010","name":"South Andean Huemul"}]},{"id":12007,"full_name":"Phalaropus fulicarius","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Rosse Franjepoot","convention_language":false,"id":null},{"lang":"English","names":"Grey Phalarope, Red Phalarope","convention_language":true,"id":null},{"lang":"Finnish","names":"Isovesipääsky","convention_language":false,"id":null},{"lang":"French","names":"Phalarope à bec large","convention_language":true,"id":null},{"lang":"German","names":"Thorshühnchen","convention_language":false,"id":null},{"lang":"Italian","names":"Falaropo beccolargo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Falaropo-de -bico-grosso","convention_language":false,"id":null},{"lang":"Spanish","names":"Falaropo Picogrueso","convention_language":true,"id":null},{"lang":"Swedish","names":"Brednäbbad simsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Wells, D. R. 1965. Migration off the west coast of Africa in March 1965. Bull. Nigerian Ornithol. Soc.: 2: 88-90.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Aston, P. 1994. Grey Phalarope: the first records for Hong Kong. Hong Kong Bird Report 1994: 117-120.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Cramp, S. and Simmons, K. E. L. 1983. The Birds of the Western Palearctic. Vol. III. Waders to Gulls. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woo, Y.-T. and Lee, J.-N. 1996. Newly recorded birds of 6 species and subspecies in Korea. Korean Journal of Ornithology: 3: 59-61.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Phalaropus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa fulicaria","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12008,"full_name":"Larus dominicanus","author_year":"M. H. K. Lichtenstein, 1823","common_names":[{"lang":"English","names":"Kelp Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland dominicain","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota cocinera","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Hayes, F. E., White, G. L., Frost, M. D. Sanasie, B., Kilpatrick, H. and Massiah, E. B. 2002. First records of Kelp Gull \u003Ci\u003ELarus dominicanus\u003C/i\u003E for Trinidad and Barbados. Cotinga: 18: 85-88.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Haase, B. 1996. Kelp Gull \u003Ci\u003ELarus domincanus\u003C/i\u003E: a new breeding species for Ecuador. Cotinga: 5: 73-74.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Pineau, R., Kayser, Y., Sall, M., Gueye, A. and Hafner, H. 2001. The Kelp Gull at Banc d'Arguin - a new Western Palearctic bird. Birding World: 14: 110-111.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; Hayes, F. E., White, G. L., Frost, M. D. Sanasie, B., Kilpatrick, H. and Massiah, E. B. 2002. First records of Kelp Gull \u003Ci\u003ELarus dominicanus\u003C/i\u003E for Trinidad and Barbados. Cotinga: 18: 85-88.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12009,"full_name":"Calidris melanotos","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Czech","names":"Jespák skvrnitý","convention_language":false,"id":null},{"lang":"Danish","names":"Stribet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Gestreepte Strandloper, Gestreepte Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Pectoral Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Palsasirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau à poitrine cendrée","convention_language":true,"id":null},{"lang":"German","names":"Graubruststrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vándropartfutó, Vándorpartfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piro-piro pettorale","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus arktyczny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-peitoral","convention_language":false,"id":null},{"lang":"Russian","names":"Dutysh","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Pectoral","convention_language":true,"id":null},{"lang":"Swedish","names":"Tuvsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Luigi, G. 1988. Notes on some birds of northeastern Brazil (3). Bulletin of the British Ornithologists' Club: 108: 75-79.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia melanotos","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa melanotos","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12010,"full_name":"Marmaronetta angustirostris","author_year":"(Ménétriés, 1832)","common_names":[{"lang":"Danish","names":"Marmorand","convention_language":false,"id":null},{"lang":"Dutch","names":"Marmereend","convention_language":false,"id":null},{"lang":"English","names":"Marbled Duck, Marbled Teal","convention_language":true,"id":null},{"lang":"Finnish","names":"Marmorisorsa","convention_language":false,"id":null},{"lang":"French","names":"Sarcelle marbrée, Marmaronette marbrée","convention_language":true,"id":null},{"lang":"German","names":"Marmelente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Márványos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Anatra marmorizzata, Carganella marmorizzata, Anata marmorizzata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pardilheira","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta Pardilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Marmorand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"extinct","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Bos, J. F. F. P., Essetti, I. and Gilissen, N. L. M. 2000. Record counts of Marbled Teal in Tunisia, October 1999: consequences for population estimates and distribution. Threatened Waterfowl Research Group News: 12: 49-53.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of threatened waterfowl in the south-east Caspian region of Turkmenistan. Threatened Waterfowl Research Group News: 13: 68-71.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Marmaronetta","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12012,"full_name":"Vanellus albiceps","author_year":"Gould, 1834","common_names":[{"lang":"English","names":"White-headed Lapwing","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à tête blanche","convention_language":true,"id":null},{"lang":"Spanish","names":"Avefría coroniblanca","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Xiphidiopterus albiceps","author_year":"(Gould, 1834)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12013,"full_name":"Gorsachius goisagi","author_year":"(Temminck, 1835)","common_names":[{"lang":"English","names":"Japanese Night-Heron","convention_language":true,"id":null},{"lang":"French","names":"Bihoreau goisagi","convention_language":true,"id":null},{"lang":"Spanish","names":"Martinete Japonés","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Gorsachius","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Nycticorax goisagi","author_year":"Temminck, 1835"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12014,"full_name":"Rissa tridactyla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ride","convention_language":false,"id":null},{"lang":"Dutch","names":"Drieteenmeeuw","convention_language":false,"id":null},{"lang":"English","names":"Black-legged Kittiwake, Kittiwake","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukajava","convention_language":false,"id":null},{"lang":"French","names":"Mouette tridactyle","convention_language":true,"id":null},{"lang":"German","names":"Dreizehenmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Csüllõ","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano tridattilo","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa trójpalczasta","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-tridáctila","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Tridáctila","convention_language":true,"id":null},{"lang":"Swedish","names":"Tretåig mås","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Aspinall, S. 2005. Azerbaijan: a miscellany of recent bird observations (status and occurrence of selected visiting species and amending known breeding ranges). Sandgrouse: 27: 46-52.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Latta, S. 1997. Two new species of birds from Hispaniola: Wood Thrush and Black-legged Kittiwake. El Pitirre: 10: 59.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Rissa","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus tridactylus","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12015,"full_name":"Arenaria melanocephala","author_year":"(Vigors, 1829)","common_names":[{"lang":"English","names":"Black Turnstone","convention_language":true,"id":null},{"lang":"French","names":"Tournepierre noir","convention_language":true,"id":null},{"lang":"Spanish","names":"Vuelvepiedras oscuro","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Arenaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Strepsilas melanocephalus","author_year":"Vigors, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12016,"full_name":"Vanellus vanellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Vibe","convention_language":false,"id":null},{"lang":"Dutch","names":"Kievit","convention_language":false,"id":null},{"lang":"English","names":"Lapwing, Northern Lapwing","convention_language":true,"id":null},{"lang":"Finnish","names":"Töyhtöhyyppä","convention_language":false,"id":null},{"lang":"French","names":"Vanneau huppé","convention_language":true,"id":null},{"lang":"German","names":"Kiebitz","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bíbic","convention_language":false,"id":null},{"lang":"Italian","names":"Pavoncella","convention_language":false,"id":null},{"lang":"Polish","names":"Czajka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abibe-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Avefría Europea","convention_language":true,"id":null},{"lang":"Swedish","names":"Tofsvipa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Tringa vanellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12017,"full_name":"Pluvialis squatarola","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kulík bledý","convention_language":false,"id":null},{"lang":"Danish","names":"Strandhjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Zilverplevier","convention_language":false,"id":null},{"lang":"English","names":"Black-bellied Plover, Grey Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Tundrakurmitsa","convention_language":false,"id":null},{"lang":"French","names":"Pluvier argenté","convention_language":true,"id":null},{"lang":"German","names":"Kiebitzregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ezüstlile","convention_language":false,"id":null},{"lang":"Italian","names":"Pivieressa","convention_language":false,"id":null},{"lang":"Polish","names":"Siewnica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-cinzenta","convention_language":false,"id":null},{"lang":"Russian","names":"Tuless","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Kustpipare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Sharpe, C. J., Ascanio-Echeverria, D. and Rodríguez, G. A. 2001. Further range extensions and noteworthy records for Venezuelan birds. Bulletin of the British Ornithologists' Club: 121: 50-62.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Squatarola squatarola","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa squatarola","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12018,"full_name":"Tadorna ferruginea","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Husice rezavá","convention_language":false,"id":null},{"lang":"Danish","names":"Rustand","convention_language":false,"id":null},{"lang":"Dutch","names":"Casarca","convention_language":false,"id":null},{"lang":"English","names":"Ruddy Shelduck","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruostesorsa","convention_language":false,"id":null},{"lang":"French","names":"Tadorne casarca","convention_language":true,"id":null},{"lang":"German","names":"Rostgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Vörös ásólúd","convention_language":false,"id":null},{"lang":"Italian","names":"Casarca","convention_language":false,"id":null},{"lang":"Polish","names":"Kazarka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-ferrugíneo","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarro canelo","convention_language":true,"id":null},{"lang":"Swedish","names":"Rostand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"introduced (?)","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas ferruginea","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12019,"full_name":"Synthliboramphus wumizusume","author_year":"(Temminck, 1836)","common_names":[{"lang":"English","names":"Crested Murrelet, Japanese Murrelet","convention_language":true,"id":null},{"lang":"French","names":"Guillemot du Japon","convention_language":true,"id":null},{"lang":"Spanish","names":"Mérgulo Japonés","convention_language":true,"id":null}],"distributions":[{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Alcidae","genus_name":"Synthliboramphus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Uria wumizusume","author_year":"Temminck, 1835"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1989","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12020,"full_name":"Gallinago solitaria","author_year":"Hodgson, 1831","common_names":[{"lang":"English","names":"Solitary Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine solitaire","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza solitaria","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella solitaria","author_year":"(Hodgson, 1831)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12021,"full_name":"Lepidochelys kempii","author_year":"(Garman, 1880)","common_names":[{"lang":"English","names":"Atlantic Ridley, Gulf Ridley, Kemp's Ridley, Mexican Ridley","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Insacco, G. and Spadola, F. 2010. First record of Kemp's ridley sea turtle, \u003Ci\u003ELepidochelys kempii\u003C/i\u003E (Garman, 1880) (Cheloniidae), from the Italian waters (Mediterranean Sea). Acta Herpetologica: 5: 113-117.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Devaux, B. and Bonin, F. 2010. Oh, happy days! / Floride, Texas. La Tortue: 84: 32-53.; Landry Jr., A. M., Costa, D. T., Kenyon II, L. F. and Coyne, M. S. 2005. Population characteristics of Kemp's Ridley Sea Turtles in nearshore waters of the upper Texas and Louisiana coasts. Chelonian Conservation and Biology: 4(4): 801-807","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Lepidochelys","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":12022,"full_name":"Turdus migratorius","author_year":"Linnaeus, 1766","common_names":[{"lang":"Dutch","names":"Roodborstlijster","convention_language":false,"id":null},{"lang":"English","names":"American Robin","convention_language":true,"id":null},{"lang":"French","names":"Merle d'Amérique","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12023,"full_name":"Saxicola caprata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"Danish","names":"Sort Bynkefugl","convention_language":false,"id":null},{"lang":"English","names":"Pied Bushchat","convention_language":true,"id":null},{"lang":"French","names":"Tarier pie","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12024,"full_name":"Plecotus auritus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshgjate","convention_language":false,"id":null},{"lang":"Croatian","names":"Sjeverni dugouhi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr ušatý","convention_language":false,"id":null},{"lang":"Danish","names":"Langøret flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Grootoorvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Brown Long-eared Bat, Brown Big-eared Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurkõrv, Pruun-suurkõrv","convention_language":false,"id":null},{"lang":"Finnish","names":"Korvayökkö","convention_language":false,"id":null},{"lang":"French","names":"Oreillard roux","convention_language":true,"id":null},{"lang":"German","names":"Braunes Langohr","convention_language":false,"id":null},{"lang":"Icelandic","names":"Langeyrnablaka","convention_language":false,"id":null},{"lang":"Italian","names":"Orecchione comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Rudasis ausylis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Langøreflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Gacek brunatny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-orelhudo-castanho","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-urecheat-brun","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier svetlý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago orejudo dorado","convention_language":true,"id":null},{"lang":"Swedish","names":"Långörad fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spitzenberger, F. Strelkov, P. and Haring, E. 2003. Morphology and mitochondrial DNA sequences show that \u003Ci\u003EPlecotus alpinus\u003C/i\u003E Kiefer \u0026 veith, 2002 and \u003Ci\u003EPlecotus microdontus\u003C/i\u003E Spitzenberger, 2002 are synonyms of \u003Ci\u003EPlecotus macrobullaris\u003C/i\u003E Kuzjakin, 1965. Natura Croatica: 12(2): 39-53","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Benda, P. and Ivanova, T. 2003. Long-eared bats, genus \u003Ci\u003EPlecotus\u003C/i\u003E (Mammalia: Chiroptera), in Bulgaria: a revision of systematic and distributional status. Journal of the National Museum, Natural History Series: 172: 157-172.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pavlinic, I. and Tvrtkovic, N. 2004. Altitudinal distribution of four \u003Ci\u003EPlecotus\u003C/i\u003E species (Mammalia, Vespertilionidae) occurring in Croatia. Nat. Croat.: 13: 395-401.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Government of the Republic of Montenegro Ministry of Space Development. 1997. Spatial plan of the national park Biogradska Gora, Montenegro. Institute for Town Planning and Design, Joint Company . Podgorica. ","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Palmeirim, J. M. 1990. Bats of Portugal: zoogeography and systematics. University of Kansas Museum of Natural History, Miscellaneous Publications: 82: 53 pp.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bashta, A.-T. 2000. [Observation of rare bat species (Mammalia, Chiroptera) in the Beskids (Ukrainian Carpathians.]. Vestnik Zoologii: 34: 66.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Volozheninov, N. N. 1981. [On the ecology of Chiroptera of the Mal'guzarsk Range.]. Uzbekskii biol. Zh.: 1981: 51-53.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Plecotus homochrous","author_year":"Hodgson, 1847"},{"full_name":"Plecotus ognevi","author_year":"Kishida, 1927"},{"full_name":"Plecotus sacrimontis","author_year":"G. M. Allen, 1908"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12025,"full_name":"Luscinia luscinia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Slavík tmavý","convention_language":false,"id":null},{"lang":"Danish","names":"Nattergal","convention_language":false,"id":null},{"lang":"Dutch","names":"Noordse Nachtegaal","convention_language":false,"id":null},{"lang":"English","names":"Thrush Nightingale","convention_language":true,"id":null},{"lang":"Finnish","names":"Satakieli","convention_language":false,"id":null},{"lang":"French","names":"Rossignol progné","convention_language":true,"id":null},{"lang":"German","names":"Sprosser","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy fülemüle","convention_language":false,"id":null},{"lang":"Italian","names":"Usignolo maggiore","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-russo","convention_language":false,"id":null},{"lang":"Russian","names":"Obyknovenny Solovey","convention_language":false,"id":null},{"lang":"Spanish","names":"Ruiseñor Ruso","convention_language":true,"id":null},{"lang":"Swedish","names":"Näktergal","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"O'Sullivan, O. and Smiddy, P. 1990. Thirty-seventh Irish Bird Report, 1989. Irish Birds: 4: 231-257.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Luscinia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erithacus luscinia","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12026,"full_name":"Cyornis rubeculoides","author_year":"(Vigors, 1831)","common_names":[{"lang":"English","names":"Blue-throated Blue-flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à menton bleu","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. 2000. Twenty six further new species for Cambodia. Cambodia Bird News: 6: 37-43.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Hale, M. and Hackett, J. 1994. Blue-throated Flycatcher in Ho Chung Woods: the first record for Hong Kong. Hong Kong Bird Report 1994 : 132-133.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12027,"full_name":"Urosphena squameiceps","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Asian Stubtail","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle de Swinhoe","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Curio, E., Hornbuckle, J., de Soye, Y., Aston, P. and Lastimoza, L. L. 2001. New bird records for the island of Panay, Philippines, including the first record of the Asian Stubtail \u003Ci\u003EUrosphena squameiceps\u003C/i\u003E for the Philippines. Bulletin of the British Ornithologists' Club: 121: 183-197.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Urosphena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Cettia squameiceps","author_year":"(Swinhoe, 1863)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12028,"full_name":"Phylloscopus affinis","author_year":"(Tickell, 1833)","common_names":[{"lang":"English","names":"Tickell's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Tickell","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12029,"full_name":"Platalea alba","author_year":"Scopoli, 1786","common_names":[{"lang":"English","names":"African Spoonbill","convention_language":true,"id":null},{"lang":"French","names":"Spatule d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Espátula Africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Saghier, O. and Porter, R. F. 1997. The first African Spoonbill Platalea alba in Yemen. Sandgrouse: 19: 141.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Threskiornithidae","genus_name":"Platalea","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Excluding Malagasy population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12031,"full_name":"Phylloscopus fuligiventer","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Smoky Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot enfumé","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12032,"full_name":"Catharus fuscescens","author_year":"(Stephens, 1817)","common_names":[{"lang":"Dutch","names":"Veery","convention_language":false,"id":null},{"lang":"English","names":"Veery","convention_language":true,"id":null},{"lang":"French","names":"Grive fauve","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Anon. 2002. Four new bird records for Nicaragua and the rediscovery of the Golden-cheeked Warbler (\u003Ci\u003EDendroica chrysoparia\u003C/i\u003E). La Tangara: 40: 2.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Múnera-Roldán, C., Cody, M. L., Schiele-Zavala, R. H., Sigel, B. J., Woltmann, S. and Kjeldsen, J. P. 2007. New and noteworthy records of birds from south-eastern Nicaragua. Bulletin of the British Ornithologists' Club: 127: 152-161.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Robbins, M. B., Faucett, R. C. and Rice, N. H. 1999. Avifauna of a Paraguayan cerrado locality: Parque Nacional Serrania San Luis, depto. Concepción. Wilson Bulletin: 111: 216-228.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Hylocichla fuscescens","author_year":"(Stephens, 1817)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12033,"full_name":"Phylloscopus reguloides","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Blyth's Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot de Blyth","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12034,"full_name":"Anser erythropus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Husa malá","convention_language":false,"id":null},{"lang":"Danish","names":"Dværggås","convention_language":false,"id":null},{"lang":"Dutch","names":"Dwerggans","convention_language":false,"id":null},{"lang":"English","names":"Lesser White-fronted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiljuhanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie naine","convention_language":true,"id":null},{"lang":"German","names":"Zwerggans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis lilik","convention_language":false,"id":null},{"lang":"Italian","names":"Oca lombardella minore","convention_language":false,"id":null},{"lang":"Norwegian","names":"Dverggås","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-pequeno-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Piskulka","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar chico, Ánsar careto chico","convention_language":true,"id":null},{"lang":"Swedish","names":"Fjällgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Bejenaru, I., Andrrev, A. and Sirodoev, G. 2003. Information Sheet on Ramsar Wetlands (RIS) - Republic of Moldova, Lower Dniester, 2003. http://www.ramsar.org/ris\u003Ci\u003Emoldova\u003C/i\u003Elower_dniester.htm .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kreuzberg-Mukhina, E., Kashkarov, D. Yu., Lanovenko, Y. N., Nazarov, O. P. and Shernazarov, E. S. 2000. Status of threatened Anatidae in Uzbekistan. Threatened Waterfowl Research Group News: 12: 70-75.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[{"full_name":"Anas erythropus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12035,"full_name":"Phocoena phocoena","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Marsvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Bruinvis","convention_language":false,"id":null},{"lang":"English","names":"Harbour Porpoise, Common Porpoise","convention_language":true,"id":null},{"lang":"French","names":"Marsouin, Marsouin commun","convention_language":true,"id":null},{"lang":"German","names":"Schweinswal","convention_language":false,"id":null},{"lang":"Italian","names":"Marsuino, Focena","convention_language":false,"id":null},{"lang":"Norwegian","names":"Nise","convention_language":false,"id":null},{"lang":"Polish","names":"morswin","convention_language":false,"id":null},{"lang":"Spanish","names":"Marsopa común","convention_language":true,"id":null},{"lang":"Swedish","names":"Tumlare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Gaskin, D. E. 1992. Status of the Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E in Canada. Canadian Field Naturalist: 106: 36-54.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"extinct","country_references":"HELCOM Red List Marine Mammal Expert Group. 2013. \u003Ci\u003EPhocoena phocoena\u003C/i\u003E. Distribution and status in the Baltic Sea region. www.helcom.fi","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J. and Nowak, E. 1978. Rote liste der säugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefährdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Scheidat, M., Gilles, A., Kock, K.H. and Siebert, U. 2008. Harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E abundance in the southwestern Baltic Sea. Endangered Species Research: 5: 215-223.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Law, R.J. and Whinnet, J.A. 1992. Polycyclic aromatic hydrocarbons in muscle tissue of harbour porpoises (\u003Ci\u003EPhocoena phocoena\u003C/i\u003E) from UK waters. \u003Ci\u003EMarine Pollution Bulletin\u003C/i\u003E: 24: 550–553.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Gaskin, D. E., Yamamoto, S. and Kawamura, A. 1993. Harbor Porpoise, \u003Ci\u003EPhocoena phocoena\u003C/i\u003E in the coastal waters of North Japan. Fishery Bulletin: 93: 440-454.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Skeiveris, R. 1992. Observations of Baltic seals and dolphins on Lithuanian seacoast. Tartu Ulikooli Toimetised: 955: 148-150.","id":null},{"name":"Malta","country":"Malta","tags_list":"extinct (?)","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Hammond, P.S., Berggren, P., Benke, H., Borchers, D.L., Collet, A., Heide-Jorgensen, M.P., Heimlich, S., Hiby, A.R., Leopold, M.F. and Oien, N. 2002. Abundance of harbour porpoise and other cetaceans in the North Sea and adjacent waters. \u003Ci\u003EJournal of Applied Ecology\u003C/i\u003E: 39: 361–376.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Skora, K. E. 1991. Notes on Cetacea observed in the Polish Baltic Sea: 1979-1990. Aquatic Mammals: 17: 67-70.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Radu, G. and Anton, E. 2014. Impact of turbot fishery on cetaceans in the Romanian Black Sea area. \u003Ci\u003EScientia Marina\u003C/i\u003E: 78S1: 103–109.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Hammond, P.S., Berggren, P., Benke, H., Borchers, D.L., Collet, A., Heide-Jorgensen, M.P., Heimlich, S., Hiby, A.R., Leopold, M.F. and Oien, N. 2002. Abundance of harbour porpoise and other cetaceans in the North Sea and adjacent waters. \u003Ci\u003EJournal of Applied Ecology\u003C/i\u003E: 39: 361–376.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Anon. 2001. Biodiversity assessment for Ukraine. Chemonics International Inc. and Environment International Ltd. Kiev. 1-40.; Viaud-Martínez, K., Martínez Vergara, M., Goldin, P., Ridoux, V., Öztürk, A., Öztürk, B., Rosel, P., Frantzis, A., Komnenou, A. and Bohonak, A. 2007. Morphological and genetic differentiation of the Black Sea harbour porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E . \u003Ci\u003EMarine Ecology Progress Series\u003C/i\u003E: 338: 281–294.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Read, A. J. 1999. Harbour Porpoise \u003Ci\u003EPhocoena phocoena\u003C/i\u003E (Linnaeus, 1758). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Phocoenidae","genus_name":"Phocoena","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"North West African population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":"Western North Atlantic, and Black Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/01/1989","short_note_en":null,"full_note_en":"North and Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":12036,"full_name":"Bucephala clangula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Hohol severní","convention_language":false,"id":null},{"lang":"Danish","names":"Hvinand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brilduiker","convention_language":false,"id":null},{"lang":"English","names":"Goldeneye, Common Goldeneye","convention_language":true,"id":null},{"lang":"Finnish","names":"Telkkä","convention_language":false,"id":null},{"lang":"French","names":"Garrot sonneur, Garrot à oeil d'or, Garrot à œil d'or","convention_language":true,"id":null},{"lang":"German","names":"Schellente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kerceréce","convention_language":false,"id":null},{"lang":"Italian","names":"Quattrocchi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-olho-d'ouro","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Osculado","convention_language":true,"id":null},{"lang":"Swedish","names":"Knipa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ribara, I. 2006. Information sheet on Ramsar Wetlands (RIS): Labudovo Okno. http://www.wetlands.org/reports/ris/3RS005_RIS2006.pdf.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Combrisson, D. 1999. [First breeding of Goldeneye in France.]. Ornithos: 6: 138-140.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Bucephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas clangula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12037,"full_name":"Sotalia fluviatilis","author_year":"(Gervais \u0026 Deville, 1853)","common_names":[{"lang":"Dutch","names":"Tucuxi","convention_language":false,"id":null},{"lang":"English","names":"Grey Dolphin, Estuarine Dolphin, Tucuxi","convention_language":true,"id":null},{"lang":"French","names":"Sotalie","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo negro","convention_language":true,"id":null},{"lang":"Swedish","names":"deltadelfin","convention_language":false,"id":null}],"distributions":[{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"da Silva, V. M. F. and Best, R. C. 1994. Tucuxi \u003Ci\u003ESotalia fluviatilis\u003C/i\u003E (Gervais, 1853). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Carr, T. and Bonde, R. K. 2000. Tucuxi (\u003Ci\u003ESotalia fluviatilis\u003C/i\u003E) occurs in Nicaragua, 800 km north of its previously known range. Marine Mammal Science: 16: 447-452.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Lim, B. K., Engstrom, M. D. and Ochoa G., J. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Mammals. Bulletin of the Biological Society of Washington: 13: 77-92.; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sotalia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12038,"full_name":"Oenanthe hispanica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Middelhavsstenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Blonde Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Black-eared Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Rusotasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet oreillard","convention_language":true,"id":null},{"lang":"German","names":"Mittelmeer-Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Déli hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Monachella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-ruivo","convention_language":false,"id":null},{"lang":"Russian","names":"Pleshanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Rubia","convention_language":true,"id":null},{"lang":"Swedish","names":"Medelhavsstenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; van den Elzen, R. 1975. Zur Kenntnis der Avifauna Kameruns. Bonner Zoologische Beiträge: 26: 49-75.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12039,"full_name":"Anous stolidus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Dutch","names":"Noddy","convention_language":false,"id":null},{"lang":"English","names":"Brown Noddy, Common Noddy","convention_language":true,"id":null},{"lang":"French","names":"Noddi brun","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiñosa boba","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Teixeira, D. M., Nacinovic, J. B., Schloemp, I. M. and Kischlat, E. E. 1988. Notes on some Brazilian seabirds (3). Bulletin of the British Ornithologists' Club: 108: 136-139.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sterna stolida","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12040,"full_name":"Limosa limosa","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Stor Kobbersneppe","convention_language":false,"id":null},{"lang":"Dutch","names":"Grutto","convention_language":false,"id":null},{"lang":"English","names":"Black-tailed Godwit","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustapyrstökuiri","convention_language":false,"id":null},{"lang":"French","names":"Barge à queue noire, Barge à queue noire","convention_language":true,"id":null},{"lang":"German","names":"Uferschnepfe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy goda","convention_language":false,"id":null},{"lang":"Italian","names":"Pittima reale","convention_language":false,"id":null},{"lang":"Norwegian","names":"Svarthalespove","convention_language":false,"id":null},{"lang":"Polish","names":"Rycyk","convention_language":false,"id":null},{"lang":"Portuguese","names":"Maçarico-de-bico-direito","convention_language":false,"id":null},{"lang":"Spanish","names":"Aguja Colinegra","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödspov","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Beintema, A. J. and Drost, N. 1986. Migration of the Black-tailed Godwit. Gerfaut: 76: 37-62.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; Hayes, F. E. and Kenefick, M. 2002. First record of Black-tailed Godwit \u003Ci\u003ELimosa limosa\u003C/i\u003E for South America. Cotinga: 17: 20-22.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Limosa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax limosa","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12041,"full_name":"Scolopax minor","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"American Woodcock","convention_language":true,"id":null},{"lang":"French","names":"Bécasse d'Amérique","convention_language":true,"id":null},{"lang":"Spanish","names":"Chocha Americana","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Scolopax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Philohela minor","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12042,"full_name":"Myotis daubentonii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"English","names":"Daubenton's Bat","convention_language":true,"id":null},{"lang":"Swedish","names":"vattenfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Borissenko, A. V., Kruskop, S. V. and Kashtalian, A. P. 1999. [New mammal species (Chiroptera, Insectivora) in the Berezinsky Biosphere Reserve.]. Vestnik Zoologii: 33: 107-113, 126.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Feng Zuo-jian, Zheng Chang-lin and Cai Gui-quan. 1980. [On mammals from south-eastern Xizang (Tibet).]. Acta Zoologica Sinica: 26: 91-97.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Helversen, O. v. and Weid, R. 1990. Der Verbreitung einiger Fledermausarten in Griechenland. Bonner Zoologische Beiträge: 41: 9-22.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Pinder, N. J. and Bolton, S. M. 1990. Some recent bat records. Peregrine: 6: 66-67.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Maeda, K. 1985. New records of the eastern Daubenton's bats \u003Ci\u003EMyotis daubentoni ussuriensis\u003C/i\u003E Ognev, 1927, in Hokkaido and variations in external and skull dimensions. J. Mammal. Soc. Japan: 10: 159-164.; Sato, M., Maeda, K. and Akazawa, Y. 2001. [Distribution of bats in Toyatomi and Horonobe, northern Hokkaido.]. Rishiri Studies: 20: 23-28.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Kokurewicz, T. 1995. Increased population of Daubenton's bat (\u003Ci\u003EMyotis daubentoni\u003C/i\u003E (Kuhl, 1819)) (Chiroptera: Vespertilionidae) in Poland. Myotis: 32: 155-161.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Dong Ho Yoo and Myung Hee Yoon. 1992. A karyotypic study on six Korean vespertilionid bats. Korean Journal of Zoology: 33: 489-496.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 1988. The presence of \u003Ci\u003EMyotis daubentoni\u003C/i\u003E (Kuhl, 1819) in Turkey. Mammalia: 52: 415-418.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Bates, P. J. J., Hendrichsen, D. K., Walston, J. L. and Hayes, B. 1999. A review of the mouse-eared bats (Chiroptera: Vespertilionidae: \u003Ci\u003EMyotis\u003C/i\u003E) from Vietnam with significant new records. Acta Chiropterologica: 1: 47-74.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Myotis nathalinae","author_year":"Tupinier, 1977"},{"full_name":"Myotis petax","author_year":"Hollister, 1912"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12043,"full_name":"Acrocephalus agricola","author_year":"(Jerdon, 1845)","common_names":[{"lang":"Czech","names":"Rákosník plavý","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Rørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Veldrietzanger","convention_language":false,"id":null},{"lang":"English","names":"Paddyfield Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Kenttäkerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle isabelle`, Rousserolle isabelle","convention_language":true,"id":null},{"lang":"German","names":"Feldrohrsänger","convention_language":false,"id":null},{"lang":"Hungarian","names":"Rozsdás nádiposzáta, Rozsdás ná diposzáta","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola di Jerdon","convention_language":false,"id":null},{"lang":"Polish","names":"Trcinniczek kaspijski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-agrícola","convention_language":false,"id":null},{"lang":"Spanish","names":"Carricero Agrícola","convention_language":true,"id":null},{"lang":"Swedish","names":"Fältsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.; Merne, O. J. and Walsh, A. 1988. Paddyfield Warbler in County Wexford - a species new to Ireland. Irish Birds: 3: 592-595.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12044,"full_name":"Gazella erlangeri","author_year":"Neumann, 1906","common_names":[{"lang":"English","names":"Neumann's Gazelle","convention_language":true,"id":null}],"distributions":[{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Gazella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGazella gazella\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12046,"full_name":"Phylloscopus plumbeitarsus","author_year":"Swinhoe, 1861","common_names":[{"lang":"English","names":"Two-barred Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12047,"full_name":"Locustella lanceolata","author_year":"(Temminck, 1840)","common_names":[{"lang":"Dutch","names":"Kleine Sprinkhaanzanger","convention_language":false,"id":null},{"lang":"English","names":"Lanceolated Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Viirusirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle lancéolée","convention_language":true,"id":null},{"lang":"German","names":"Strichelschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Foltos tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Locustella lanceolata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-lanceolada","convention_language":false,"id":null},{"lang":"Russian","names":"Pyatnisty Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Lanceolada","convention_language":true,"id":null},{"lang":"Swedish","names":"Träsksångare","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12048,"full_name":"Oenanthe oenanthe","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"(Almindelig) Stenpikker","convention_language":false,"id":null},{"lang":"Dutch","names":"Tapuit","convention_language":false,"id":null},{"lang":"English","names":"Northern Wheatear","convention_language":true,"id":null},{"lang":"Finnish","names":"Kivitasku","convention_language":false,"id":null},{"lang":"French","names":"Traquet motteux","convention_language":true,"id":null},{"lang":"German","names":"Steinschmätzer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Hantmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Culbianco","convention_language":false,"id":null},{"lang":"Portuguese","names":"Chasco-cinzento","convention_language":false,"id":null},{"lang":"Spanish","names":"Collalba Gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Stenskvätta","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Nial Moores and East Chunnam Institute for Community Studies. 2001. Gageo Island and other islands in the Huksan Do Chain: a summary abstract of their importance to the study of bird migration. http://www.wbkenglish.com/gageo%20do.asp . ","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12049,"full_name":"Larus hyperboreus","author_year":"Gunnerus, 1767","common_names":[{"lang":"Czech","names":"Racek šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Gråmåge","convention_language":false,"id":null},{"lang":"Dutch","names":"Grote Burgemeester","convention_language":false,"id":null},{"lang":"English","names":"Glaucous Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Isolokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland bourgmestre","convention_language":true,"id":null},{"lang":"German","names":"Eismöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Jeges sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano glauco","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa blada","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-hiperbórea","convention_language":false,"id":null},{"lang":"Spanish","names":"Gavión Hiperbóreo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vittrut","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12050,"full_name":"Tringa solitaria","author_year":"Wilson, 1813","common_names":[{"lang":"Danish","names":"Amerikansk Svaleklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Bosruiter","convention_language":false,"id":null},{"lang":"English","names":"Solitary Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier solitaire","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos solitario","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12051,"full_name":"Tachybaptus ruficollis","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Potápka malá","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Lappedykker","convention_language":false,"id":null},{"lang":"Dutch","names":"Dodaars","convention_language":false,"id":null},{"lang":"English","names":"Little Grebe","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikku-uikku","convention_language":false,"id":null},{"lang":"French","names":"Grébe castagneux, Grèbe castagneux","convention_language":true,"id":null},{"lang":"German","names":"Zwergtaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis vöcsök","convention_language":false,"id":null},{"lang":"Italian","names":"Tuffetto","convention_language":false,"id":null},{"lang":"Polish","names":"Perkozek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mergulhão-pequeno","convention_language":false,"id":null},{"lang":"Spanish","names":"Zampullín Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Smådopping","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Lamarche, B. 1988. Liste commentée des oiseaux de Mauritanie. Etude Sahariennes et Ouest-Africaines: 1(4):1-162 .; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Brooks, T. and Dutson, G. 1997. Twenty-nine new island records of birds from the Philippines. Bulletin of the British Ornithologists' Club: 117: 32-37.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Podicipediformes","class_name":"Aves","family_name":"Podicipedidae","genus_name":"Tachybaptus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Colymbus ruficollis","author_year":"Pallas, 1764"},{"full_name":"Podiceps ruficollis","author_year":"(Pallas, 1764)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12052,"full_name":"Turdus ruficollis","author_year":"Pallas, 1776","common_names":[{"lang":"Czech","names":"Drozd tmavohrdlý","convention_language":false,"id":null},{"lang":"Danish","names":"Sortstrubet Drossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwart-/Roodkeellijster, Roodkeellijster, Zwart-Roodkeellijster","convention_language":false,"id":null},{"lang":"English","names":"Dark-throated Thrush","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustakaularastas","convention_language":false,"id":null},{"lang":"French","names":"Grive à gorge rousse","convention_language":true,"id":null},{"lang":"German","names":"Bechsteindrossel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Tajgarigó","convention_language":false,"id":null},{"lang":"Italian","names":"Tordo golanera","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tordo-de-papo-preto, Tordo-de-papo-ruivo, Tordo-de-papo/-ruivo/-preto","convention_language":false,"id":null},{"lang":"Spanish","names":"Zorzal papirrojo y papinegro","convention_language":true,"id":null},{"lang":"Swedish","names":"Taigatrast","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12053,"full_name":"Mesoplodon europaeus","author_year":"(Gervais, 1855)","common_names":[{"lang":"English","names":"Gulf Stream Beaked Whale, Gervais's Beaked Whale","convention_language":true,"id":null},{"lang":"French","names":"Mesoplodon de Gervais","convention_language":true,"id":null},{"lang":"Spanish","names":"Ballena de pico de Gervais","convention_language":true,"id":null},{"lang":"Swedish","names":"Gervais näbbval","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Gillespie, D., Dunn, C., Gordon, J., Claridge, D., Embling, C. and Boyd, I. 2009. Field recordings of Gervais’ beaked whales \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E from the Bahamas. \u003Ci\u003EThe Journal of the Acoustical Society of America\u003C/i\u003E: 125(5): 3428–3433.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"MacLeod, C.D. 2000. Review of the distribution of Mesoplodon species (order Cetacea, family Ziphiidae) in the North Atlantic. \u003Ci\u003EMammal Review\u003C/i\u003E: 30(1): 1–8.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Reiner, F. 1980. First record of a Antillean beaked whale, \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E Gervais 1855, from Republic Popular da Guine-Bissau. Memorias Mus. Mar. (Zool.): 1: 1-8.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Bruton, T., Cotton, D. and Enright, M. 1989. Gulf Stream beaked whale \u003Ci\u003EMesoplodon europaeus\u003C/i\u003E (Gervais). Irish Naturalists' Journal: 23: 156.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Robineau, D. 1993. Stranding of a specimen of Gervais' beaked whale (\u003Ci\u003EMesoplodon europaeus\u003C/i\u003E) on the coast of West Africa (Mauritania). Marine Mammal Science: 9: 438-440.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. 1992. Notes on a Gervais beaked whale, \u003Ci\u003EMesoplodon europaeus, and a dwarf sperm whale, \u003C/i\u003EKogia simus_, stranded in Curacao, Netherlands Antilles. Marine Mammal Science: 8: 172-178.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Reiner, F., Goncalves, J.M. and Santos, R. 1993. Two new records of Ziphiidae (Cetacea) for the Azores with an updated checklist of cetacean species. \u003Ci\u003EArquipélago. Life and Marine Sciences\u003C/i\u003E: 11A: 113–118.; Santos-Reis, M. and Da Luz Mathias, M. 1996. The historical and recent distribution and status of mammals in Portugal. \u003Ci\u003EHystrix\u003C/i\u003E: 8(1-2): 75–89.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Rosario-Delestre, R. J., Rodríguez-López, M. A., Mignucci-Giannoni, A. A. and Mead, J. G. 1999. New records of beaked whales (\u003Ci\u003EMesoplodon\u003C/i\u003E spp.) for the Caribbean. Caribbean Journal of Science: 35: 144-148.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":12054,"full_name":"Charadrius vociferus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Kildire","convention_language":false,"id":null},{"lang":"Dutch","names":"Killdeerplevier","convention_language":false,"id":null},{"lang":"English","names":"Killdeer","convention_language":true,"id":null},{"lang":"French","names":"Pluvier kildir","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo culirrojo","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12055,"full_name":"Procellaria parkinsoni","author_year":"Gray, 1862","common_names":[{"lang":"English","names":"Parkinson's Petrel, Black Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin de Parkinson","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela de Parkinson","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12056,"full_name":"Cephalorhynchus eutropia","author_year":"Gray, 1846","common_names":[{"lang":"Dutch","names":"Zwarte Dolfijn","convention_language":false,"id":null},{"lang":"English","names":"Chilean Dolphin, White-bellied Dolphin, Black Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin noir du Chili","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín negro, Tunina de vientre blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"chiledelfin, vitbuksdelfin","convention_language":false,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12057,"full_name":"Saiga borealis","author_year":"(Tschersky, 1876)","common_names":[{"lang":"English","names":"Mongolian Saiga","convention_language":true,"id":null}],"distributions":[{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Chan, S., Maksimuk, A. V. and Zhirnov, L. V (eds.) 1995. From steppe to store: the trade in saiga antelope horn. TRAFFIC International. Cambridge. ; Lushchekina, A. A., Dulamtseren, S., Amgalan, L. and Neronov, M. 1999. The status and prospects for conservation of the Mongolian saiga \u003Ci\u003ESaiga tatarica mongolica\u003C/i\u003E. Oryx: 33: 21-30.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Young, J.K., Murray, K.M., Strindberg, S., Buuveibaatar, B. and Berger, J. 2010. Population estimates of Endangered Mongolian saiga \u003Ci\u003ESaiga tatarica mongolica\u003C/i\u003E: implications for effective monitoring and population recovery. Oryx: 44: 285-292.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Saiga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Saiga tatarica mongolica","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ESaiga tatarica\u003C/i\u003E, sensu Wilson \u0026 Reeder (1993)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2006","name":"Saiga Antelope"}]},{"id":12058,"full_name":"Pluvialis apricaria","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Kulík zlatý","convention_language":false,"id":null},{"lang":"Danish","names":"Hjejle","convention_language":false,"id":null},{"lang":"Dutch","names":"Goudplevier","convention_language":false,"id":null},{"lang":"English","names":"Golden Plover","convention_language":true,"id":null},{"lang":"Finnish","names":"Kapustarinta","convention_language":false,"id":null},{"lang":"French","names":"Pluvier doré","convention_language":true,"id":null},{"lang":"German","names":"Goldregenpfeifer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Arany lile, Aranylile","convention_language":false,"id":null},{"lang":"Italian","names":"Piviere dorato","convention_language":false,"id":null},{"lang":"Polish","names":"siewka zlota","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tarambola-dourada","convention_language":false,"id":null},{"lang":"Russian","names":"Zolotistaya Rzhanka","convention_language":false,"id":null},{"lang":"Spanish","names":"Chorlito dorado común, Chorlito dorado Europeo","convention_language":true,"id":null},{"lang":"Swedish","names":"Ljungpipare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Chapman, E. A. and McGeogh, J. A. 1956. Recent field observations from Iraq. Ibis: 98: 577-594.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ellis, P. M., Al Omari, K. and El Halah, A. 2001. The first European Golden Plover \u003Ci\u003EPluvialis apricaria\u003C/i\u003E in Jordan. Sandgrouse: 23(2): 146.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Pluvialis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Charadrius apricarius","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12060,"full_name":"Procellaria aequinoctialis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"White-chinned Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin à menton blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela gorgiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12061,"full_name":"Nyctalus noctula","author_year":"(Schreber, 1774)","common_names":[{"lang":"Albanian","names":"Lakuriqnate noktule","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr rezavý","convention_language":false,"id":null},{"lang":"Danish","names":"Brunflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Rosse vleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Noctule, Noctule","convention_language":true,"id":null},{"lang":"Estonian","names":"Suurvidevlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Isolepakko","convention_language":false,"id":null},{"lang":"French","names":"Noctule commune","convention_language":true,"id":null},{"lang":"German","names":"Abendsegler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Közönséges koraidenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Húmblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Nottola comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Rudasis nakviša","convention_language":false,"id":null},{"lang":"Maltese","names":"Noktula","convention_language":false,"id":null},{"lang":"Norwegian","names":"Storflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Borowiec wielki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-arborícola-grande","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-de-amurg","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier hrdzavý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago nóctulo común","convention_language":true,"id":null},{"lang":"Swedish","names":"Stor fladdermus, storfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Harrison, D. L. and Makin, D. 1989. Significant new records of vespertilionid bats (Chiroptera: Vespertilionidae) from Israel. Mammalia: 52: 593-596.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mickeviciene, I. and Mickevicius, E. 2001. The importance of various habitat types to bats (Chiroptera: Vespertilionidae) in Lithuania during the summer period. Acta Zoologica Lituanica: 11: 3-14.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Bates, P. J. J., Tin Nwe, Pearch, M. J., Khin Maung Swe, Si Si Hla Bu and Thanda Tun. 2000. A review of bat research in Myanmar (Burma) and results of a recent survey. Acta Chiropterologica: 2: 53-82.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Csorba, G., Kruskop, S. V. and Borissenko, A. V. 1999. Recent records of bats (Chiroptera) from Nepal, with remarks on their natural history. Mammalia: 63: 61-78.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Radulet, N. 1994. Contributions to the knowledge of genus \u003Ci\u003ENyctalus\u003C/i\u003E Bowdich, 1825 (Chiroptera: Vespertilionidae) in Romania. Travaux du Museum d'Histoire Naturelle \"Grigore Antipa\": 34: 411-418.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Ruedi, M., Tupinier, Y. and De Paz, O. 1998. First breeding record for the noctule bat (\u003Ci\u003ENyctalus noctula\u003C/i\u003E) in the Iberian Peninsula. Mammalia: 62: 301-304.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hsu, M. J. 1997. Population status and conservation of bats (Chiroptera) in Kenting National Park, Taiwan. Oryx: 31: 295-301.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Vlashchenko, A. 1999. [Record of hibernated \u003Ci\u003ENyctalus noctula\u003C/i\u003E in Kharkov.]. Vestnik Zoologii: 33: 76.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Jones, G. S. 1983. Ecological and distributional notes on mammals from Vietnam, including the first record of \u003Ci\u003ENyctalus\u003C/i\u003E. Mammalia: 47: 339-344.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12062,"full_name":"Monticola rufiventris","author_year":"(Jardine \u0026 Selby, 1833)","common_names":[{"lang":"English","names":"Chestnut-bellied Rock-Thrush","convention_language":true,"id":null},{"lang":"French","names":"Monticole à ventre marron","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12063,"full_name":"Cetorhinus maximus","author_year":"(Gunnerus, 1765)","common_names":[{"lang":"Afrikaans","names":"Koesterhaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen shtegtar","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb","convention_language":false,"id":null},{"lang":"Danish","names":"Brugde","convention_language":false,"id":null},{"lang":"Dutch","names":"Reuzenhaai","convention_language":false,"id":null},{"lang":"English","names":"Hoe-mother, Bone Shark, Sun-fish, Basking Shark, Elephant Shark, Sailfish","convention_language":true,"id":null},{"lang":"Faroese","names":"Brugda","convention_language":false,"id":null},{"lang":"Finnish","names":"Jättiläishai","convention_language":false,"id":null},{"lang":"French","names":"Pèlerin, Poisson à voiles, Squale géant, Requin Pèlerin, Squale-pèlerin","convention_language":true,"id":null},{"lang":"German","names":"Mandelhai, Riesenhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Karish anak","convention_language":false,"id":null},{"lang":"Icelandic","names":"Beinhákarl","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo elefante","convention_language":false,"id":null},{"lang":"Japanese","names":"Ubazame","convention_language":false,"id":null},{"lang":"Maltese","names":"Gobdoll, Pixxitonnu","convention_language":false,"id":null},{"lang":"Maori","names":"Reremai","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Saparnasm Skylopsaro","convention_language":false,"id":null},{"lang":"Norwegian","names":"Brugde","convention_language":false,"id":null},{"lang":"Polish","names":"Dlugoszpar a. rekin gigantyczny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Albafar, Peixe-carago, Relengueiro, Peixe frade, Frade, Tubarão frade","convention_language":false,"id":null},{"lang":"Spanish","names":"Tiburón canasta, Peje vaca, Peregrino, Pez elefante, Marrajo ballenato, Colayo, Marrajo gigante, Tiburón peregrino","convention_language":true,"id":null},{"lang":"Swedish","names":"Brugd, jättehaj, brygden","convention_language":false,"id":null},{"lang":"Turkish","names":"Büyük camgöz","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Møller, P R., Nielsen, J. G., Knudsen, S. W., Poulsen, J. Y., Sünksen, J. and Jørgensen, O. A. 2010. A checklist of the fish fauna of Greenland waters. Zootaxa: 2378: 1-84.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Southall, E.J., Sims, D.W., Metcalfe, J.D., Doyle, J.I., Fanshawe, S., Lacey, C., Shrimpton, J., Solandt, J.-L. and Speedie, C.D. 2005. Spatial distribution patterns of basking sharks on the European shelf: preliminary comparison of satellite-tag geolocation, survey and public sightings data. Journal of the Marine Biological Association of the United Kingdom: 85: 1083-1088.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Sandoval-Castillo, J., Ramirez-Gonzalez, J. and Villavicencio-Garayzar, C. 2008. First record of basking shark (\u003Ci\u003ECetorhinus maximus\u003C/i\u003E) in Mexico? Marine Biodiversity Records: 1: e19","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Soldo, A. and Jardas, I. 2002. Occurrence of great white shark, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E (Linnaeus, 1758) and basking shark, \u003Ci\u003ECetorhinus maximus\u003C/i\u003E (Gunnerus, 1758) in the Eastern Adriatic and their protection. Periodicum Biologorum: 104: 195-201.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Southall, E.J., Sims, D.W., Metcalfe, J.D., Doyle, J.I., Fanshawe, S., Lacey, C., Shrimpton, J., Solandt, J.-L. and Speedie, C.D. 2005. Spatial distribution patterns of basking sharks on the European shelf: preliminary comparison of satellite-tag geolocation, survey and public sightings data. Journal of the Marine Biological Association of the United Kingdom: 85: 1083-1088.; Southall, E.J., Sims, D.W., Witt, M.J. and Metcalfe, J.D. 2006. Seasonal space-use estimates of basking sharks in relation to protection and political-economic zones in the North-east Atlantic. Biological Conservation: 132: 33-39.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Cetorhinidae","genus_name":"Cetorhinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":12064,"full_name":"Morus bassanus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Terej bílý","convention_language":false,"id":null},{"lang":"Danish","names":"Sule","convention_language":false,"id":null},{"lang":"Dutch","names":"Jan van Gent","convention_language":false,"id":null},{"lang":"English","names":"Northern Gannet","convention_language":true,"id":null},{"lang":"Finnish","names":"Suula","convention_language":false,"id":null},{"lang":"French","names":"Fou de Bassan","convention_language":true,"id":null},{"lang":"German","names":"Baßtölpel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szula","convention_language":false,"id":null},{"lang":"Italian","names":"Sula","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-patola-comum, Ganso-patola-comun","convention_language":false,"id":null},{"lang":"Spanish","names":"Alcatraz Atlántico","convention_language":true,"id":null},{"lang":"Swedish","names":"Havssula","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Sulidae","genus_name":"Morus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Pelecanus bassanus","author_year":"Linnaeus, 1758"},{"full_name":"Sula bassana","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12065,"full_name":"Gallinago nigripennis","author_year":"Bonaparte, 1839","common_names":[{"lang":"English","names":"African Snipe","convention_language":true,"id":null},{"lang":"French","names":"Bécassine africaine","convention_language":true,"id":null},{"lang":"Spanish","names":"Agachadiza Africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Capella nigripennis","author_year":"(Bonaparte, 1839)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12066,"full_name":"Muscicapa ferruginea","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Ferruginous Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche ferrugineux","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12067,"full_name":"Zapornia parva","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Lille rørvagtel","convention_language":false,"id":null},{"lang":"Dutch","names":"Klein Waterhoen","convention_language":false,"id":null},{"lang":"English","names":"Little Crake","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkuhuitti","convention_language":false,"id":null},{"lang":"French","names":"Marouette poussin","convention_language":true,"id":null},{"lang":"German","names":"Kleines Sumpfhuhn","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kis vízicsibe","convention_language":false,"id":null},{"lang":"Italian","names":"Schiribilla","convention_language":false,"id":null},{"lang":"Polish","names":"Zielonka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Franga-d'água-bastarda","convention_language":false,"id":null},{"lang":"Spanish","names":"Polluela bastarda","convention_language":true,"id":null},{"lang":"Swedish","names":"Mindre sumphöna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, J. M. B. 2003. Baillon's Crake \u003Ci\u003EPorzana pusilla\u003C/i\u003E, new to The Gambia, with notes on seven other species. Malimbus: 25: 59-61.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Porzana parva","author_year":"(Scopoli, 1769)"},{"full_name":"Porzana parva parva","author_year":"(Scopoli, 1769)"},{"full_name":"Rallus parvus","author_year":"Scopoli, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Western Eurasia/Africa population. Formerly listed as \u003Ci\u003EPorzana parva parva\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12068,"full_name":"Acipenser naccarii","author_year":"Bonaparte, 1836","common_names":[{"lang":"Albanian","names":"Blini i bardhe","convention_language":false,"id":null},{"lang":"Danish","names":"Adriatisk stør","convention_language":false,"id":null},{"lang":"Dutch","names":"Adriatische steur, Naccari's steur","convention_language":false,"id":null},{"lang":"English","names":"Adriatic Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon de l'Adriatique","convention_language":true,"id":null},{"lang":"German","names":"Adriatischer stör","convention_language":false,"id":null},{"lang":"Italian","names":"Storione cobice","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr adriatycki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Esturjão-adriátici, Esturgiao","convention_language":false,"id":null},{"lang":"Russian","names":"Adriaticheskyi osetr","convention_language":false,"id":null},{"lang":"Serbian","names":"Jadranska jesetra","convention_language":false,"id":null},{"lang":"Slovenian","names":"Jadranski jeseter","convention_language":false,"id":null},{"lang":"Spanish","names":"Esturión del Adriático","convention_language":true,"id":null},{"lang":"Swedish","names":"adriatisk stör","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct (?)","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.; Rossi, R., Grandi, G., Trisolini, R., Franzoi, P., Carrieri, A., Dezfuli, B. S. and Vecchietti, E. 1991. Osservazioni sulla biologia e la pesca dello storione cobice \u003Ci\u003EAcipenser naccarii\u003C/i\u003E Bonaparte nella parte terminale. del fiume Po. Atti Soc. Ital. Sci. Nat. Museo Civ. Storia Nat, Milano: 132: 121-142.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"extinct","country_references":"Crivelli, A.J. 1996. The freshwater fish endemic to the northern Mediterranean region - an action plan for their conservation. Tour du Valat Publication. Arles, France.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Kottelat, M. and Freyhof, J. 2007. Handbook of European frechwater fishes. Kottelat, Cornol, Switzerland and Freyhof, Berlin, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12071,"full_name":"Neophron percnopterus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ådselgrib","convention_language":false,"id":null},{"lang":"Dutch","names":"Aasgier","convention_language":false,"id":null},{"lang":"English","names":"Egyptian Vulture","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkukorppikotka, Pikkukorppikotka","convention_language":false,"id":null},{"lang":"French","names":"Vautour percnoptère, Percnoptère d'Egypte","convention_language":true,"id":null},{"lang":"German","names":"Schmutzgeier","convention_language":false,"id":null},{"lang":"Hungarian","names":"Dögkeselyû","convention_language":false,"id":null},{"lang":"Italian","names":"Capovaccaio","convention_language":false,"id":null},{"lang":"Portuguese","names":"Abutre do Egipto","convention_language":false,"id":null},{"lang":"Russian","names":"Stervyatnik","convention_language":false,"id":null},{"lang":"Spanish","names":"Alimoche, Alimoche común","convention_language":true,"id":null},{"lang":"Swedish","names":"Smutsgam","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Simic, D. 2001. Accepted sightings of the Egyptian Vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in Botswana. Vulture News: 44: 31-32.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inigo, A. and Barov, B. 2002. Species action plan for the Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in the European Union. Birdlife International. 69","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ledger, J. 1985. Egyptian extinction. Quagga: 12: 10-12.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Mateo-Tomás, P. and Olea, P.P. 2010. Diagnosing the causes of territory abandonment by the Endangered Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E: the importance of traditional pastoralism and regional conservation. Oryx: 44: 424-433.; Mateo-Tomás, P., Olea, P.P. and Fombellida, I. 2010. Status of the Endangered Egyptian vulture \u003Ci\u003ENeophron percnopterus\u003C/i\u003E in the Cantabrian Mountains, Spain, and assessment of threats. Oryx: 44: 434-440.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Neophron","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":12072,"full_name":"Ficedula sapphira","author_year":"(Blyth, 1843)","common_names":[{"lang":"English","names":"Sapphire Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche saphir","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12073,"full_name":"Ficedula semitorquata","author_year":"(Homeyer, 1885)","common_names":[{"lang":"Danish","names":"Halvkravet fluesnapper, Halvkrave fluesnapper","convention_language":false,"id":null},{"lang":"Dutch","names":"Balkanvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Semi-collared Flycatcher, Semicollared Flycatcher","convention_language":true,"id":null},{"lang":"Finnish","names":"Balkaninsieppo","convention_language":false,"id":null},{"lang":"French","names":"Gobemouche à semicollier, Gobemouche à semi-collier, Gobemouche à demi-collier, Gobe-mouche à semicollier","convention_language":true,"id":null},{"lang":"German","names":"Halbringschnäpper","convention_language":false,"id":null},{"lang":"Hungarian","names":"Ál-örvös légykapó","convention_language":false,"id":null},{"lang":"Italian","names":"Balia caucasica, Balia semitorquata","convention_language":false,"id":null},{"lang":"Portuguese","names":"Papa-moscas-de-meio-colar","convention_language":false,"id":null},{"lang":"Spanish","names":"Papamoscas semicollarino","convention_language":true,"id":null},{"lang":"Swedish","names":"Balkanflugsnäppare, Balkanflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Busuttil, S. and Flumm, D. 1998. The first Semi-collared Flycatcher records Ficedula semitorquata in Lebanon. Sandgrouse: 20: 147-148.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12074,"full_name":"Larus armenicus","author_year":"Buturlin, 1934","common_names":[{"lang":"Czech","names":"Racek arménský","convention_language":false,"id":null},{"lang":"Dutch","names":"Armeense Meeuw","convention_language":false,"id":null},{"lang":"English","names":"Armenian Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Armenianlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland d'Arménie","convention_language":true,"id":null},{"lang":"German","names":"Armeniermöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"örmélny sirály, Örmény sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano di Armenia","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa arménska","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota da Arménia","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Armenia","convention_language":true,"id":null},{"lang":"Swedish","names":"Armenisk trut","convention_language":false,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12075,"full_name":"Aythya fuligula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Troldand","convention_language":false,"id":null},{"lang":"Dutch","names":"Kuifeend","convention_language":false,"id":null},{"lang":"English","names":"Tufted Duck","convention_language":true,"id":null},{"lang":"Finnish","names":"Tukkasotka","convention_language":false,"id":null},{"lang":"French","names":"Fuligule morillon","convention_language":true,"id":null},{"lang":"German","names":"Reiherente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kontyos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Moretta","convention_language":false,"id":null},{"lang":"Polish","names":"Czernica","convention_language":false,"id":null},{"lang":"Portuguese","names":"Zarro-negrinha","convention_language":false,"id":null},{"lang":"Spanish","names":"Porrón Moñudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Vigg","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Serge, B. K., Ndeh, D. A., Djabo, K. Y. and Nayuoh, L. 2000. First records of Tufted Duck \u003Ci\u003EAythya fuligula\u003C/i\u003E in Cameroon. Malimbus: 22: 91-92.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas fuligula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12076,"full_name":"Charadrius tricollaris","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Three-banded Plover, African Three-banded Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier à triple collier","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlitejo tricollar","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"Cable, T. T. 1994. First record of Three-banded Plover \u003Ci\u003ECharadrius tricollaris\u003C/i\u003E in Ivory Coast. Malimbus: 16: 57-58.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hoath, R. 2000. The first Three-banded Plover \u003Ci\u003ECharadrius tricollaris\u003C/i\u003E in Egypt and the Western Palearctic. Sandgrouse: 22: 67-68.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12077,"full_name":"Locustella luscinioides","author_year":"(Savi, 1824)","common_names":[{"lang":"Danish","names":"Savisanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Snor","convention_language":false,"id":null},{"lang":"English","names":"Savi's Warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Ruokosirkkalintu","convention_language":false,"id":null},{"lang":"French","names":"Locustelle luscinioïde","convention_language":true,"id":null},{"lang":"German","names":"Rohrschwirl","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nádi tücsökmadár","convention_language":false,"id":null},{"lang":"Italian","names":"Salciaiola","convention_language":false,"id":null},{"lang":"Portuguese","names":"Felosa-unicolor","convention_language":false,"id":null},{"lang":"Russian","names":"Soloviny Sverchok","convention_language":false,"id":null},{"lang":"Spanish","names":"Buscarla Unicolor","convention_language":true,"id":null},{"lang":"Swedish","names":"Vassångare","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V. and Busuttil, S. 2002. The first breeding records of Citrine Wagtail \u003Ci\u003EMotacilla citreola\u003C/i\u003E and Savi's Warbler \u003Ci\u003ELocustella luscinioides\u003C/i\u003E in Armenia. Sandgouse: 24: 52-53.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Fry, C. H. 1970. Birds in Waza National Park, Cameroun. Bulletin of the Nigerian Ornithological Society: 7: 1-5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Hedenström, A., Bensch, S., Hasselquist, D. and Ottosson, U. 1990. Observations of Palaearctic migrants rare to Ghana. Bulletin of the British Ornithologists' Club: 110: 194-197.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Kainady, P. V. G. and Al-Joborae, P. F. M. 1975. Two additions to the Iraqi avifauna. Bull. Basrah Nat. Hist. Mus.: 2: 51-54.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12078,"full_name":"Pseudoscaphirhynchus kaufmanni","author_year":"(Kessler, 1874)","common_names":[{"lang":"English","names":"Amu Darya Shovelnose Sturgeon, Big Amu-Darya Shovelnose, Large Amu-Dar Shovelnose Sturgeon, Shovelfish, Amu Darya Sturgeon, False Shovelnose Sturgeon","convention_language":true,"id":null},{"lang":"German","names":"Großer Pseudoschaufelstör","convention_language":false,"id":null},{"lang":"Polish","names":"Wielki lopatonos","convention_language":false,"id":null},{"lang":"Swedish","names":"Amu Darya-stör, falsk skovelnosstör","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Coad, B.W. 1981. Fishes of Afghanistan, an annotated check-list. Publications in Zoology National Museum of Canada. Ottawa.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Salnikov, V.B., Kuhajda, B.R. and Mayden, R.L. 2001. Conservation studies and life history characteristics of Pseudoscaphirhynchus kaufmanni and P. hermanni (Actinopterygii, Acipenseridae) shoverlnose sturgeon endemic to the Amu-Darya river in central Asia. Oshkosh, Wisconsin, USA. ; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Anon. 2003. The red data book of the Republic of Uzbekistan, Volume II, Animals. Chinor, ENK. Tashkent.; Borodin, A. M. (ed.) 1984. Red data book of the USSR: rare and endangered species of animals and plants. Vol. 1: animals. 2nd edition. Promyshlennost. Moscow.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Sokolov, B.E. 1994. Rare and endangered fishes. Vysshaya Shkola. Moscow.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Pseudoscaphirhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12079,"full_name":"Loxodonta cyclotis","author_year":"(Matschie, 1900)","common_names":[{"lang":"English","names":"Forest Elephant","convention_language":true,"id":null},{"lang":"French","names":"Éléphant de forêt","convention_language":true,"id":null},{"lang":"Spanish","names":"Elefante de bosque","convention_language":true,"id":null}],"distributions":[{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Kingdon, J., Happold, D., Hoffmann, M., Butynski, T., Happold, M. and Kalina, J. (Eds.) 2013. Mammals of Africa. Volume I: Introductory chapter and Afrotheria. Bloomsbury Publishing, London. 352 pp","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Loxodonta","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003ELoxodonta africana\u003Ci\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12080,"full_name":"Thalassarche cauta","author_year":"(Gould, 1841)","common_names":[{"lang":"Dutch","names":"Witkapalbatros","convention_language":false,"id":null},{"lang":"English","names":"Shy Albatross, White-capped Albatross","convention_language":true,"id":null},{"lang":"French","names":"Albatros à cape blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißkappenalbatros","convention_language":false,"id":null},{"lang":"Italian","names":"Albatros dal capuccio bianco","convention_language":false,"id":null},{"lang":"Spanish","names":"Albatros frentiblanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråkindad albatross","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Petry, M. V., Bencke, G. A. and Klein, G. N. 1991. First record of the Shy Albatross \u003Ci\u003EDiomedea cauta\u003C/i\u003E for the Brazilian coast. Bulletin of the British Ornithologist's Club: 111: 189-190.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Cunningham-van Someren, G. R. 1988. On the first Kenya record of the Shy Albatross Diomedea cauta. Bulletin of the British Ornithologists' Club: 108: 18-19.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea cauta","author_year":"Gould, 1841"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDiomedea cauta\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12081,"full_name":"Calidris alpina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Almindelig Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonte Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Dunlin","convention_language":true,"id":null},{"lang":"Finnish","names":"Suosirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau variable","convention_language":true,"id":null},{"lang":"German","names":"Alpenstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Havasi partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Piovanello pancianera","convention_language":false,"id":null},{"lang":"Norwegian","names":"Myrsnipe","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus zmienny","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-comum","convention_language":false,"id":null},{"lang":"Russian","names":"Chernozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlomos común, Correlimos Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Kärrsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ; Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Muyen, B. van. 2006. First record of Dunlin \u003Ci\u003ECalidris alpina\u003C/i\u003E for Benin. Bulletin of the African Bird Club: 13: 210-211.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Robertson, I. 1993. Unusual records from Cameroon. Malimbus: 14: 62-63.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.; Salaman, P. 1994. Surveys and conservation of biodiversity in the Chocó, south west Colombia. BirdLife International. Cambridge, U.K. ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Zwarts, L. 1988. Numbers and distribution of coastal waders in Guinea-Bissau. Ardea: 76: 42-55.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guyra Paraguay. 2004. Lista comentada de las Aves de Paraguay / Annotated checklist of the Birds of Paraguay. Asociación Guyra Paraguay. Asunción, Paraguay.; Lesterhuis, A.J. and Clay, R.P. 2003. The first record of Dunlin (\u003Ci\u003ECalidris alpina\u003C/i\u003E) in Paraguay and a summary of South American records of the species. El Hornero: 18: 65-67.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Erritzoe, J. 1994. First record of the Dunlin from the Philippines. Bulletin of the British Ornithologists' Club: 114: 128-129.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia alpina","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa alpina","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12082,"full_name":"Calidris ferruginea","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Danish","names":"Krumnæbbet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Krombekstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Curlew Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau cocorli","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus krzywodzioby","convention_language":false,"id":null},{"lang":"Russian","names":"Krasnozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos zarapitín","convention_language":true,"id":null},{"lang":"Swedish","names":"spovsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wilson, R. G., Keenan, J., Lavercombe, B. and della Seta, M. 1997. Curlew Sandpiper \u003Ci\u003ECalidris ferruginea\u003C/i\u003E in Yucatan, Mexico. Cotinga: 8: 51.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Saveljic, D. 2008. Buljarica Wetland: Eco-guide to the lagoon ecosystems of Montenegro (Eko vodiè za lagunske ekosisteme Crne Gore). Universita del Salento. 7.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erolia testacea","author_year":"(Pallas, 1764)"},{"full_name":"Scolopax testacea","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12083,"full_name":"Gavia arctica","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Potáplice severní","convention_language":false,"id":null},{"lang":"Danish","names":"Sortstrubet lom","convention_language":false,"id":null},{"lang":"Dutch","names":"Parelduiker","convention_language":false,"id":null},{"lang":"English","names":"Black-throated Loon, Arctic Loon, Black-throated Diver","convention_language":true,"id":null},{"lang":"Finnish","names":"Kuikka","convention_language":false,"id":null},{"lang":"French","names":"Plongeon arctique","convention_language":true,"id":null},{"lang":"German","names":"Prachttaucher","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki búvár","convention_language":false,"id":null},{"lang":"Italian","names":"Strolaga mezzana","convention_language":false,"id":null},{"lang":"Norwegian","names":"Storlom","convention_language":false,"id":null},{"lang":"Polish","names":"Nur czarnoszyi","convention_language":false,"id":null},{"lang":"Portuguese","names":"Mobêlha-árctica","convention_language":false,"id":null},{"lang":"Russian","names":"Chernozobaya Gagara","convention_language":false,"id":null},{"lang":"Spanish","names":"Colimbo ártico, Colimbo Arctico, Colímbo ártico","convention_language":true,"id":null},{"lang":"Swedish","names":"Storlom","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"extinct","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gaviiformes","class_name":"Aves","family_name":"Gaviidae","genus_name":"Gavia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Colymbus arcticus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EGavia arctica suschkini\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12084,"full_name":"Equus hemionus","author_year":"Pallas, 1775","common_names":[{"lang":"Danish","names":"asiatisk vildæsel eller kulan","convention_language":false,"id":null},{"lang":"Dutch","names":"Koelan","convention_language":false,"id":null},{"lang":"English","names":"Asiatic Wild Ass, Kulan, Asian Wild Ass","convention_language":true,"id":null},{"lang":"Finnish","names":"Aasianvilliaasi","convention_language":false,"id":null},{"lang":"French","names":"Ane sauvage d'Asie, Hémione","convention_language":true,"id":null},{"lang":"German","names":"Asiatischer Halbesel, Asiatischer Wildesel","convention_language":false,"id":null},{"lang":"Italian","names":"Asino selvatico asiatico","convention_language":false,"id":null},{"lang":"Spanish","names":"Hemiono","convention_language":true,"id":null},{"lang":"Swedish","names":"halvåsna, asiatisk vildåsna","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Seidensticker, J., Eisenberg, J. F. and Simons, R. 1984. The Tangjiahe, Wanglang, and Fengtongzhai Giant Panda reserves and biological conservation in the People's Republic of China. Biological Conservation: 28: 217-251.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct,reintroduced","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"introduced","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Includes \u003Ci\u003EEquus onager\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12085,"full_name":"Pipistrellus kuhlii","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Pipistreli i Kuhlit","convention_language":false,"id":null},{"lang":"Croatian","names":"Bjelorubi šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr jizní","convention_language":false,"id":null},{"lang":"Danish","names":"Kuhls flagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Kuhls dwergvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Kuhl's Pipistrelle","convention_language":true,"id":null},{"lang":"Estonian","names":"Vahemere nahkhiir","convention_language":false,"id":null},{"lang":"Finnish","names":"Kuhlinpikkulepakko","convention_language":false,"id":null},{"lang":"French","names":"Pipistrelle de Kuhl","convention_language":true,"id":null},{"lang":"German","names":"Weißrandfledermaus","convention_language":false,"id":null},{"lang":"Italian","names":"Pipistrello albolimbato","convention_language":false,"id":null},{"lang":"Maltese","names":"Pipistrell ta' Kuhl","convention_language":false,"id":null},{"lang":"Norwegian","names":"Kuhlflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Karlik Kuhla","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego de Kuhl","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago de borde claro","convention_language":true,"id":null},{"lang":"Swedish","names":"Kuhls fladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Rakhmatulina, I. K. 1983. [Ecology of \u003Ci\u003EVespertilio kuhlii\u003C/i\u003E Kuhl, 1819 in Azerbaijan.]. Byulletin' Mosk. Obshch. Ispyt. Prir. (Otd. Biol.): 88: 33-42.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Ivanova, T. J. and Popov, V. V. 1995. First record of \u003Ci\u003EPipistrellus kuhli\u003C/i\u003E (Kuhl, 1819) (Vespertilionidae, Chiroptera, Mammalia) from Bulgaria. Acta Zoologica Bulgarica: 47: 79-81.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Paunovic, M. and Marinkovic, S. 1998. Kuhl's pipistrelle \u003Ci\u003EPipistrellus kyhlii\u003C/i\u003E Kuhl, 1817 (Chiroptera, Vespertilionidae) - a new species in the mammal fauna of Serbia, with data on its Balkan distribution range, status and ecology. Zbornik Radova o Fauni Srbije: 5: 167-180.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Savona-Ventura, C. 1996. Maltese Chiroptera. http://www.geocities.com/rainforest/3096/bats.html . ","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Petkovski, S. and Koselj, K. 1998. Additions to bat fauna of Macedonia (Chiroptera, Mammalia). Folia Zoologica: 47: 237-239.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Albayrak, I. 2003. The bats of the eastern Black Sea region in Turkey (Mammalia: Chiroptera). Turkish Journal of Zoology: 27: 269-273.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Kondratenko, O. V. 1999. [First finding of \u003Ci\u003EPipistrellus kuhli\u003C/i\u003E in the Lugansk OBlast (Eastern Ukraine).]. Vestnik Zoologii: 33: 96.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Al-Jumaily, M. M. 2004. Recent records of bats from Yemen including \u003Ci\u003EPlecotus\u003C/i\u003E cf. \u003Ci\u003Eaustriacus\u003C/i\u003E (Fischer, 1829) (Mammalia; Vespertilionidae) new to the country. Myotis: 42: 57-68.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12086,"full_name":"Phoenicurus hodgsoni","author_year":"(Moore, 1854)","common_names":[{"lang":"English","names":"Hodgson's Redstart","convention_language":true,"id":null},{"lang":"French","names":"Rougequeue de Hodgson","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12087,"full_name":"Acrocephalus scirpaceus","author_year":"(Hermann, 1804)","common_names":[{"lang":"Czech","names":"Rákosník obecný","convention_language":false,"id":null},{"lang":"Danish","names":"Rørsanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Karekiet","convention_language":false,"id":null},{"lang":"English","names":"Common Reed-warbler, Reed Warbler, Eurasian Reed-warbler","convention_language":true,"id":null},{"lang":"Finnish","names":"Rytikerttunen","convention_language":false,"id":null},{"lang":"French","names":"Rousserolle effarvatte","convention_language":true,"id":null},{"lang":"German","names":"Teichrohrsänger","convention_language":false,"id":null},{"lang":"Italian","names":"Cannaiola","convention_language":false,"id":null},{"lang":"Polish","names":"Trzcinniczek","convention_language":false,"id":null},{"lang":"Portuguese","names":"Rouxinol-pequeno-dos-caniços","convention_language":false,"id":null},{"lang":"Russian","names":"Trostnikovaya Kamyshovka","convention_language":false,"id":null},{"lang":"Swedish","names":"Rörsångare","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; King, M. 2000. Noteworthy records from Ginak Island, The Gambia. Malimbus: 22: 77-85.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12088,"full_name":"Bos sauveli","author_year":"Urbain, 1937","common_names":[{"lang":"Danish","names":"kouprey","convention_language":false,"id":null},{"lang":"Dutch","names":"Kouprey","convention_language":false,"id":null},{"lang":"English","names":"Kouprey","convention_language":true,"id":null},{"lang":"Finnish","names":"Sauvelinhärkä","convention_language":false,"id":null},{"lang":"French","names":"Kouprey","convention_language":true,"id":null},{"lang":"German","names":"Kouprey","convention_language":false,"id":null},{"lang":"Italian","names":"Couprey","convention_language":false,"id":null},{"lang":"Spanish","names":"Toro cuprey, Kouprey","convention_language":true,"id":null},{"lang":"Swedish","names":"kouprey","convention_language":false,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"extinct (?)","country_references":"Mackinnon, J. 1986. Bid to save the Kouprey. WWF Monthly Report April: 1986: 91-97.; Thouless, C. 1987. Kampuchean Wildlife - survival against the odds. Oryx: 21: 223-228.; Walston, J. 2001. Mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"extinct (?)","country_references":"Delacour, J. 1940. Liste provisoire de mammifères de l'Indochine française. Mammalia: 4: 20-29.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Gressitt, J. L. 1970. Biogeography of Laos. Pacific Insects Monograph: 24: 573-626.; Mackinnon, J. 1986. Bid to save the Kouprey. WWF Monthly Report April: 1986: 91-97.; Perez, M. C. 1983. Revisión de la sistemática de \u003Ci\u003EGazella (Nanger) dama\u003C/i\u003E. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rabida, 1977 . 553-561; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Anon. 1983. Kouprey sighted. Oryx: 17: 45.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"extinct (?)","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Bos","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12089,"full_name":"Amaurornis marginalis","author_year":"(Hartlaub, 1857)","common_names":[{"lang":"Danish","names":"Stribet Rørvagtel","convention_language":false,"id":null},{"lang":"English","names":"Striped Crake","convention_language":true,"id":null},{"lang":"French","names":"Marouette rayée","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela culirroja","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Amaurornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aenigmatolimnas marginalis","author_year":"(Hartlaub, 1857)"},{"full_name":"Porzana marginalis","author_year":"Hartlaub, 1857"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EAenigmatolimnas marginalis\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12090,"full_name":"Culicicapa ceylonensis","author_year":"(Swainson, 1820)","common_names":[{"lang":"English","names":"Grey-headed Canary-Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à tête grise","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Culicicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12091,"full_name":"Mergellus albellus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Smew","convention_language":true,"id":null},{"lang":"French","names":"Harle piette","convention_language":true,"id":null},{"lang":"Polish","names":"Bielaczek","convention_language":false,"id":null},{"lang":"Spanish","names":"Serreta chica","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ribara, I. 2006. Information sheet on Ramsar Wetlands (RIS): Labudovo Okno. http://www.wetlands.org/reports/ris/3RS005_RIS2006.pdf.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"Carey, G. J. 1994. Smew at Mai Po: the first record for Hong Kong. Hong Kong Bird Report 1994: 115-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; RAMSAR. 2007. Ramsar International Winter Census of waterfowl: Skadar Lake - Montenegro: summary of the results. Ramsar. Netherlands. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Murdoch, D., Andrews, I. and Hofland, R. 2004. The Syrian Wetland Expedition 2004: a summary. Sandgrouse: 26: 94-104.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Karakas, R. and Kiliç, A. 2002. Birds of Göksu Dam (Diyarbakir) and new records in south-east Turkey. Sandgrouse: 24: 38-43.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mergellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Mergus albellus","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12093,"full_name":"Tringa nebularia","author_year":"(Gunnerus, 1767)","common_names":[{"lang":"Czech","names":"Vodouš šedý","convention_language":false,"id":null},{"lang":"Danish","names":"Hvidklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Groenpootruiter","convention_language":false,"id":null},{"lang":"English","names":"Common Greenshank, Greenshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkoviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier aboyeur","convention_language":true,"id":null},{"lang":"German","names":"Grünschenkel","convention_language":false,"id":null},{"lang":"Hungarian","names":"Szürke cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Pantana","convention_language":false,"id":null},{"lang":"Polish","names":"Kwokacz","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-verde-comum","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Claro","convention_language":true,"id":null},{"lang":"Swedish","names":"Gluttsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax nebularia","author_year":"Gunnerus, 1767"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12094,"full_name":"Macronectes giganteus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"Dutch","names":"Reuzenstormvogel","convention_language":false,"id":null},{"lang":"English","names":"Southern Giant-Petrel, Southern Giant Petrel, Antarctic Giant-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel géant","convention_language":true,"id":null},{"lang":"Spanish","names":"Abanto-marino antártico","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Olmos, F., Martuscelli, P., Silva e Silva, R. and Neves, T. S. 1995. The sea-birds of Sao Paulo, southeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 117-128.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Macronectes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Procellaria gigantea","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12095,"full_name":"Charadrius modestus","author_year":"Lichtenstein, 1823","common_names":[{"lang":"English","names":"Rufous-chested Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier d'Urville","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito Chileno","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Zonibyx modestus","author_year":"(Lichtenstein, 1823)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12096,"full_name":"Zoothera monticola","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Long-billed Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive montagnarde","convention_language":true,"id":null},{"lang":"German","names":"Bergdrossel","convention_language":false,"id":null},{"lang":"Swedish","names":"långnäbbad trast","convention_language":false,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12097,"full_name":"Sarothrura boehmi","author_year":"Reichenow, 1900","common_names":[{"lang":"English","names":"Streaky-breasted Flufftail","convention_language":true,"id":null},{"lang":"French","names":"Râle de Böhm","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela de Boehm","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Keith, S., Benson, C. W. and Irwin, M. P. S. 1970. The genus \u003Ci\u003ESarothrura\u003C/i\u003E (Aves, Rallidae). Bull. Amer. Mus. Nat. Hist.: 143: 1-84.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12098,"full_name":"Halichoerus grypus","author_year":"(Fabricius, 1791)","common_names":[{"lang":"Danish","names":"Gråsæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Grizje zeehond, Grijze zeehond","convention_language":false,"id":null},{"lang":"English","names":"Grey Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Hallhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Halli, Halli (harmaahylje)","convention_language":false,"id":null},{"lang":"French","names":"Phoque gris","convention_language":true,"id":null},{"lang":"German","names":"Kegelrobbe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kúpos fóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Útselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca grigia","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Ilgasnukis ruonis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Havert","convention_language":false,"id":null},{"lang":"Polish","names":"Foka szara","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca cinzenta, Foca-cinzenta","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca gris","convention_language":true,"id":null},{"lang":"Swedish","names":"Gråsäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Grifok","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Bowen, W.D., McMillan, J.I. and Wade Blanchard. 2007. Reduced population growth of Gray seals at Sable Island: evidence from pup production and age of primiparity. Marine Mammal Science: 23: 48-64.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Borkenhagen, P. 1994. Nachweise nichtheimische Robbenarten (\u003Ci\u003EOdobenus rosmarus\u003C/i\u003E, \u003Ci\u003EPhoca hispida\u003C/i\u003E, \u003Ci\u003EPhoca groenlandica\u003C/i\u003E, \u003Ci\u003ECystophora cristata\u003C/i\u003E) an den Kusten Schleswig-Holsteins. Säugetierkundliche Mitteilungen: 3: 661-671.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Halichoerus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Baltic Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12099,"full_name":"Catharus minimus","author_year":"(Lafresnaye, 1848)","common_names":[{"lang":"Danish","names":"Gråkindet Skovdrossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Grijswangdwerglijster","convention_language":false,"id":null},{"lang":"English","names":"Grey-cheeked Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à joues grises","convention_language":true,"id":null},{"lang":"Russian","names":"Maly Drozd","convention_language":false,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"McNair, D. B., Massiah, E. B. and Frost, M. D. 1999. New and rare species of Nearctic landbird migrants during autumn for Barbados and the Lesser Antilles. Caribbean Journal of Science: 35: 46-53.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12100,"full_name":"Ammotragus lervia","author_year":"(Pallas, 1777)","common_names":[{"lang":"Danish","names":"mankefår","convention_language":false,"id":null},{"lang":"Dutch","names":"Manenschaap","convention_language":false,"id":null},{"lang":"English","names":"Uaddan, Aoudad, Barbary Sheep","convention_language":true,"id":null},{"lang":"Estonian","names":"Lakklammas","convention_language":false,"id":null},{"lang":"Finnish","names":"Algerianvuorikauris, Harjalammas","convention_language":false,"id":null},{"lang":"French","names":"Mouflon à manchettes, Aoudad","convention_language":true,"id":null},{"lang":"German","names":"Mähnenspringer, Mähnenschaf","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sörényes juh","convention_language":false,"id":null},{"lang":"Icelandic","names":"Hærusauður","convention_language":false,"id":null},{"lang":"Italian","names":"Pecora crinita, Ammotrago","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Berberinis avinas","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mankesau","convention_language":false,"id":null},{"lang":"Polish","names":"Arui","convention_language":false,"id":null},{"lang":"Slovak","names":"Ovca hrivnatá","convention_language":false,"id":null},{"lang":"Spanish","names":"Arruí, Muflón del Atlas","convention_language":true,"id":null},{"lang":"Swedish","names":"Manfår","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Depierre, D. and Gillet, H. 1974. Le mouflon en Ennedi (Tchad). Bois et Forêts des Tropiques: 158: 3-11.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"introduced","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Newby, J. E. 1982. Avant-projet de classement d'une aire protégée dans l'Air et le Ténéré (République du Niger). Report to IUCN/WWF, Gland. Unpublished . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Shackleton, D. M. and the IUCN/SSC Caprinae Specialist Group (ed.) 1997. Wild sheep and goats and their relatives. Status survey and conservation action plan for Caprinae. IUCN. Gland, Switzerland and Cambridge, U.K.; Wilson, R. T. 1980. Wildlife in northern Darfur, Sudan: a review of its distribution and status in the recent past and at present. Biological Conservation: 17: 85-101.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Corbet, G. B. 1978. The mammals of the Palaearctic region: a taxonomic review. British Museum (Natural History), Cornell University Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced","country_references":"Baker, R. J., Bradley, L. C., Bradley, R. D., Dragoo, J. W., Engstrom, M. D., Hoffmann, R. S., Jones, C. A., Reid, F., Rice, D. W. and Jones, C. 2003. Revised checklist of North American mammals north of Mexico, 2003. Occasional Papers, Museum of Texas Tech University: 229: 23.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ammotragus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12103,"full_name":"Acipenser schrenckii","author_year":"Brandt, 1869","common_names":[{"lang":"English","names":"Amur Sturgeon","convention_language":true,"id":null},{"lang":"French","names":"Esturgeon écussonné, Esturgeon de l'Amour","convention_language":true,"id":null},{"lang":"German","names":"Amurstör","convention_language":false,"id":null},{"lang":"Japanese","names":"Amûru-chôzame","convention_language":false,"id":null},{"lang":"Polish","names":"Jesiotr amurski","convention_language":false,"id":null},{"lang":"Russian","names":"Amurskii osetr","convention_language":false,"id":null},{"lang":"Swedish","names":"Amurstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Groombridge, B. 1993. 1994 IUCN Red List of Threatened Animals. IUCN. Gland, Switzerland and Cambridge, UK.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Wei, Q., Ke, F., Zhang, J., Zhuang, P., Luo, J., Zhou, R. and Yang, W. 1997. Biology, fisheries, and conservation of sturgeons and paddlefish in China. Environmental Biology of Fishes: 48: 242-255.; Zhuang, P. Kynard, B., Zhang, L., Zhang, T. Zhang, Z. and Li, D. 2002. Overview of the biology and aquaculture of Amur sturgeon (Acipenser schrenckii) in China. Journal of Applied Ichthyology: 18: 659-664.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Omoto, N., Maebayashi, M., Hara, A., Adachi, S. and Yamauchi, K. 2004. Gonadal maturity in wild sturgeons, Huso dauricus, Acipenser mikadoi, and A. schrenckii caught near Hokkaido, Japan. Environmental Biology of Fishes: 70: 381-391.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Groombridge, B. 1993. 1994 IUCN Red List of Threatened Animals. IUCN. Gland, Switzerland and Cambridge, UK.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Krykhtin, M.L. and Svirskii, V.G. 1997. Endemic sturgeons of the Amur river: Kaluga, Huso dauricus, and Amur sturgeon, Acipenser schrenckii. Environmental Biology of Fishes: 48: 231-239.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Veselov, E.A. 1977. [Identifier of the Freshwater Fish Species of USSR Fauna. Guide for teachers.]. Prosveschenie. Moscow.; Zhu, B. Que, Y., Yang, Z and Chang, J. 2008. A review on genetic studies in sturgeons and their trade control in China. Journal of Applied Ichthyology: 24: 29-35.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12104,"full_name":"Procellaria cinerea","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Grey Petrel","convention_language":true,"id":null},{"lang":"French","names":"Puffin gris","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela gris","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Procellaria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Adamastor cinereus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12105,"full_name":"Tadarida teniotis","author_year":"(Rafinesque, 1814)","common_names":[{"lang":"Albanian","names":"Lakuriqnate bishtlire","convention_language":false,"id":null},{"lang":"Croatian","names":"Sredozemni golorepaš","convention_language":false,"id":null},{"lang":"Czech","names":"Tadarida evropská","convention_language":false,"id":null},{"lang":"Danish","names":"Buldogflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Bulvleermuis","convention_language":false,"id":null},{"lang":"English","names":"European Free-tailed Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Laikõrv-kurdmokk","convention_language":false,"id":null},{"lang":"Finnish","names":"Buldoggilepakko","convention_language":false,"id":null},{"lang":"French","names":"Molosse de Cestoni","convention_language":true,"id":null},{"lang":"German","names":"Europäische Bulldoggfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy szelindekdenevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Fýlugrön","convention_language":false,"id":null},{"lang":"Italian","names":"Molosso del Cestoni","convention_language":false,"id":null},{"lang":"Maltese","names":"Tadarida","convention_language":false,"id":null},{"lang":"Norwegian","names":"Bulldoggflaggermus","convention_language":false,"id":null},{"lang":"Polish","names":"Molos europejski","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-rabudo","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago rabudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Veckläppad fladdermus","convention_language":false,"id":null},{"lang":"Turkish","names":"Kuyruklu yarasa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Yavroyan, E. G. and Safarian, L. A. 1975. [Find of broad-eared wrinklelips (\u003Ci\u003ETadarida teniotis\u003C/i\u003E Rafinesque) in Armenia.]. Biologicheskii Zh. Armenii: 28: 90-93.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Ciechanowski, M., Sachanowicz, K., Rachwald, A. and Benda, P. 2005. First records of \u003Ci\u003ETadarida teniotis\u003C/i\u003E (Rafinesque, 1814) from Serbia and Montenegro and from Bosnia and Herzegovina. Mammalia: 69(2): 257-260","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Helgen, K. M. and Wilson, D. E. 2002. The bats of Flores, Indonesia, with remarks on Asian \u003Ci\u003ETadarida\u003C/i\u003E. Breviora: 511: 12.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Abu Baker, M., Al Omari, K., Heil, R. 1999. Rodent and bat baseline survey at mujib nature reserve. Royal Society for the Conservation of Nature . ; Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z., Disi, A. 1988. Jordanian mammals acquired by the Jordan university natural history museum. Publications of the University of Jordan. 1-32.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; Benda, P., Lucan, R., Obuch, J., Eid, E. 2008. Bat fauna of Jordan. ; Benda, P., Lucan, R., Obuch, J., Reiter, A., Amr, Z. 2009. Bat fauna of Jordan. ; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M. B. 1980. New records of bats from Jordan. Säugetierkundliche Mitteilungen: 28: 36-39.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.; Royal Society for the Conservation of Nature. 2008. Rapid assessment survey at jabal masuda protected area. ","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Borg, J. J., Violani, C. and Zava, B. 1997. The bat fauna of the Maltese Islands. Myotis: 35: 49-65.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Kock, D. 1987. \u003Ci\u003ETadarida teniotis\u003C/i\u003E (Rafinesque, 1814), zweiter Nachweis für Marokko, w-paläärktische Arealgrenzen und taxonomische Anmerkung (Chiroptera: Molossidae). Zeitschrift für Säugetierkunde: 52: 194-196.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Marques. J. T., Rainho, A., Carapuço, M. Oliverira, P. and Palmeirim, J. M. 2004. Foraging behaviour and habitat use by the European free-tailed bat \u003Ci\u003ETadarida teniotis\u003C/i\u003E. Acta Chiroptologica: 6: 99-110; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Beaucornu, J.-C., Bach-Hamba, D., Launay, H., Hellal, H. and Chastel, C. 1983. Deux chiroptères peu connus de Tunisie. Mammalia: 47: 127-128.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.; Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Bobrinskii, N. A., Kuznetzov, B. A. and Kuzyakin, A. P. 1965. Opredelitel Mlekopitaiushchikh SSSR [Key to the mammals of the USSR]. Moscow.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Molossidae","genus_name":"Tadarida","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":12106,"full_name":"Camelus bactrianus","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Kamel","convention_language":false,"id":null},{"lang":"English","names":"Wild Bactrian Camel","convention_language":true,"id":null},{"lang":"French","names":"Chameau de Bactriane, Chameau domestique","convention_language":true,"id":null},{"lang":"German","names":"Wildkamel","convention_language":false,"id":null},{"lang":"Polish","names":"Baktrian","convention_language":false,"id":null},{"lang":"Spanish","names":"Camello Bactriano","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Reading, R. P., Mix, H., Lhagvasuren, B. and Blumer, E. S. 1999. Status of wild Bactrian camels and other large ungulates in south-western Mongolia. Oryx: 33: 247-255.; Wilson, D.E. and Mittermeier, R.A. 2011. Handbook of the mammals of the world. Vol. 2. Hoofed Mammals. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Camelidae","genus_name":"Camelus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[{"full_name":"Camelus ferus","author_year":"Przewalski, 1878"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12107,"full_name":"Equus kiang","author_year":"Moorcroft, 1841","common_names":[{"lang":"Danish","names":"kiang","convention_language":false,"id":null},{"lang":"Dutch","names":"Kiang","convention_language":false,"id":null},{"lang":"English","names":"Kiang","convention_language":true,"id":null},{"lang":"French","names":"Kiang, Ane sauvage du Tibet","convention_language":true,"id":null},{"lang":"Spanish","names":"Kiang","convention_language":true,"id":null},{"lang":"Swedish","names":"kiang","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Osborne, B. C., Mallon, D. P. and Fraser, S. J. R. 1983. Ladakh, threatened stronghold of rare Himalayan mammals. Oryx: 17: 182-189.; St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"St-Louis, A. and Côté, S.D. 2009. \u003Ci\u003EEquus kiang\u003C/i\u003E (Perissodactyla: Equidae). Mammalian Species: 835: 1-11.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Equus hemionus kiang","author_year":"Pallas, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EEquus hemionus\u003C/i\u003E (s.l.)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12108,"full_name":"Niltava macgrigoriae","author_year":"(Burton, 1836)","common_names":[{"lang":"English","names":"Small Niltava","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche de McGrigor","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12109,"full_name":"Sarothrura elegans","author_year":"(A. Smith, 1839)","common_names":[{"lang":"English","names":"Buff-spotted Flufftail","convention_language":true,"id":null},{"lang":"French","names":"Râle ponctué","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela elegante","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Sarothrura","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Gallinula elegans","author_year":"A. Smith, 1839"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12110,"full_name":"Ficedula strophiata","author_year":"(Hodgson, 1837)","common_names":[{"lang":"English","names":"Rufous-gorgeted Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche à bavette orange","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Wong, F. K. O. 1994. Rufous-gorgetted Flycatcher in Tai Po Kau: the first record for Hong Kong. Hong Kong Bird Report 1994 : 134-135.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12111,"full_name":"Spheniscus humboldti","author_year":"Meyen, 1834","common_names":[{"lang":"Danish","names":"Humboldt pingvin","convention_language":false,"id":null},{"lang":"Dutch","names":"Humboldt-pinguin","convention_language":false,"id":null},{"lang":"English","names":"Humboldt Penguin, Peruvian Penguin","convention_language":true,"id":null},{"lang":"Finnish","names":"Perunpingviini","convention_language":false,"id":null},{"lang":"French","names":"Manchot de Humboldt","convention_language":true,"id":null},{"lang":"German","names":"Humboldtpinguin","convention_language":false,"id":null},{"lang":"Italian","names":"Sfenisco di Humboldt","convention_language":false,"id":null},{"lang":"Spanish","names":"Pingüino de Humboldt","convention_language":true,"id":null},{"lang":"Swedish","names":"Humboldtpingvin","convention_language":false,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Araya Modinger, B. 1983. A preliminary report on the status and distribution of the Humboldt Penguin in Chile. Pp. 125-140 In: Proceedings of the Jean Delacour/IFCB Symposium on breeding birds in captivity. North Hollywood, California: International Foundation for the Conservation of Birds .; Battistini, G. and Paredes, R. 1999. Nesting habits and nest characteristics of Humboldt penguins at Punta San Juan, Perú. Penguin Conservation: 12: 12-19.; Bingham, M. 1998. The penguins of South America and the Falkland Islands. Penguin Conservation: 11: 8-16.; Cheney, C. 1998. The current situation of the Humboldt penguin in Chile and Peru: a report from the population and habitat viability analysis meeting, part I. Penguin Conservation: 11: 4-9.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diebold, E.N., Grzybowksi, K., Michaels, M., Teare, J.A., Wallace, R. and Willis, M.J. 1994. Humbold Penguin (\u003Ci\u003ESphensicus humboldti\u003C/i\u003E) research in Chile. Penguin Conservation: 7: 2-3.; Glade, A. A. (ed.) 1988. Red list of Chilean terrestrial vertebrates. Impresimas Comerciales, for CONAF. Santiago.; Luna-Jorquera, G., Garthe, S., Sepulveda, F.G., Weichler, T. and Vasquez, J.A. 2000. Population size of Humboldt Penguins assessed by combined terrestrial and at-sea counts. Waterbirds: 23: 506-510.; Planeta Vivo. 2002. Isla Chañaral. Planeta Vivo Publicaciones. 21pp; Simeone, A. and Bernal, M. 2000. Effects of habitat modification on breeding seabirds: a case study in central Chile. Waterbirds: 23: 449-456.; Simeone, A. and Schlatter, R.P. 1998. Threats to a mixed-species colony of \u003Ci\u003ESpheniscus\u003C/i\u003E penguins in southern Chile. Colonial Waterbirds: 21: 418-421.; Simeone, A., Bernal, M. and Meza, J. 1999. Incidental mortality of Humboldt Penguins \u003Ci\u003ESpheniscus humboldti\u003C/i\u003E in gill nets, central Chile. Marine Ornithology: 27: 157-161.; Simeone, A., Luna-Jorquera, G., Bernal, M., Garthe, S., Sepulveda, F., Villablanca, R., Ellenberg, U., Contreras, M., Munoz, J. and Ponce, T. 2003. Breeding distribution and abundance of seabirds on islands off north-central Chile. Revista Chilena de Historia Natural: 76: 323-333.; Wallace, R.S., Grzybowski, Diebold, E., Michaels, M.G., Teare, J.A. and Willis, M.J. 1999. Movements of Humboldt penguins from a breeding colony in Chile. Waterbirds: 22: 441-444.; Wilson, R.P., Wildies, M.P., Duffy, D.C., Araya, B. and Klages, N. 1989. Diving behaviour and prey of the Humboldt penguin. Journal of Ornithology: 130: 75-79.; Zavalaga, C.B. and Paredes, R. 1997. Humboldt penguins at Punta San Juan, Peru. Penguin Conservation: 10: 6-8.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ramyle, J. 1988. [Confirmation of the presence of \u003Ci\u003ESpheniscus humboldti\u003C/i\u003E Meyen (Aves: Spheniscidae) in Colombia.]. Trianea (Bogota): 1: 141-143.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.; Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Battistini, G. and Paredes, R. 1999. Nesting habits and nest characteristics of Humboldt penguins at Punta San Juan, Perú. Penguin Conservation: 12: 12-19.; Bingham, M. 1998. The penguins of South America and the Falkland Islands. Penguin Conservation: 11: 8-16.; Cheney, C. 1998. The current situation of the Humboldt penguin in Chile and Peru: a report from the population and habitat viability analysis meeting, part I. Penguin Conservation: 11: 4-9.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hays, C. 1984. The Humboldt Penguin in Peru. Oryx: 18: 92-95.; Hays, C. 1986. Effects of the 1982-83 El Niño on Humboldt Penguin colonies in Peru. Biological Conservation: 36: 169-180.; Koepke, M. 1970. The birds of the department of Lima. Livingston Publishing Company. Wynnewood, Pennsylvania.; Paredes, R. and Zavalaga, C.B. 1998. Overview of the effects of El Niño 1997-1998 on humboldt penguins and other seabirds at Punta San Juan, Peru. Penguin Conservation: 11: 5-16.; Paredes, R. and Zavalaga, C.B. 2001. Nesting sites and nest types as important factors for the conservation of Humboldt penguins (\u003Ci\u003ESpheniscus humboldti\u003C/i\u003E). Biological Conservation: 100: 199-205.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Zavalaga, C.B. and Paredes, R. 1997. Humboldt penguins at Punta San Juan, Peru. Penguin Conservation: 10: 6-8.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Sphenisciformes","class_name":"Aves","family_name":"Spheniscidae","genus_name":"Spheniscus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12114,"full_name":"Ciconia ciconia","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Hvid stork","convention_language":false,"id":null},{"lang":"Dutch","names":"Ooievaar","convention_language":false,"id":null},{"lang":"English","names":"White Stork","convention_language":true,"id":null},{"lang":"Finnish","names":"Kattohaikara","convention_language":false,"id":null},{"lang":"French","names":"Cigogne blanche","convention_language":true,"id":null},{"lang":"German","names":"Weißstorch","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehér gólya","convention_language":false,"id":null},{"lang":"Italian","names":"Cicogna bianca","convention_language":false,"id":null},{"lang":"Polish","names":"Bocian biały","convention_language":false,"id":null},{"lang":"Portuguese","names":"Cegonha-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Белый аист","convention_language":false,"id":null},{"lang":"Spanish","names":"Cigüeña blanca, Ciguëña común, Cigüeña común","convention_language":true,"id":null},{"lang":"Swedish","names":"Vit stork","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ikonga, J. M. and Bockandza, P. 2001. Première observation de la Cigogne blanche Ciconia ciconia au Congo-Brazzaville. Bulletin of the African Bird Club: 8: 61.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea ciconia","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12115,"full_name":"Aythya affinis","author_year":"(Eyton, 1838)","common_names":[{"lang":"Danish","names":"Lille Bjergand","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Topper","convention_language":false,"id":null},{"lang":"English","names":"Lesser Scaup","convention_language":true,"id":null},{"lang":"French","names":"Fuligule à tête noire, Petit Fuligule","convention_language":true,"id":null},{"lang":"Spanish","names":"Porrón bola","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Herrera, N., Rivera, R., Ibarra, R. and Rodríguez, W. 2006. Nuevos registros para la avifauna de El Salvador. Boletín de la Sociedad Antioqueña de Ornitología: 16: 1-19.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; McAdams, D. G., Milne, P. and O'Sullivan, O. 1999. Forty-sixth Irish Bird Report, 1998. Irish Birds: 6: 377-406.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Boesman, P. 1998. Some new information on the distribution of Venezuelan birds. Cotinga: 9: 27-39.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Aythya","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Fuligula affinis","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12116,"full_name":"Rhinolophus mehelyi","author_year":"Matschie, 1901","common_names":[{"lang":"Croatian","names":"Meheljev potkovnjak","convention_language":false,"id":null},{"lang":"Danish","names":"Mehelys hesteskonæse","convention_language":false,"id":null},{"lang":"Dutch","names":"Mehely's hoefijzerneus","convention_language":false,"id":null},{"lang":"English","names":"Mehely's Horseshoe Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Meheli sagarnina","convention_language":false,"id":null},{"lang":"Finnish","names":"Mehelynhevosenkenkäyökkö","convention_language":false,"id":null},{"lang":"French","names":"Rhinolophe de Mehely","convention_language":true,"id":null},{"lang":"German","names":"Mehely-Hufeisennase","convention_language":false,"id":null},{"lang":"Hungarian","names":"Méhely-patkósdenevér","convention_language":false,"id":null},{"lang":"Italian","names":"Ferro di cavallo di Mehely","convention_language":false,"id":null},{"lang":"Norwegian","names":"Mehelyhesteskonese","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-ferradura-mourisco","convention_language":false,"id":null},{"lang":"Romanian","names":"Liliacul-lui-Méhely","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago mediano de herradura, Murciélago mediano de herredura","convention_language":true,"id":null},{"lang":"Swedish","names":"Mehelys hästskonäsa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kowalski, K. 1979. Notes on bats from north-west Algeria. African Small Mammal Newsletter: 3: 19-21.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"DeBlase, A. F. 1980. The bats of Iran: systematics, distribution, ecology. Fieldiana Zoology: 4: 424 pp.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Sharifi, M. 2004. Postnatal growth and age estimation in the Mehely`s Horseshoe Bat (\u003Ci\u003ERhinolophus mehelyi\u003C/i\u003E). Acta Chiropterologica: 6: 155-161","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z., Abu baker, M and Rifai, L. 2004. Mammals of Jordan. Denisia 14, zugleich Kataloge.; Amr, Z. S. 2000. Jordan Country Study on Biological Diversity: Mammals of Jordan. United Nations Environment Program.; AMR, Z, S., Abu Baker, M, A., Qumsiyeh, M, B. 2006. Bat Diversity and Conservation in Jordan. Turkish journal of zoology: 30: 235-244.; DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Harrison, D. L. and Bates, B. J. J. 1991. The mammals of Arabia. 2nd edition. Harrison Zoological Museum Publication. Sevenoaks.; Qumsiyeh, M.B. 1996. Mammals of the Holy Land. Texas Tech University Press.; Qumsiyeh, M. B., Amr, Z. S. and Al-Oran, R. M. 1998. Further records of bats from Jordan and a synopsis. Turkish Journal of Zoology: 22: 277-284.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Hanák, V. and Elgadi, A. 1984. The bat fauna (Chiroptera) of Libya. Vestnik Ceskoslovenské Spolec. Zool.: 48: 165-187.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Qumsiyeh, M. B. and Schlitter, D. A. 1982. The bat fauna of Jabal Al Akhdar, north-east Libya. Annals of the Carnegie Museum: 51: 377-389.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B., Vohralik, V., Flousek, J. and Petkovski, S. 1992. Bats (Mammalia: Chiroptera) of Macedonia, Yugoslavia. Pp. 93-111 in I. Horacek \u0026 V. Vohralik (eds) Prague studies in mammalogy. Charles University Press. Prague.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hayman, R. W. and Hill, J. E. 1974. Order Chiroptera. Part 2 in J. Meester and H. W. Setzer (eds.) The mammals of Africa, an identification manual. Smithsonian Institution Press. Washington.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"DeBlase, A. F. 1972. \u003Ci\u003ERhinolophus euryale\u003C/i\u003E and \u003Ci\u003ER. mehelyi\u003C/i\u003E (Chiroptera: Rhinolophidae) in Egypt and southwest Asia. Israel Journal of Zoology: 21: 1-12.; Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Rhinolophidae","genus_name":"Rhinolophus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only European populations","auto_note":"FAMILY ADDITION Rhinolophidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12117,"full_name":"Stercorarius longicaudus","author_year":"Vieillot, 1819","common_names":[{"lang":"Czech","names":"Chaluha malá","convention_language":false,"id":null},{"lang":"Danish","names":"Lille Kjove","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleinste Jager","convention_language":false,"id":null},{"lang":"English","names":"Long-tailed Skua, Long-tailed Jaeger","convention_language":true,"id":null},{"lang":"Finnish","names":"Tunturikihu","convention_language":false,"id":null},{"lang":"French","names":"Labbe à longue queue, Labbe à longue queue","convention_language":true,"id":null},{"lang":"German","names":"Falkenraubmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nyílfarkú halfarkas","convention_language":false,"id":null},{"lang":"Italian","names":"Labbo codalunga","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fjelljo","convention_language":false,"id":null},{"lang":"Portuguese","names":"Moleiro-de-cauda-comprida","convention_language":false,"id":null},{"lang":"Spanish","names":"Págalo Rabero","convention_language":true,"id":null},{"lang":"Swedish","names":"Fjällabb","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Ryan, P. G. 1989. Common Nighthawk \u003Ci\u003EChordeiles minor\u003C/i\u003E and new records of seabirds from Tristan da Cunha and Gough Islands. Bulletin of the British Ornithologists' Club: 109: 147-149.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Stercorariidae","genus_name":"Stercorarius","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12118,"full_name":"Megaptera novaeangliae","author_year":"(Borowski, 1781)","common_names":[{"lang":"English","names":"Hump Whale, Bunch, Hunchbacked Whale, Humpback Whale","convention_language":true,"id":null},{"lang":"French","names":"Rorqual à bosse, Jubarte, Rorqual du Cap, Mégaptère, Baleine à taquet, Baleine à bosse","convention_language":true,"id":null},{"lang":"Norwegian","names":"Knølhval","convention_language":false,"id":null},{"lang":"Portuguese","names":"Baleia-de-bossa","convention_language":false,"id":null},{"lang":"Spanish","names":"Rorcual jorobado, Jorobada, Gubarte, Ballena jorobada","convention_language":true,"id":null},{"lang":"Swedish","names":"puckelval, knölval","convention_language":false,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Paterson, R., Paterson, P and Cato, D. H. 1994. The status of Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E in East Australia 30 years after whaling. Biological Conservation: 70: 135-142.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1982. Wildlife of Bangladesh. University of Dhaka. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Stone, G. S., Katona, S. K. and Tucker, E. B. 1987. History, migration and present status of Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E at Bermuda. Biological Conservation: 42: 133-145.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Pinto de Sa Alves, L.C., Andriolo, A., Zerbini, A.N., Pizzorno, J.L.A. and Clapham, P.J. 2009. Record of feeding by humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) in tropical waters off Brazil. Marine Mammal Science: 25: 416-419.; Wedekin, L.L., Neves, M.C., Marcondes, M.C.C., Baracho, C., Rossi-Santos, M.R. and Engel, M.H. 2010. Site fidelity and movements of humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) on the Brazilian breeding ground, southwestern Atlantic. Marine Mammal Science: 26: 787-802.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Hauser, N., Zerbini, A.N., Geyer, Y., Heide-Jorgensen, M.-P. and Clapham, P. 2010. Movements of satellite-monitored humpback whales, \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E, from the Cook Islands. Marine Mammal Science: 26: 679-685.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Rasmussen, K., Palacios, D.M., Calambokidis, J., Saborío, M.T., Dalla Rosa, L., Secchi, E.R., Steiger, G.H., Allen, J.M. and Stone, G.S. 2007. Southern Hemisphere humpback whales wintering off Central America: insights from water temperature into the longest mammalian migration. \u003Ci\u003EBiology letters\u003C/i\u003E: 3(3): 302–5.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Duriez, O., Jornvall, H. and Shirihai, H. 2005. Birds and wildlife of the French subantarctic islands: Crozet, Kerguelen and Amsterdam \u0026 St Paul. Dutch Birding: 27: 87-115.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Rosenbaum, H.C., Ersts, P.J., Razafindrakoto, Y., Sounguet, G., Pomilla, C., Ngouessono, S., Rasoamampianina, V. and White, L. 2002. Population characteristics, distribution, and relative abundance of humpback whales off the coasts of Madagascar and Gabon: an update on recent and planned research. Paper SC/54/H20 presented to the IWC Scientific Committee, April 2002 (unpublished). 13; Walsh, P. D., Fay, J. M., Gulick, S. and Sounguet, G. P. 2000. Humpback whale activity near Cap Lopez, Gabon. Journal of Cetacean Research and Management: 2: 63-67.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.; Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Vigness-Raposa, K.J., Kenney, R.D., Gonzalez, M.L. and August, P.V. 2009. Spatial patterns of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) sightings and survey effort: Insight into North Atlantic population structure. Marine Mammal Society: 26: 161-175.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Rosenbaum, H.C., Ersts, P.J., Razafindrakoto, Y., Sounguet, G., Pomilla, C., Ngouessono, S., Rasoamampianina, V. and White, L. 2002. Population characteristics, distribution, and relative abundance of humpback whales off the coasts of Madagascar and Gabon: an update on recent and planned research. Paper SC/54/H20 presented to the IWC Scientific Committee, April 2002 (unpublished). 13","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Payne, J., Francis, C. M. and Phillipps, K. 1985. A field guide to the mammals of Borneo. The Sabah Society/WWF Malaysia.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Avolio, M., Ersts, P., Pomilla, C., Vely, M., Bastid, J.J., Wendling, B., Seitre, R., Seitre, J., Darmmangeat, P., Collin-Omnes, V., et al. 2002. Humpback whale distribution and marine mammal diversity in the waters of Mayotte, (Comores Archipelago) in the Mozambique Channel. Paper SC/54/H18 presented to the IWC Scientific Committee, April 2002 (unpublished). 20","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Lagerquist, B.A., Mate, B.R., Ortega-Ortiz, J.G. and Winsor, M. 2008. Migratory movements and surfacing rates of humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) satellite tagged at Socorro. Marine Mammal Science: 24: 815-830.; Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Findlay, K. P., Best, P. B., Peddemors, V. M. and Gove, D. 1994. The distribution and abundance of humpback whales on their southern and central Mozambique winter grounds. Reports of the International Whaling Commission: 44: 311-320.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Debrot, A. O. and Barros, N. B. 1994. Additional cetacean records for the Leeward Dutch Antilles. Marine Mammal Science: 10: 359-368.; Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Gill, P. C. 1994. Observations on Humpback Whales \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E in New Caledonian waters during 1991-1993. Biological Conservation: 70: 211-218.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Minton, G., Collins, M. and Findlay, K. 2003. A note on re-sights of individually identified humpback whales (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) off the coast of Oman. Paper SC/55/O10 presented to the International Whaling Commission Scientific Committee, May-June 2003, Berlin, Germany. ; Minton, G., Collins, T., Findlay, K., Baldwin, R., Rosenbaum, H., Kennedy, F. and Cockcroft, V. 2002. Preliminary investigations of humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution and habitat use off the coast of Oman. Paper SC/54/H3 presented to the IWC Scientific Committee, April 2002, Shimonoseki, Japan. ; Rosenblaum, H.C., Collins, T., Minton, G., Baldwin, R., Glaberman, S., Findlay, K.P. and Best, P. 2002. Preliminary analysis of mtDNA variation among humpback whales off the coast of Oman and their relationships to whales from wintering grounds in the southwestern Indian Ocean. Paper SC/54/H4 presented to the International Whaling Commission Scientific Committee, April 2002, Shimonoseki, Japan. ","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J. F. and Redford, K. H. 1999. Mammals of the Neotropics. Volume 3. The Central Neotropics: Ecuador, Peru, Bolivia, Brazil. The University of Chicago Press.; Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Skora, K. E. 1991. Notes on Cetacea observed in the Polish Baltic Sea: 1979-1990. Aquatic Mammals: 17: 67-70.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Anon. 1980. A world review of the Cetacea. Nature Conservancy Council. Peterborough.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Leatherwood, S., Reeves, R. R., Perrin, W. F. and Evans, W. E. 1988. Whales, dolphins, and porpoises of the Eastern North Pacific and adjacent Arctic waters. Dover Publications. New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Johnston, D.W., Chapla, M.E., Williams, L.E. and Mattila, D.K. 2007. Identification of humpback whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E wintering habitat in the Northwestern Hawaiian Islands using spatial habitat modeling. Endangered Species Research: 3: 249-257.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1984. Registro de \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781) (Cetacea, Balaenopteridae) para aguas del Uruguay. Bol. Soc. Zool. Uruguay, Segunda Epoca: 2: 36-40.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).; Swartz, S. L., Cole, T., McDonald, M. A., Hildebrand, J. A., Oleson, E. M., Martinez, A., Clapham, P. J., Barlow, J. and Jones, M. L. 2003. Acoustic and visual survey of Humpback Whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) distribution in the eastern and southeastern Caribbean Sea. Caribbean Journal of Science: 39: 195-208.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Megaptera","name_status":"A","nomenclature_note_en":null,"cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12119,"full_name":"Thalassarche carteri","author_year":"(Rothschild, 1903)","common_names":[{"lang":"English","names":"Indian Yellow-nosed Albatross","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Diomedeidae","genus_name":"Thalassarche","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Diomedea chlororhynchos","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EDiomedea chlororhynchos\u003C/i\u003E.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12120,"full_name":"Phaethon lepturus","author_year":"Daudin, 1802","common_names":[{"lang":"English","names":"White-tailed Tropicbird","convention_language":true,"id":null},{"lang":"French","names":"Phaéton à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabijunco menor","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Lambert, K. 2001. Sightings of new and rarely reported seabirds in Southern African waters. Marine Ornithology: 29: 115-118.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Dufourny, H. 1999. White-tailed Tropicbird in Cape Verde Islands in February 1999. Dutch Birding: 21: 254-255.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Phaethontidae","genus_name":"Phaethon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12121,"full_name":"Monarcha melanopsis","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"Black-faced Monarch","convention_language":true,"id":null},{"lang":"French","names":"Monarque à face noire","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Monarcha","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12123,"full_name":"Acipenser mikadoi","author_year":"Hilgendorf, 1892","common_names":[{"lang":"English","names":"Sakhalin Sturgeon","convention_language":true,"id":null},{"lang":"Japanese","names":"Chôzame","convention_language":false,"id":null},{"lang":"Swedish","names":"sakhalinstör","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.; Honma, Y. 1988. Records and distributional notes on the sturgeons along the coast of Japanese Archipelago. Bulletin of the Biogeographical Society of Japan: 43: 51-55.; Omoto, N., Maebayashi, M., Hara, A., Adachi, S. and Yamauchi, K. 2004. Gonadal maturity in wild sturgeons, Huso dauricus, Acipenser mikadoi, and A. schrenckii caught near Hokkaido, Japan. Environmental Biology of Fishes: 70: 381-391.; Pikitch, E. K., Doukakis, P., Lauck, L., Chakrabarty, P., and Erickson, D.L. 2005. Status, trends and management of sturgeon and paddlefish fisheries. Fish and Fisheries: 6: 233-265.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Artyukhin, E. N. and Andronov, A. E. 1990. A morphological study of the Green Sturgeon \u003Ci\u003EAcipenser medirostris\u003C/i\u003E (Chondostei, Acipenseridae) from the Tunmin (Datta) River and some aspects of the ecology and zoogeography of Acipenseridae. Journal of Ichthyology: 30: 44501.; Hochleithner, M. and Gessner, J. 2001. The Sturgeons and Paddlefishes of the World: Biology and Aquaculture. AquaTech. Austria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Acipenseriformes","class_name":"Actinopterygii","family_name":"Acipenseridae","genus_name":"Acipenser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12124,"full_name":"Muscicapa muttui","author_year":"(Layard, 1854)","common_names":[{"lang":"English","names":"Brown-breasted Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche muttui","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12125,"full_name":"Larus glaucoides","author_year":"Meyer, 1822","common_names":[{"lang":"Czech","names":"Racek polární","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Burgemeester","convention_language":false,"id":null},{"lang":"English","names":"Iceland Gull","convention_language":true,"id":null},{"lang":"Finnish","names":"Grönlanninlokki","convention_language":false,"id":null},{"lang":"French","names":"Goéland à ailes blanches, Goéland arctique","convention_language":true,"id":null},{"lang":"German","names":"Polarmöwe","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sarki sirály","convention_language":false,"id":null},{"lang":"Italian","names":"Gabbiano d'Islanda","convention_language":false,"id":null},{"lang":"Polish","names":"Mewa polarna","convention_language":false,"id":null},{"lang":"Portuguese","names":"Gaivota-polar","convention_language":false,"id":null},{"lang":"Spanish","names":"Gaviota Groenlandesa","convention_language":true,"id":null},{"lang":"Swedish","names":"Vitvingad trut","convention_language":false,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Larus argentatus thayeri","author_year":"Pontoppidan, 1763"},{"full_name":"Larus leucopterus","author_year":"Faber"},{"full_name":"Larus thayeri","author_year":"W. S. Brooks, 1915"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12126,"full_name":"Anser albifrons","author_year":"(Scopoli, 1769)","common_names":[{"lang":"Danish","names":"Blisgås","convention_language":false,"id":null},{"lang":"Dutch","names":"Kolgans","convention_language":false,"id":null},{"lang":"English","names":"Greater White-fronted Goose, White-fronted Goose","convention_language":true,"id":null},{"lang":"Finnish","names":"Tundrahanhi","convention_language":false,"id":null},{"lang":"French","names":"Oie rieuse","convention_language":true,"id":null},{"lang":"German","names":"Bläßgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Nagy lilik","convention_language":false,"id":null},{"lang":"Italian","names":"Oca lombardella","convention_language":false,"id":null},{"lang":"Portuguese","names":"Ganso-grande-de-testa-branca","convention_language":false,"id":null},{"lang":"Russian","names":"Beloloby Gus","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar careto","convention_language":true,"id":null},{"lang":"Swedish","names":"Bläsgås","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pulevic, V., Hadžiablahovic, S., Kasom, G., Rakocevic-Nedovic, J., Nikcevic, S., Pešic, V., Ražnatovic, A., Cirovic, R., Saveljic, D., Buškovic, V., 2001. Promotion of networks and exchanges in the countries of the South Eastern Europe: Biodiversity Database of Shkodra/Skadar Lake - checklist of species. The Regional Environmental Center for Central and Eastern Europe.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Al-Saghier, O., Porter, R. F. and Stanton, D. B. 1997. The first White-fronted Goose Anser albifrons in Yemen. Sandgrouse: 19: 142.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Branta albifrons","author_year":"Scopoli, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12127,"full_name":"Calidris minuta","author_year":"(Leisler, 1812)","common_names":[{"lang":"Czech","names":"Jespák malý","convention_language":false,"id":null},{"lang":"Danish","names":"Dværgryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Strandloper","convention_language":false,"id":null},{"lang":"English","names":"Little Stint","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkusirri","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau minute","convention_language":true,"id":null},{"lang":"German","names":"Zwergstrandläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Apró partfutó","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio","convention_language":false,"id":null},{"lang":"Polish","names":"Biegus malutki","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-pequeno","convention_language":false,"id":null},{"lang":"Russian","names":"Kulik Vorobey","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Menudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Småsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia minuta","author_year":"(Leisler, 1812)"},{"full_name":"Tringa minuta","author_year":"Leisler, 1812"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12128,"full_name":"Macronectes halli","author_year":"Mathews, 1912","common_names":[{"lang":"English","names":"Hall's Giant-Petrel, Northern Giant Petrel, Northern Giant-Petrel","convention_language":true,"id":null},{"lang":"French","names":"Pétrel de Hall","convention_language":true,"id":null},{"lang":"Spanish","names":"Abanto-marino subantártico, Petrel Gigante del Norte","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martuscelli, P., Olmos, F. and Silva e Silva, R. 1995. First record of the Northern Giant Petrel Macronectes halli for Brazilian waters. Bulletin of the British Ornithologists' Club: 115: 187-188.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Macronectes","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Macronectes giganteus halli","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"ACAP"}]},{"id":12129,"full_name":"Ficedula narcissina","author_year":"(Temminck, 1836)","common_names":[{"lang":"Dutch","names":"Narcisvliegenvanger","convention_language":false,"id":null},{"lang":"English","names":"Narcissus Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Gobemouche narcisse","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Two. http://users.bigpond.net.au/palliser/barc/vol2.htm . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12130,"full_name":"Charadrius veredus","author_year":"Gould, 1848","common_names":[{"lang":"English","names":"Oriental Plover","convention_language":true,"id":null},{"lang":"French","names":"Pluvier oriental","convention_language":true,"id":null},{"lang":"Spanish","names":"Chorlito Asiático grande","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Eupoda veredus","author_year":"(Gould, 1848)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12131,"full_name":"Globicephala macrorhynchus","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Pacific Pilot Whale, Short-finned Pilot Whale","convention_language":true,"id":null},{"lang":"French","names":"Globicéphale tropical","convention_language":true,"id":null},{"lang":"Spanish","names":"Caldrón negro","convention_language":true,"id":null},{"lang":"Swedish","names":"kortfenad grindval","convention_language":false,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"MacLeod, C.D., Hauser, N. and Peckham, H. 2004. Diversity, relative density and structure of the cetacean community in summer months east of Great Abaco, Bahamas. Journal of the Marine Biological Association of the United Kingdom: 84: 469-474.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Miragaia, J. M. and Paiva Filho, A. M. 1989. First record of the short-finned pilot whale \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E Gray, 1846, for the southwestern Atlantic. Marine Mammal Science: 5: 387-391.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Stacey, P. J. and Baird, R. W. 1993. Status of the Short-finned Pilot Whale, \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E in Canada. Canadian Field Naturalist: 107: 481-489.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.; Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Chasen, F. N. 1940. A handlist of Malaysian mammals. Bulletin of the Raffles Museum: 15: 1-208.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Kahn, B. 2004. Solomon Islands Rapid Ecological Assessment - Oceanic cetaceas and associated habitats. Apex Environmental. 59; Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Casinos, A. and Bou, J. 1980. On a massive stranding of short-finned pilot whale, \u003Ci\u003EGlobicephala macrorhynchus\u003C/i\u003E Gray, 1846, on Margarita Island (Venezuela). Scientific Rep. Whales Res. Inst., Tokyo: 32: 145-148.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Globicephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":12132,"full_name":"Terpsiphone atrocaudata","author_year":"(Eyton, 1839)","common_names":[{"lang":"English","names":"Japanese Paradise-Flycatcher","convention_language":true,"id":null},{"lang":"French","names":"Tchitrec du Japon","convention_language":true,"id":null},{"lang":"German","names":"Prinzenparadiesschnäpper","convention_language":false,"id":null},{"lang":"Swedish","names":"japansk paradisflugsnappare","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12133,"full_name":"Sousa chinensis","author_year":"(Osbeck, 1765)","common_names":[{"lang":"English","names":"Indo-pacific Humpbacked Dolphin, Chinese White Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin à bosse de l'Indo-Pacifique","convention_language":true,"id":null},{"lang":"Spanish","names":"Bufeo asiático, Delfín blanco de China","convention_language":true,"id":null},{"lang":"Swedish","names":"deltadelfin, puckeldelfin","convention_language":false,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Parra, G. J., Corkeron, P. J. and Marsh, H. 2004. The Indo-Pacific Humpback Dolphin, \u003Ci\u003ESousa chinensis\u003C/i\u003E (Osbeck, 1765), in Australian waters: a summary of current knowledge. Aquatic Mammals: 30: 197-206.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Chen, T., Hung, S.K., Qiu, Y., Jia, X. and Jefferson, T.A. 2010. Distribution, abundance, and individual movements of Indo-Pacific humpback dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in the Pearl River Estuary, China. Mammalia: 74: 117-125.; Jefferson, T. A. and Hung, S. K. 2004. A review of the status of the Indo-Pacific Humpback Dolphin (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Chinese waters. Aquatic Mammals: 30: 149-158.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Jefferson, T. A. and Hung, S. K. 2004. A review of the status of the Indo-Pacific Humpback Dolphin (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Chinese waters. Aquatic Mammals: 30: 149-158.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Sutaria, D. and Jefferson, T. A. 2004. Records of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E, Osbeck, 1765) along the coasts of India and Sri Lanka: an overview. Aquatic Mammals: 30: 125-136.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Robinson, H. C. and Kloss, C. B. 1917. List of the mammals of Sumatra. Journal of the Federated Malay States Museums: 8: 73-80.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; Keijl, G. O. and van der Have, T. M. 2002. Observations on marine mammals in southern Iran, January 2000. Zoology in the Middle East: 26: 37-40.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Razafindrakoto, Y., Andrianarivelo, N. and Rosenbaum, H. C. 2004. Sightings, catches, and other records of Indo-Pacific Humpback Dolphins in the coastal waters of Madagascar. Aquatic Mammals: 30: 103-110.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Guissamulo, A. and Cockcroft, V. G. 2004. Ecology and population estimates of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E) in Maputo Bay, Mozambique. Aquatic Mammals: 30: 94-102.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smith, B. D., Thant, H., Lwin, J. M. and Shaw, C. D. 1997. Investigations of cetaceans in the Ayeyarwady River and northern coastal waters of Myanmar. Asian Marine Biology: 14: 173-194.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; Gladstone, W. and Fisher, P. R. 1999. Status of cetaceans in the Farasan Islands Marine Protected Area (Red Sea). European Research on Cetaceans: 13: 232-235.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Karczmarski, L. 2000. Conservation and management of humpback dolphins: the South African perspective. Oryx: 34: 207-216.; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.; Sutaria, D. and Jefferson, T. A. 2004. Records of Indo-Pacific Humpback Dolphins (\u003Ci\u003ESousa chinensis\u003C/i\u003E, Osbeck, 1765) along the coasts of India and Sri Lanka: an overview. Aquatic Mammals: 30: 125-136.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Carwadine, M. 2000. Whales, dolphins and porpoises. Dorling Kindersley. London.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Wang, J. Y., Hung, S. K. and Yang, S.-C. 2004. Records of Indo-Pacific Humpback Dolphins, \u003Ci\u003ESousa chinensis\u003C/i\u003E (Osbeck, 1765), from the waters of western Taiwan. Aquatic Mammals: 30: 189-196.; Wang, J. Y., Yang, S. C., Hung, S. K. and Jefferson, T. A. 2007. Distribution, abundance and conservation status of the eastern Taiwan Strait population of Indo-Pacific humpback dolphins, \u003Ci\u003ESousa chinensis\u003C/i\u003E. Mammalia: 71: 157-165.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Howell, K. M. and Pearson, D. M. 1977. Two records of dolphins from Tanzania. East Afr. Wildl. J.: 15: 167-168.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Smith, B. D., Braulik, G., Jefferson, T. A., Chung, B. D., Vinh, C. T., Du, D. V., Han, B. V., Trong, P. D., Ho, D. T. and Quang, V. V. 2003. Notes on two cetacean surveys in the Gulf of Tonkin, Vietnam. Raffles Bulletin of Zoology: 51: 165-171.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Baldwin, R. M., Collins, M., Van Waerebeek, K. and Minton, G. 2004. The Indo-Pacific Humpback Dolphin of the Arabian region: a status review. Aquatic Mammals: 30: 111-124.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Sousa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12135,"full_name":"Phylloscopus tenellipes","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Pale-legged Leaf-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Pouillot à pattes claires","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1995. Dreijährige ornithologische Studien in Nordkorea. Nachtrag zum I. Teil (Non-Passeres) und II. Teil Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Suppl.: Annalen für Ornithologie: 19: 43-99.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12136,"full_name":"Numenius minutus","author_year":"Gould, 1841","common_names":[{"lang":"Dutch","names":"Kleine Regenwulp","convention_language":false,"id":null},{"lang":"English","names":"Pigmy Curlew, Little Whimbrel, Little Curlew, Siberian Baby Curlew","convention_language":true,"id":null},{"lang":"French","names":"Courlis nain","convention_language":true,"id":null},{"lang":"Russian","names":"Kronschnep-malyutka","convention_language":false,"id":null},{"lang":"Spanish","names":"Zarapito menor, Zarapito chico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1993. Little Curlew (\u003Ci\u003ENumenius minutus\u003C/i\u003E), a new species of bird for Thailand. Natural History Bulletin of the Siam Society: 41: 73-74.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Numenius","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12137,"full_name":"Tringa erythropus","author_year":"(Pallas, 1764)","common_names":[{"lang":"Czech","names":"Vodouš tmavý","convention_language":false,"id":null},{"lang":"Danish","names":"Sortklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Zwarte Ruiter","convention_language":false,"id":null},{"lang":"English","names":"Spotted Redshank","convention_language":true,"id":null},{"lang":"Finnish","names":"Mustaviklo","convention_language":false,"id":null},{"lang":"French","names":"Chevalier arlequin","convention_language":true,"id":null},{"lang":"German","names":"Dunkelwasserläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Füstös cankó","convention_language":false,"id":null},{"lang":"Italian","names":"Totano moro","convention_language":false,"id":null},{"lang":"Portuguese","names":"Perna-vermelha-escuro","convention_language":false,"id":null},{"lang":"Russian","names":"Okthosky Ulit","convention_language":false,"id":null},{"lang":"Spanish","names":"Archibebe Oscuro","convention_language":true,"id":null},{"lang":"Swedish","names":"Svartsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Dedej, Z. and Beqiraj, S. 2005. Information Sheet on RAMSAR Wetlands (RIS): Lake Shkodra and River Buna. RAMSAR.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. 2003. Three new species for Seychelles: Sociable Lapwing \u003Ci\u003EVanellus gregarius\u003C/i\u003E, Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E and Chiffchaff \u003Ci\u003EPhylloscopus collybita\u003C/i\u003E. Bulletin of the African Bird Club: 10: 47-49.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fisher, D. 1998. The first record of Spotted Redshank \u003Ci\u003ETringa erythropus\u003C/i\u003E for South America. Cotinga: 9: 21.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Scolopax erythropus","author_year":"Pallas, 1764"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12138,"full_name":"Phylloscopus ibericus","author_year":"Ticehurst, 1937","common_names":[{"lang":"English","names":"Iberian Chiffchaff","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Svensson, L. 2001. The correct name of the Iberian Chiffchaff \u003Ci\u003EPhylloscopus ibericus\u003C/i\u003E Ticehurst 1937, its identification and new evidence of its winter grounds. Bulletin of the British Ornithologists' Club: 121: 281-296.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12139,"full_name":"Tadorna tadorna","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Gravand","convention_language":false,"id":null},{"lang":"Dutch","names":"Brandgans, Bergeend","convention_language":false,"id":null},{"lang":"English","names":"Shelduck, Common Shelduck","convention_language":true,"id":null},{"lang":"Finnish","names":"Ristisorsa","convention_language":false,"id":null},{"lang":"French","names":"Tadorne de Belon","convention_language":true,"id":null},{"lang":"German","names":"Brandgans","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bütykös ásólúd","convention_language":false,"id":null},{"lang":"Italian","names":"Volpoca","convention_language":false,"id":null},{"lang":"Polish","names":"Ohar","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pato-branco","convention_language":false,"id":null},{"lang":"Spanish","names":"Tarro blanco","convention_language":true,"id":null},{"lang":"Swedish","names":"Gravand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Tadorna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas tadorna","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12140,"full_name":"Calidris fuscicollis","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Hvidrygget Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Bonapartes Strandloper","convention_language":false,"id":null},{"lang":"English","names":"White-rumped Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à croupion blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos culiblanco","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Downing, C. 2005. New distributional information for some Colombian birds, with a new species for South America. Cotinga: 24: 13-15.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P., Franchimont, J., Thévenot, M. and the Moroccan Rare Birds Committee. 2002. Rare birds in Morocco: report of the Moroccan Rare Birds Committee (1998-2000). Bulletin of the African Bird Club: 9: 122-133.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Sikora, A. 1998. [First record of White-rumped Sandpiper \u003Ci\u003ECalidris fuscicollis\u003C/i\u003E in Poland.]. Notatki Ornitologiczne: 39: 263-265.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fraser, M. W. 1984. New and rarely recorded species from the Tristan da Cunha group. Bulletin of the British Ornithologists' Club: 104: 154-155.; Ryan, P. G. 1989. Common Nighthawk \u003Ci\u003EChordeiles minor\u003C/i\u003E and new records of seabirds from Tristan da Cunha and Gough Islands. Bulletin of the British Ornithologists' Club: 109: 147-149.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Browne, S. 1997. The first White-rumped Sandpiper Calidris fuscicollis in Turkey and the Middle East. Sandgrouse: 19: 146-147.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Erolia fuscicollis","author_year":"(Vieillot, 1819)"},{"full_name":"Tringa fuscicollis","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12141,"full_name":"Balaenoptera acutorostrata","author_year":"Lacepede, 1804","common_names":[{"lang":"Dutch","names":"Dwergvinvis","convention_language":false,"id":null},{"lang":"English","names":"Little Piked Whale, Lesser Rorqual, Minke Whale, Northern Minke Whale","convention_language":true,"id":null},{"lang":"French","names":"Petit rorqual, Baleinoptère à museau pointu","convention_language":true,"id":null},{"lang":"German","names":"Minkewal, Zwergwal","convention_language":false,"id":null},{"lang":"Spanish","names":"Ballena minke, Rorcual menor","convention_language":true,"id":null},{"lang":"Swedish","names":"vikval","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Peilie, W. 1985. Studies on the breeding habits of the Minke Whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E) in the Yellow Sea. \u003Ci\u003EChinese Journal of Oceanography and Limnology\u003C/i\u003E: 3: 37–44.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.; Verriopoulou, A., Tounta, E. and Dendrinos, P. 2001. First report of a minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacèpède, 1804) in Hellenic waters. Aquatic Mammals: 27: 137-139.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Berrow, S. D., Whooley, P. and Ferriss, S. 2002. Irish Whale and Dolphin Group cetacean sighting review (1991-2001). Irish Whale and Dolphin Group. Kilrush, Co. Clare.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Walker, D. 1987. Miscellaneous. Annual Report, Calf of Man Bird Observatory: 1986: 55.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"di Natale, A. 1983. The minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacépède) in the Italian seas. Rapports P.-v. Reun. Commn int. Explor. scient. Mer. Mediterr.: 28: 205-206.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Beasley, I. and Jefferson, T. A. 1997. Marine mammals of Borneo: a preliminary checklist. Sarawak Museum Journal: 51: 193-210.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Garrigue, C. and Greaves, J. 2001. Cetacea records for the New Caledonian area (Southwest Pacific Ocean). Micronesica: 34: 27-33.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A.N. and Madon, B. 2007. Bryde’s whales (\u003Ci\u003EBalaenoptera\u003C/i\u003E cf. \u003Ci\u003Ebrydei\u003C/i\u003E Olsen 1913) in the Hauraki Gulf and northeastern New Zealand waters. New Zealand Department of Conservation. Wellington. 24pp","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Olsen, E. and Holst, J.C. 2001. A note on common minke whale (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E ) diets in the Norwegian Sea and the North Sea. \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 3(2): 179–183.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.; Tan, J. M. L. 1997. A field guide to whales and dolphins in the Philippines. Bookmark. Makati City, Philippines.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Reiner, F. 1980. Nota sobre a ocorrencia de um roal, \u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E Lacepède 1840, no porto de Sines. Memorias Mus. Mar. (Zool.): 1: 1-8.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Song, K.-J., Kim, Z.G., Zhang, C.I. and Kim, Y.H. 2010. Fishing gears involved in entanglements of minke whales (\u003Ci\u003EBalaenoptera acutorostrata\u003C/i\u003E) in the East Sea of Korea. Marine Mammal Science: 26: 282-295.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell, E. 1975. Porpoise, dolphin and small whale fisheries of the world. IUCN Monograph No. 3 IUCN. Morges.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chou, L.-S. 1994. Guide to the cetaceans of Taiwan. National Museum of Marine Biology. Taipei.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Notarbartolo di Sciara, G. 2002. Cetacean Species occurring in the Mediterranean and Black Seas. In G. Notarbartolo di Sciara (Ed.), \u003Ci\u003ECetaceans of the Mediterranean and Black Seas: state of knowledge and conservation strategies. A report to the ACCOBAMS Secretariat, Monaco, February 2002.\u003C/i\u003E (p. 17).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Balaenopteridae","genus_name":"Balaenoptera","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"},{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":12142,"full_name":"Amazona tucumana","author_year":"(Cabanis, 1885)","common_names":[{"lang":"Danish","names":"Tucuman-amazone","convention_language":false,"id":null},{"lang":"Dutch","names":"Tucumanamazone","convention_language":false,"id":null},{"lang":"English","names":"Alder Parrot, Tucuman Amazon, Tucuman Parrot","convention_language":true,"id":null},{"lang":"Finnish","names":"Rubiiniamatsoni","convention_language":false,"id":null},{"lang":"French","names":"Amazone de Tucuman","convention_language":true,"id":null},{"lang":"German","names":"Tucumanamazone","convention_language":false,"id":null},{"lang":"Italian","names":"Amazzonia di Tucuman","convention_language":false,"id":null},{"lang":"Spanish","names":"Amazona tucumana, Loro alisero","convention_language":true,"id":null},{"lang":"Swedish","names":"tucumanaamazon","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Krabbe, N., Poulsen, B. O., Frolander, A., Hinojosa B., M. and Quiroga O., C. 1996. Birds of montane forest fragments in Chuquisaca Department, Bolivia. Bulletin of the British Ornithologists' Club: 116: 230-243.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Rivera, L., Rojas Llanos, R., Politi, N., Hennessey, B. and Bucher, E.H. 2010. The Near Threatened Tucumán parrot \u003Ci\u003EAmazona tucumana\u003C/i\u003E in Bolivia: insights for a global assessment. Oryx: 44: 110-113.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Psittaciformes","class_name":"Aves","family_name":"Psittacidae","genus_name":"Amazona","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12143,"full_name":"Carcharodon carcharias","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Afrikaans","names":"Witdoodshaai","convention_language":false,"id":null},{"lang":"Albanian","names":"Peshkaqen njeringrenes","convention_language":false,"id":null},{"lang":"Arabic","names":"Kalb, Wahsh, Kalb bahr","convention_language":false,"id":null},{"lang":"Catalan","names":"Tauró blanc","convention_language":false,"id":null},{"lang":"Danish","names":"Blå haj","convention_language":false,"id":null},{"lang":"Dutch","names":"Wittehaai, Mensen haai, Witte haai","convention_language":false,"id":null},{"lang":"English","names":"White Pointer, White-death, Mango-taniwha, White Shark, Man-eater Shark, Great White Shark, Mango-ururoa","convention_language":true,"id":null},{"lang":"Finnish","names":"Valkohai","convention_language":false,"id":null},{"lang":"French","names":"Requin blanc, Lamie, Mangeur d'hommes, Grand requin blanc","convention_language":true,"id":null},{"lang":"German","names":"Menschenhai, Weißhai","convention_language":false,"id":null},{"lang":"Hebrew","names":"Karish lava","convention_language":false,"id":null},{"lang":"Italian","names":"Pescecane, Squalo bianco","convention_language":false,"id":null},{"lang":"Japanese","names":"Hohojirozame","convention_language":false,"id":null},{"lang":"Maltese","names":"Huta tax-Xmara, Kelb Abjad, Kelb il - bahar Abjad, Kelb il-bahar abjad, Silfjun","convention_language":false,"id":null},{"lang":"Modern Greek","names":"Skylópsaro sbríllios, Sbrillias","convention_language":false,"id":null},{"lang":"Norwegian","names":"Hvithai","convention_language":false,"id":null},{"lang":"Papiamento","names":"Tribon blancu","convention_language":false,"id":null},{"lang":"Polish","names":"Zarlacz ludojad","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-de-São-Tomé, Tubarão, Tubarao de Sao Tomé, Tubarão de São Tome, Tubarão-branco, Tubarão branco","convention_language":false,"id":null},{"lang":"Romanian","names":"Rechin mancator de oameni, Rechin alb","convention_language":false,"id":null},{"lang":"Russian","names":"Geldevaja akula","convention_language":false,"id":null},{"lang":"Serbian","names":"Velika bela ajkula, Pas modrulj","convention_language":false,"id":null},{"lang":"Spanish","names":"Jaquetón de ley, Jaquetón, Jaquetón blanco, Devorador de hombres, Marrajo, Tiburón blanco, Tiburón antropófago","convention_language":true,"id":null},{"lang":"Swedish","names":"Vithaj, jätte-håbrand","convention_language":false,"id":null},{"lang":"Tagalog","names":"Pating","convention_language":false,"id":null},{"lang":"Turkish","names":"Karkarias","convention_language":false,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Balart, E. F., Castro-Aguirre, J. L., Aurioles-Gamboa, D., García-Rodríguez, F. and Villavicencio-Garayzar, C. 1995. Adiciones a la ictiofauna de Bahía de la Paz, Baja California Sur, México. Hidrobiológia: 5(1-2): 79-85.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Soldo, A. and Jardas, I. 2002. Occurrence of great white shark, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E (Linnaeus, 1758) and basking shark, \u003Ci\u003ECetorhinus maximus\u003C/i\u003E (Gunnerus, 1758) in the Eastern Adriatic and their protection. Periodicum Biologorum: 104: 195-201.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Johnson, R., Bester, M.N., Dudley, S.F.J., Oosthuizen, W.H., Meyer, M., Hancke, L. and Gennari, E. 2009. Coastal swimming patterns of white sharks (\u003Ci\u003ECarcharodon carcharias\u003C/i\u003E) at Mossel Bay, South Africa. Environmental Biology of Fishes: 85: 189-200.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Duffy, C. Francis, M. Manning, M. and Bonfil, R. 2012. Regional population connectivity, oceanic habitat, and return migration revealed by satellite tagging of White Sharks, \u003Ci\u003ECarcharodon carcharias\u003C/i\u003E, at New Zealand. In: Global Perspectives on the Biology and Life History of the White Shark. New York: CRC.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; van der Elst, R. 1993. A guide to the common sea fishes of southern Africa. Struik Publishers. Cape Town.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; Weng, K.C., Boustany, A.M., Pyle, P., Anderson, S.D., Brown, A. and Block, B.A. 2007. Migration and habitat of white sharks (\u003Ci\u003ECarcharodon carcharias\u003C/i\u003E) in the eastern Pacific Ocean. Marine Biology: 152: 877-894.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Huu Phung andTran Hoai Lan. 1994. Checklist of marine fishes in Viet Nam. Science and Technics Publishing House, Viet Nam. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Lamnidae","genus_name":"Carcharodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/03/2010","name":"Sharks"}]},{"id":12145,"full_name":"Myotis mystacinus","author_year":"(Kuhl, 1817)","common_names":[{"lang":"Albanian","names":"Lakuriqnate veshmiu me mustage","convention_language":false,"id":null},{"lang":"Croatian","names":"Brkati šišmiš","convention_language":false,"id":null},{"lang":"Czech","names":"Netopýr vousatý","convention_language":false,"id":null},{"lang":"Danish","names":"Skægflagermus","convention_language":false,"id":null},{"lang":"Dutch","names":"Baardvleermuis","convention_language":false,"id":null},{"lang":"English","names":"Common Whiskered Bat, Whiskered Bat","convention_language":true,"id":null},{"lang":"Estonian","names":"Habelendlane","convention_language":false,"id":null},{"lang":"Finnish","names":"Viiksiippa","convention_language":false,"id":null},{"lang":"French","names":"Murin à moustaches","convention_language":true,"id":null},{"lang":"German","names":"Kleine Bartfledermaus","convention_language":false,"id":null},{"lang":"Hungarian","names":"Bajuszos denevér","convention_language":false,"id":null},{"lang":"Icelandic","names":"Skeggblaka","convention_language":false,"id":null},{"lang":"Italian","names":"Vespertilio mustacchino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Skjeggflaggermus","convention_language":false,"id":null},{"lang":"Portuguese","names":"Morcego-de-bigodes","convention_language":false,"id":null},{"lang":"Slovak","names":"Netopier fúzatý","convention_language":false,"id":null},{"lang":"Spanish","names":"Murciélago bigotudo","convention_language":true,"id":null},{"lang":"Swedish","names":"Mustaschfladdermus","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Uhrin, M., Horacek, I., Sibi, J. and Bego, F. 1996. On the bats (Mammalia: Chiroptera) of Albania: survey of the recent records. Acta Societatis Zoologicae Bohemicae: 60: 63-71.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Baagøe, H. J. 2001. Danish bats (Mammalia: Chiroptera): atlas and analysis of distribution, occurrence, and abundance. Steenstrupia: 26: 1-117.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Ernits, P. 1990. A survey of the species composition of Estonian mammals. Eesti Loodus: 3: 167-171.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Karapandza, B. and Paunovic, M. 2008. National report on the implementation of the Agreement on the Conservation of Bats in Europe 2007: Serbia - an update. Ministry of Environment and Spatial Planning, Republic of Serbia. Belgrade. 16","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Anon. 2001. Agreement on the conservation of bats in Europe (Eurobats). The report on implementation of the Agreement in Georgia. Inf.EUROBATS.AC6.31 . ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Bates, P. J. J. and Harrison, D. L. 1997. Bats of the Indian subcontinent. Harrison Zoological Museum. Sevenoaks, U.K.; Chakraborty, S. 1983. Contribution to the knowledge of the Mammalian fauna of Jammu and Kashmir, India. Records of the Zoological Survey of India, Miscellaneous Publication, Occasional Paper: 38: 129 pp.; Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Pauza, D. H. and Panziene, N. 1998. Bats of Lithuania: distribution, status and protection. Mammal Review: 28: 53-67.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Anon. 2002. Luxembourg: national report on the implementation of the 'European Bat Agreement'. http://www.eurobats.org . ; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Benda, P. 2004. First record of \u003Ci\u003EMyotis aurascens\u003C/i\u003E and second record of \u003Ci\u003EMyotis brandtii\u003C/i\u003E in Montenegro. Lynx: 35: 13-18.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Benda, P., Ruedi, M. and Aulagnier, S. 2004. New data on the distribution of bats (Chiroptera) in Morocco. Vespertilio: 8: 13-44.; Ibanez, C. 1988. Notes on bats from Morocco. Mammalia: 52: 278-281.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Krystufek, B. 1984. [New and rare bats (Chiroptera, Mammalia) in the Slovene fauna.]. Bioloski Vest.: 32: 45-54.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"Zagorodniuk, I. 1999. [Erroneous records of \u003Ci\u003EMyotis mystacinus\u003C/i\u003E from Ukraine.]. Vestnik Zoologii: 33: 110.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"All migratory Vespertilionidae spp. (only European populations). ","auto_note":"FAMILY ADDITION Vespertilionidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"16/01/1994","name":"EUROBATS"}]},{"id":12146,"full_name":"Phoca vitulina","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Spættet sæl","convention_language":false,"id":null},{"lang":"Dutch","names":"Gewone zeehond","convention_language":false,"id":null},{"lang":"English","names":"Common Seal, Harbour Seal","convention_language":true,"id":null},{"lang":"Estonian","names":"Randalhüljes","convention_language":false,"id":null},{"lang":"Finnish","names":"Kirjohylje","convention_language":false,"id":null},{"lang":"French","names":"Phoque veau-marin","convention_language":true,"id":null},{"lang":"German","names":"Seehund","convention_language":false,"id":null},{"lang":"Hungarian","names":"Borjúfóka","convention_language":false,"id":null},{"lang":"Icelandic","names":"Landselur","convention_language":false,"id":null},{"lang":"Italian","names":"Foca comune","convention_language":false,"id":null},{"lang":"Lithuanian","names":"Paprastasis ruonis","convention_language":false,"id":null},{"lang":"Norwegian","names":"Steinkobbe","convention_language":false,"id":null},{"lang":"Polish","names":"Foka pospolita","convention_language":false,"id":null},{"lang":"Portuguese","names":"Foca-vitulina, Foca","convention_language":false,"id":null},{"lang":"Spanish","names":"Foca común, Foca moteada","convention_language":true,"id":null},{"lang":"Swedish","names":"Knubbsäl","convention_language":false,"id":null},{"lang":"Turkish","names":"Liman focu","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Borkenhagen, P. 1994. Nachweise nichtheimische Robbenarten (\u003Ci\u003EOdobenus rosmarus\u003C/i\u003E, \u003Ci\u003EPhoca hispida\u003C/i\u003E, \u003Ci\u003EPhoca groenlandica\u003C/i\u003E, \u003Ci\u003ECystophora cristata\u003C/i\u003E) an den Kusten Schleswig-Holsteins. Säugetierkundliche Mitteilungen: 3: 661-671.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Nowak, E. 1981. Die Säugetiere der Länder der Europäischen Gemeinschaft. Artenkatalog mit Angaben über Vorkommen und gesetzlichen Schutzstatus. Kilda-Verlag. Greven, Germany.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Small, R.J., Boveng, P.L., Byrd, G.V. and Withrow, D.E. 2008. Harbor seal population decline in the Aleutian Archipelago. Marine Mammal Science: 24: 845-863.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Phoca","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":"Only Baltic and Wadden Sea populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/10/1991","name":"Wadden Sea Seals"}]},{"id":12147,"full_name":"Falco naumanni","author_year":"Fleischer, 1818","common_names":[{"lang":"Danish","names":"Lille tårnfalk","convention_language":false,"id":null},{"lang":"Dutch","names":"Kleine Torenvalk","convention_language":false,"id":null},{"lang":"English","names":"Lesser Kestrel","convention_language":true,"id":null},{"lang":"Finnish","names":"Pikkutuulihaukka","convention_language":false,"id":null},{"lang":"French","names":"Faucon crécerellette","convention_language":true,"id":null},{"lang":"German","names":"Rötelfalke, Roetelfalke","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fehérkarmú vércse","convention_language":false,"id":null},{"lang":"Italian","names":"Grillaio","convention_language":false,"id":null},{"lang":"Polish","names":"pustuleczka","convention_language":false,"id":null},{"lang":"Portuguese","names":"Peneireiro-das-torres","convention_language":false,"id":null},{"lang":"Russian","names":"Stepnaya Pustelga","convention_language":false,"id":null},{"lang":"Spanish","names":"Cernícalo primilla","convention_language":true,"id":null},{"lang":"Swedish","names":"Rödfalk","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Boles, W. E. 1989. A new subspecies of the Green-backed Robin \u003Ci\u003EPachycephalopsis hattamensis\u003C/i\u003E, comprising the first record from Papua New Guinea. Bulletin of the British Ornithologists' Club: 109: 119-121.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"extinct,extinct (?)","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Zinner, D. 2001. Ornithological notes from a primate survey in Eritrea. Bulletin of the African Bird Club: 8: 95-106.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Hellenic Ornithological Society. 1987. [Decrease in the population of the Lesser Kestrel.]. Nature: 37: 35.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sage, B. L. 1959. Some comments on autumn migration in eastern Iraq. Bulletin of the British Ornithologists' Club: 79: 132-135.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Liven-Schulman, I., Leshem, Y., Alon, D., and Yom-Tov, Y. 2004. Causes of population declines of the Lesser Kestrel \u003Ci\u003EFalco naumanni\u003C/i\u003E in Israel. Ibis: 146: 145-152.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Parr, S. J., Sklyarenko, S., Brokhovich, S., Brookhouse, J., Collin, P. N. and Heredia, B. 2000. A baseline survey of Lesser Kestrel \u003Ci\u003EFalco naumanni\u003C/i\u003E in south-east Kazakhstan, April-May 1997. Sandgrouse: 22: 36-42.; Tella, J. L., Carrete, M., Sánchez-Zapata, J. A., Serrano, D., Gavrilov, A., Sklyarenko, S., Ceballos, O., Donázar, J. A. and Hiraldo, F. 2004. Effects of land use, nesting-site availability, and the presence of larger raptors on the abundance of of Vulnerable lesser kestrels \u003Ci\u003EFalco naumanni\u003C/i\u003E in Kazakhstan. Oryx: 38: 224-227.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Piechocki, R., Stubbe, M., Uhlenhaut, K. and Sumjaa, D. 1981. Beitrage zur Avifauna der Mongolei. Mitteilungen aus dem Zoologischen Museum in Berlin, Ann. Orn.: 57: 71-128.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mobakken, G. 2005. Lesser Kestrel at sea off Svalbard. Dutch Birding: 27: 206.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":12148,"full_name":"Sylvia melanothorax","author_year":"Tristram, 1872","common_names":[{"lang":"Danish","names":"Sortbrystet Sanger","convention_language":false,"id":null},{"lang":"Dutch","names":"Cyperse Zwartkop","convention_language":false,"id":null},{"lang":"English","names":"Cyprus Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de Chypre","convention_language":true,"id":null}],"distributions":[{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12150,"full_name":"Sterna vittata","author_year":"J. F. Gmelin, 1789","common_names":[{"lang":"English","names":"Antarctic Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne couronnée","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán antártico","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sterna","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12151,"full_name":"Lycaon pictus","author_year":"(Temminck, 1820)","common_names":[{"lang":"English","names":"Wild Dog, African Hunting Dog, African Wild Dog","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct","country_references":"Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"extinct","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"extinct","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Canidae","genus_name":"Lycaon","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12152,"full_name":"Somateria mollissima","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Danish","names":"Ederfugl","convention_language":false,"id":null},{"lang":"Dutch","names":"Eidereend","convention_language":false,"id":null},{"lang":"English","names":"Common Eider, Eider","convention_language":true,"id":null},{"lang":"Finnish","names":"Haahka","convention_language":false,"id":null},{"lang":"French","names":"Eider à duvet","convention_language":true,"id":null},{"lang":"German","names":"Eiderente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pehelyréce","convention_language":false,"id":null},{"lang":"Italian","names":"Edredone","convention_language":false,"id":null},{"lang":"Polish","names":"Edredon","convention_language":false,"id":null},{"lang":"Portuguese","names":"Eider-edredão","convention_language":false,"id":null},{"lang":"Spanish","names":"Eider Común","convention_language":true,"id":null},{"lang":"Swedish","names":"Ejder","convention_language":false,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Komisja Faunistyczna. 1998. [Rare birds recorded in Poland in 1997.]. Notatki Ornitologiczne 39: 151-174.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Somateria","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas mollissima","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12153,"full_name":"Chloephaga poliocephala","author_year":"Sclater, 1857","common_names":[{"lang":"English","names":"Ashy-headed Goose","convention_language":true,"id":null},{"lang":"French","names":"Ouette à tête grise","convention_language":true,"id":null},{"lang":"Spanish","names":"Cauquén cabecigrís","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Chloephaga","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12154,"full_name":"Larus leucophthalmus","author_year":"Temminck, 1825","common_names":[{"lang":"Danish","names":"Hvidøjet Måge","convention_language":false,"id":null},{"lang":"Dutch","names":"Witoogmeeuw","convention_language":false,"id":null},{"lang":"English","names":"White-eyed Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland à iris blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota ojiblanca","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":12155,"full_name":"Chelonia mydas","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Green turtle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Craig, P. (ed.) 2002. Natural History guide to American Samoa. National Park of American Samoa and Dept. Marine and Wildlife Resources. Pago Pago.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Richardson, L. and Gumbs, C. 1984. The National Report: Anguilla. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Arnold, E. N. 1986. A key and annotated check list to the lizards and amphisbaenians of Arabia. Fauna of Saudi Arabia: 8: 385-435.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Limpus, C. J. 1982. The status of Australian sea turtle populations. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Limpus, C. J. and Parmenter, C. J. 1986. The sea turtle resources of the Torres Strait region. Proceedings of Torres Strait Fisheries Seminar, Port Moresby, 1-14 February, 1985 . 96-107; Limpus, C. J. and Reed, P. C. 1985. The Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in Queensland: a preliminary description of the population structure in a coral reef feeding ground. In: Grigg, G., Shine, R. and Ehmann, H. (eds.) Biology of Australasian frogs and reptiles. Royal Zoological Society of New South Wales.; Limpus, C. J., Carter, D. and Hamann, M. 2001. The Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in Queensland, Australia: the Bramble Cay rookery in the 1978/1980 breeding season. Chelonian Conservation and Biology: 4(1): 34-46; Limpus, C. J., Fleay, A. and Guinea, M. 1984. Sea turtles of the Capricornia Section, Great Barrier Reef Marine Park. In: Ward, W. T. and Saenger, P. (eds.) The Capricornia Section of the Great Barrier Reef: past, present and future. The Royal Society of Queensland and Australian Coral Reef Society. Queensland, Australia.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. Reza. 1986. Wildlife in Bangladesh mangrove ecosystem. Journal of the Bombay Natural History Society: 83: 32-48.; Sarker, S. U., and Sarker, N. J. 1985. Reptiles of Bangladesh (with their status, distribution and habitat). Tigerpaper: 12: 6-12.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Eckert, K.L. and A.H. Hemphill. 2005. Sea turtles as flagships for protection of the Wider Caribbean Region. MAST: 3: 119-143.; Horrocks, J.A. 1992. WIDECAST Sea Turtle Recovery Action Plan for Barbados. Caribb. Environ. Programme. Tech. Rep.: 12: 61.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Anon. 2002. Reptiles of Belize. http://biological-diversity.info/reptiles.htm . ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"extinct,reintroduced","country_references":"Burnett-Herkes, J. 1984. The National Report: Bermuda. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A. 1984. Ad hoc data report: Brazil. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Stuart, B. 2001. Amphibians and reptiles of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"C. D. Bell, J. L. Solomon, J. M. Blumenthal, T. J. Austin, G. Ebanks-Petrie, A. C. Broderick and B. J. Godley. 2007. Monitoring and conservation of critically reduced marine turtle nesting populations: lessons from the Cayman Islands. Animal Conservation: 10: 39-47.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Chu-chien, Huang. 1982. Distribution and population dynamics of the Sea Turtles in China seas. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. and Frazier, S. S. 1985. Preliminary report: Chinese - American Sea Turtle Survey, June-August 1985. Fujian Teachers University Fuzhou, Fujian and National Program for Advanced Study and Research in China CSCPRC, National Academy of Sciences. Washington D.C. ; Zhao, E.-M. and Adler, K. 1993. Herpetology of \u003Ci\u003EChina\u003C/i\u003E. Society for the Study of Amphibians and Reptiles. Oxford. Ohio.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Ogren, L. H. 1984. Draft National Report: Colombia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Largen, M. J. 1991. Lizards, turtles and tortoises (Reptilia: Sauria \u0026 Cryptodira) from the Kouilou River basin, République du Congo. Tauraco Research Report: 4: 169-173.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bjorndal, A.K., J. A. Wetherall, , A.B. Bolten, and J.A. Mortimer. 1999. Twenty-Six Years of Green Turtle Nesting at Tortuguero, Costa Rica: An Encouraging Trend. Conservation Biology : 13: 126-134.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Bravo, P. E. 1984. The National Report: Costa Rica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press.; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Cornelius, S. E. 1986. The sea turtles of Santa Rosa National Park. Fundacion de Parques Nacionales. Costa Rica.; Leenders, T. 2001. A guide to amphibians and reptiles of Costa Rica. Zona Tropical, S.A. Miami, U.S.A.; Ogren, L. H. 1989. Status report of the Green Turtle. In: Ogren, L. et al. (eds.) Proceedings of the Second Western Atlantic Turtle Symposium. NOAA Technical Memorandum NMFS-SEFC-226 . 89-94; Sasa, M., Chaves, G. and Porras, L.W. 2010. The Costa Rican herpetofauna: conservation status and future perspectives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng S., and E. Rankin. 2005. Long-term conservation efforts contribute to positive green turtle \u003Ci\u003EChelonia mydas\u003C/i\u003E nesting trend at Tortuguero, Costa Rica. Biological Conservation : 121: 111-116.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Radovic, J., Civic, K. and Topic, R. 2006. Biodiversity of Croatia. State Institute for Nature Protection, Ministry of Culture - Republic of Croatia. Zagreb.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Broderick, A. C., Glen, F., Godley, B. J. and Hays, G. C. 2002. Estimating the number of green and loggerhead turtles nesting annually in the Mediterranean. Oryx: 36: 227-235.; Demetropoulos, A. 1983. WWF/IUCN Project 1815. Cyprus-turtle conservation. Report for 1982. ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Green, D. 1983. Galapagos sea turtles. Notic. Galap.: 38: 22-25.; Green, D. 1984. Long-distance movement of Galapagos Green Turtles. Journal of Herpetology: 18: 121-130.; Green, D. 1984. Population ecology of the East Pacific green turtle (\u003Ci\u003EChelonia mydas agassizii\u003C/i\u003E) in the Galapagos Islands. National Geographic Society Research Reports, 1975 projects: 16: 463-475.; Green, D. and Ortiz Crespo, F. 1982. The status of sea turtle populations in the central eastern Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Seminoff, J.A., Zarate, P., Coyne, M., Foley, D.G., Parker, D., Lyon, B.N. and Dutton, P.H. 2008. Post-nesting migrations of Galápagos green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E in relation to oceanographic conditions: integrating satellite telemetry with remotely sensed ocean data. Endangered Species Research: 4: 57-72.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Campbell, A., Clarke, M., Ghoneim, S., Hameid, W. S., Simms, C. and Edwards, C. 2002. On status and conservation of marine turtles along the Egyptian Mediterranean Sea coast: results of the Darwin Initiative Sea Turtle Conservation Project 1998-2000. Zoology in the Middle East: 24: 19-29.; Frazier, J. and Salas, S. 1984. The status of marine turtles in the Egyptian Red Sea. Biological Conservation: 30: 41-67.; Sharif M. Baha El Din. 2007. A guide to the Reptiles and Amphibians of Egypt. American University in Cairo Press. Sharia Kasr el Aini, Cairo, Egypt.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 1997. Primer informe de pais, Proyecto, \"Formulacion de la estrategia nacional, plan de accion y primer informe de pais sobre diversidad biologica\". http://www.biodiv.org/doc/world/sv/sv-nr-01-es.pdf . ; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Greenbaum, E. and Komar, O. 2010. A conservation assessment of Salvadoran protected areas: priorities and recommendations based on amphibian and reptile distributions. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Largen, M. J. 1997. An annotated checklist of the amphibians and reptiles of Eritrea, with keys for their identification. Tropical Zoology: 10: 65-115.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Nair, V. 2003. Fiji Islands marine ecoregion: an overview of outstanding biodiversity, threats, opportunities and key stakeholders for conservation. WWF Fiji Programme. Suva. ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Fretey, J. 1984. The National Report: French Guiana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Lebeau, A. 1985. Breeding evaluations trials in the Green Turtle \u003Ci\u003EChelonia mydas\u003C/i\u003E (Linne) on Scilly Atoll during the breeding seasons 1982-1983 and 1983-1984. In: Proceedings of the Fifth International Coral Reef Congress, Tahiti Vol. 5 . ; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Lauret-Stepler, M., Bourjea, J., Roos, D., Pelletier, D., Ryan, P.G., Ciccione, S. and Grizel, H. 2007. Reproductive seasonality and trend of \u003Ci\u003EChelonia mydas\u003C/i\u003E in the SW Indian Ocean: a 20 yr study based on track counts. Endangered Species Research: 3: 217-227.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Pauwels, O. S. G., Christy, P. and Honorez, A. 2006. Reptiles and national parks in Gabon, western central Africa. Hamadryad : 30: 181-196.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K., Emms, C., Jallow, A., Cham, A. M. and Mortimer, J. A. 2004. The distribution and conservation status of marine turtles in The Gambia, West Africa: a first assessment. Oryx: 38: 203-208.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Finley, J. 1984. The National Report: Grenada. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Fretey, J. 1984. The National Report: Guadeloupe. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Acevedo, M., Wilson, L.D., Cano, E.B. and Vázquez-Almazán, C. 2010. Diversity and conservation status of the Guatemalan herpetofauna. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Loessener, F. R. 1984. The National Report: Guatemala. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press, 1984 . ; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Reichart, H. A., Pritchard, C. H. and Mohadin, K. 1984. The National Report: Guyana. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Reynolds, R., MacCulloch, R., Tamessar, M., Watson, C. Cole, C. J. and Townsend, C. 2004. Preliminary checklist of the herpetofauna of Guyana. http://www.mnh.si.edu/bdg/guyherps.html Smithonian Institution. Washington, D. C. ","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Kavanaght, R. 1984. The National Report: Haiti. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Burgos E. 1984. Status and management of sea turtle populations in Central America with special emphasis on turtles in Honduras. Oregon State University: 1-14.; Espinal, M. 1984. The National Report: Honduras. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Townsend, J.H. and Wilson, L.D. 2010. Conservation of the Honduran herpetofauna: issues and imperatives. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Kar, C. S. and Bhaskar, S. 1982. The status of the sea turtles in the East Indian Ocean. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Silas, E. G. (ed.) 1984. Proceedings of the Workshop on Sea Turtle Conservation, 27-29 February, 1984, Madras. Central Marine Fisheries Research Institute. India. ","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Iskandar, D. T. and Erdelen, W. R. 2006. Conservation of amphibians and reptiles in Indonesia: issues and problems. Amphibian and Reptile Conservation: 4: 60-87.; Nuitja, I. N. S. and Akhmad, S. 1982. Management and conservation of marine turtles in Indonesia. IUCN World National Parks Congress . ; Polunin, N. V. C., and Sumertha Nuitja, N. 1982. Sea turtle populations of Indonesia and Thailand. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Salm, R. 1984. Conservation of marine species in Indonesia. Directorate General of Forest Protection and Nature Conservation. IUCN/WWF. 79; Salm, R. V. and Halim, I. M. 1984. Marine Conservation Data Atlas. IUCN/WWF Project 3108, Marine Conservation . ; Schulz, J. P. 1984. Turtle conservation strategy in Indonesia. IUCN/WWF Report . ","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Kerr, R. 1984. The National Report: Jamaica. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Kikukawa, A., Kamezaki, N., Hirate, K. and Ota, H. 1996. Distribution of nesting sites of sea turtles in Okinawajima and adjacent islands of the Central Ryukyus, Japan. Chelonian Conservation and Biology: 2: 99-101.; Uchida I. 1985. [Sea turtles in around Nansei Shoto.]. In: Anon. (WWF-Japan Scientific committee) Conservation of the Nansei Shoto, Part II. WWF-Japan.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Newbury, N., Khalil, M. and Venizelos, L. 2002. Population status and conservation of marine turtles at El-Mansouri, Lebanon. Zoology in the Middle East: 27: 47-60.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Pilcher, N. 2010. Population structure and growth of immature Green turtles at Mantanani, Sabah, Malaysia. Journal of Herpetology: 44: 168-171.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Colton, E. O. 1977. Turtles of the Maldives. Defenders (of Wildlife): 52: 167-170.; Moutou, F. 1985. Briefly: the Maldive Islands. Oryx: 19: 232-233.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Padial, J.M. 2006. Commented distributional list of the reptiles of Mauritania (West Africa). Graellsia: 62: 159-178.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Frazier, J. 1982. The status of marine turtles in the Western Indian Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Frazier, J. 1985. Marine Turtles in the Comoro Archipelago. North-Holland Publishing Company,. Amsterdam, Oxford and New York.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Alvarado, J., and Figueroa, A. 1986. The ecological recovery of sea turtles in Michoacan, Mexico. Special attention: the Black Turtle (\u003Ci\u003EChelonia agassizi\u003C/i\u003E). Final Report to WWF-US, US Fish and Wildlife Service . ; Cliffton, K. 1982. Preservation of the East Pacific Green Turtle \u003Ci\u003EChelonia mydas agassizi\u003C/i\u003E. Final Report on Project 1812 (Submitted to WWF-US, 18 March) . ; Cliffton, K., Cornejo, D. O. and Felger, R. S. 1981. Sea turtles of the Pacific Coast of Mexico. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Johnson, J.D., Mata-Silva, V. and Ramírez-Bautista, A. 2010. Geographic distribution and conservation of the herpetofauna of southeastern Mexico. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Marquez, R. M. 1984. The National Report: Mexico Caribbean Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Marquez, R. M. 1984. The National Report: Mexico Gulf Region. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3 University of Miami Press. ; Miller, W. G., Berry, F. and Fletemeyer, J. R. 1984. The National Report: Belize. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3: 41-48.; Murphy, R.W. and Méndez de la Cruz, F. 2010. The herpetofauna of Baja California and its associated islands: A conservation assessment and priorities. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Herring, T. L. 1986. A guide to sea turtle conservation (in Pohnpei State, Federated States of Micronesia). ; Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Jeffers, J. and Meylan, A. 1984. The National Report: Montserrat. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Martin, C. S., J. Jeffers and B. J. Godley. 2005. The status of marine turtles in Montserrat (Eastern Caribbean). Animal Biodiversity and Conservation: 28(2): 159-168.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Maxwell, F. D. 1911. Reports on inland and sea fisheries in the Thongwa, Myaungmya, and Bassein districts and the turtle banks of the Irrawaddy division. Government Printing Office. Rangoon.; Zug, G., Slowinski, J. and Wogan, G. 2003. Checklist of the amphibians and reptiles of Myanmar. http://www.calacademy.org/research/herpetology/myanmar/checklist.html . ","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Debrot, A.O. A.B. Tiel and J.E.Bradshaw. 1995. Sea turtle nesting activity on northeast coast beaches of Curacao. Caribbean Journal of Science: 31: 333-338.; Debrot, O.A., N. Esteban, R.Le Scao, A. caballero and P.C. Hoetjes. 2005. New sea turtle records for the Netherlands Antilles provide impetus to conservatin action. Caribbean Journal of Science.: 41: 334-339.; Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Aruba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; van Buurt, G. 1984. Ad hoc data report: Netherlands Antilles: Saba. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Bauer, A. M. and Vindum, J. V. 1990. A checklist and key to the herpetofauna of New Caledonia, with remarks on biogeography. Proceedings of the California Academy of Sciences: 47: 17-45.; Pritchard, P. C. H. 1982. Marine turtles of the South Pacific. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Pritchard, P. C. H. 1987. Sea turtles in New Caledonia. Report of a literature survey and field investigation. Unpublished report . ; Richer de Forges, B. and Bargibant, G. 1985. Le lagon nord de la Nouvelle-Caledonie et les atolls de Huon et Surprise. Rapports Scientifiques et Techniques No. O.R.S.T.O.M. Noumea. ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Lagueux, C.J. and Campbell, C.L. 2005. Marine turtle nesting and conservation needs of the south-east coast of Nicaragua. Oryx: 39: 1-8.; Mortimer, J.A. 1981. The Feeding Ecology of the West Caribbean Green Turtle (\u003Ci\u003EChelonia mydas\u003C/i\u003E) in Nicaragua. Biotropica: 13: 49-58.; Sunyer, J. and Köhler, G. 2010. Conservation status of the herpetofauna of Nicaragua. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Troëng, S., Evans, D.R., Harrison, E. and Lagueux, C.J. 2005. Migration of green turtles \u003Ci\u003EChelonia mydas\u003C/i\u003E from Tortuguero, Costa Rica. Marine Biology: 148: 435-447.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Niue","country":"Niue","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Ross, J. P. 1985. Biology of the Green Turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E on an Arabian feeding ground. Journal of Herpetology: 19: 459-468.; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Firdous, F. 1985. Marine turtle management along Karachi coast. WWF-Pakistan: 4: 5-9.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pritchard, P. C. H. 1982. Marine turtles of Micronesia. In Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Cornelius, S. E. 1982. The status of sea turtles on the Pacific Coast of Central America. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Diaz, E. 1984. The National Report: Panama. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ; Jaramillo, C., Wilson, L.D., Ibáñez, R. and Jaramillo, F. 2010. The herpetofauna of Panama: distribution and conservation status. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles. Eagle Mountain Publishing, LC. Eagle Mountain, Utah.; Wilson, L.D. and Johnson, J.D. 2010. Distributional patterns of the herpetofauna of Mesoamerica, a biodiversity hotspot. In: Wilson, L.D., Townsend, J.H. \u0026 Johnson, J.D. (Eds.) Conservation of Mesoamerican amphibians and reptiles Eagle Mountain Publishing. Eagle Mountain, Utah.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Spring, S. 1982. Status of marine turtle populations in Papua New Guinea. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Spring, S. C. 1983. Marine turtles of Long Island (PNG). A report of an IUCN/WWF sponsored tagging project . ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Alcala, A. C. 1986. Guide to Philippine flora and fauna: amphibians and reptiles. Natural Resources Management Center, Ministry of Natural Resources and University of the Philippines. Quezon City.; De Celis, N. C. 1982. Status of marine turtles in the Philippines. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington, D.C.; Matillano, F. S., and Ladra, D. F. 1986. Nesting habits and habitat of marine turtles in Quiniluban Island, Palawan. Unpublished report . ","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Gonzalez, J. G. 1984. The National Report: Puerto Rico. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Hughes, G. R. 1982. The conservation situation of sea turtle populations in the southern African region. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institution Press. Washington D.C. ; Jean, C., Ciccione, S., Ballorain, K., Georges, J.-Y. and Bourjea, J. 2010. Ultralight aircraft surveys reveal marine turtle population increases along the west coast of Reunion Island. Oryx: 44: 223-229.; Le Gall, J.-Y., Bose, P., Chateau, D. and Taquet, M. 1986. Estimation du nombre de tortues vertes femelles adultes \u003Ci\u003EChelonia mydas\u003C/i\u003E par saison de ponte a Tromelin et Europa (Ocean Indien) 1973-1985. IFREMER Annl. Rep . ; Le Gall, J.-Y., Lebeau, A. and Kopp, J. 1985. Evaluation de la production de tortues vertes \u003Ci\u003EChelonia mydas\u003C/i\u003E nouveau-nees sur les sites de ponte Europa et Tromelin (Ocean Indien). Oceanograph. Trop.: 20: 117-133.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Wilkins, R. and Meylan, A. 1984. The National Report: Saint Kitts Nevis. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Murray, P. A. 1984. The National Report: Saint Lucia. In: Bacon et al. (eds.) Proceedings of the Western Atlantic Turtle Symposium Volume 3. University of Miami Press. ","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"IUCN. 1987. Saudi Arabia: analysis of coastal and marine habitats of the Red Sea. Report to the Meteorology and Environmental Protection Administration, Jeddah. IUCN. Gland, Switzerland. ; IUCN. 1987. Saudi Arabia: an assessment of biotopes and management requirements for the Saudi Arabian Gulf coastal zone. Report to the Meteorology and Environmental Protection Administration, Jeddah, Saudi Arabia. IUCN. Gland, Switzerland. ; Pilcher, N. J. 2000. The green turtle, \u003Ci\u003EChelonia mydas\u003C/i\u003E, in the Saudi Arabian Gulf. Chelonian Conservation and Biology: 3: 730-734.; Ross, J. P., and Barwani, M. A. 1982. Review of sea turtles in the Arabian area. In: Bjorndal, K. (Ed.). The biology and conservation of sea turtles. Smithsonian Institute Press. Washington DC.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Brongersma, L. D. 1982. Marine turtles of the Eastern Atlantic. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.; Dupuy, A. R. 1986. The status of marine turtles in Senegal. Marine Turtle Newsletter: 39: 4-7.; Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"FAO. 1967. Report to the Governments of the People's Republic of Southern Yemen, and the Seychelles Islands on the Green Turtle resource of South Arabia, and the status of the green turtle in the Seychelles Islands. Based on the work of Dr H. Hirth, FAO/TA Marine Turtle Biologist. Rep. FAO/UNDP(TA), No. 2467. 59pp . ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Broderick, D. 1997. Subsistence harvesting of marine turtles in the Solomon Islands. Proceedings of the Seventeenth Annual Symposium on Sea Turtle Biology and Conservation . ; McCoy, M. 1980. Reptiles of the Solomon Islands. Wau Ecology Institute, Handbook No. 7.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"HCENR. 2006. Third national report on the implementation of the Convention on Biological Diversity. Government of the Republic of Sudan. Higher Council for Environment and Natural Resources. Khartoum, Sudan. 43","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Fretey, J. 2001. Biogeography and conservation of marine turtles of the Atlantic coast of Africa/Biogéographie et conservation des tortues marines de la côte atlantique de l'Afrique. CMS Technical Series Publication No. 6. UNEP/CMS Secretariat, Bonn, Germany. 429","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Spawls, S., Howell, K., Drewes, R. and Ashe, J. 2002. A field guide to the reptiles of East Africa. Academic Press. London.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Balazs, G. H. 1982. Status of sea turtles in the Central Pacific Ocean. In: Bjorndal, K. (ed.) The biology and conservation of sea turtles. Smithsonian Institute Press. Washington D.C.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ehrhart, L.M. and Witherington, B.E. 1987. Human and natural causes of marine turtle nest and hatchling mortality and their relationship to hatchling production on an important Florida nesting beach. Florida Game and Fresh Water Fish Comission. Florida, USA. 141","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Avila-Pires, T. C. S. 2005. Checklist of the terrestrial vertebrates of the Guiana Shield. Reptiles. Bulletin of the Biological Society of Washington: 13: 25-40.; Brautigan, A. and Eckert, K. L. 2006. Turning the Tide: Exploitation, Trade and Management of Marine Turtles in the Lesser Antilles, Central America, Colombia and Venezuela. Traffic International. Cambridge, UK. 534; Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Nguyen, V.S, Ho, T.C, and Nguyen, Q.T. 2009. Herpetofauna of Vietnam. Andreas S. Brahm. Frankfurt am Main.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Van Dijk, P. P., Iverson, J. B., Rhodin, A. G. J., Shaffer, H. B., and Bour, R. 2014. Turtles of the world, 7th Edition: annotated checklist of taxonomy, synonymy, distribution with maps, and conservation status. In: Conservation Biology of Freshwater Turtles and Tortoises: A Compilation Project of the IUCN/SSC Tortoise and Freshwater Turtle Specialist Group. Chelonian Research Monographs: 5: 329–479.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Sindaco, R. and Jeremcenko, V.K. 2008. The reptiles of the western palearctic. Edizioni Delvedere. Via Adige, 45 - Latina (Italy).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Testudinata","class_name":"Reptilia","family_name":"Cheloniidae","genus_name":"Chelonia","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"24/01/1986","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":"All migratory Cheloniidae spp.","auto_note":"FAMILY ADDITION Cheloniidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/09/2001","name":"IOSEA Marine Turtles"},{"effective_from_formatted":"01/07/1999","name":"Atlantic Turtles"}]},{"id":12156,"full_name":"Lagenorhynchus australis","author_year":"(Peale, 1848)","common_names":[{"lang":"English","names":"Blackchin Dolphin, Peale's Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Lagénorhynque de Peale","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín austral","convention_language":true,"id":null},{"lang":"Swedish","names":"svartkindad delfin, Peales delfin","convention_language":false,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownell, R. L. Jr, Crespo, E. A. and Donahue, M. A. 1999. Peale's Dolphin \u003Ci\u003ELagenorhynchus australis\u003C/i\u003E (Peale, 1848). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":12343,"full_name":"Ciconia microscelis","author_year":"Gray, 1848","common_names":[{"lang":"English","names":"Woolly-necked Stork, African Woollyneck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Ciconia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly listed as Ciconia episcopus microscelis.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54351,"full_name":"Berardius arnuxii","author_year":"Duvernoy, 1851","common_names":[{"lang":"English","names":"Arnoux's Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Friedlaender, A.S., Nowacek, D.P., Johnston, D.W., Read, A.J., Tyson, R.B., Peavey, L. and Revelli, E.M.S. 2010. Multiple sightings of large groups of Arnoux’s beaked whales (\u003Ci\u003EBerardius arnouxii\u003C/i\u003E) in the Gerlache Strait, Antarctica. Marine Mammal Science: 26: 246-250.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Martuscelli, P. Milanelo, M. and Olmos, F. 1995. First record of Arnoux's Beaked Whale (\u003Ci\u003EBerardius arnuxii\u003C/i\u003E) and Southern Right-Whale Dolphin (\u003Ci\u003ELissodelphis peronii\u003C/i\u003E) from Brazil. Mammalia: 59: 274-275.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Berardius","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54352,"full_name":"Cephalorhynchus hectori","author_year":"(van Beneden, 1881)","common_names":[{"lang":"English","names":"Hector's Dolphin, White-headed Dolphin, New Zealand Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Cephalorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54353,"full_name":"Delphinus capensis","author_year":"Gray, 1828","common_names":[{"lang":"English","names":"Long-beaked Common Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Davidson, P. and Beasley, I. 2001. Marine mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Bernal, R., Olavarria, C. and Moraga, R. 2003. Ocurrence and long-term residency of two long-beaked common dolphins, Delphinus capensis (Gray 1828), in adjacent small bays on the Chilean central coast. : 29: 396-399.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Engstrom, M. and Lim, B. 2001. Checklist of the mammals of Guyana. http://www.mnh.si.edu/biodiversity/bdg/guymammals.html . ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Heyning, J. E. and Perrin, W. F. 1994. Evidence for two species of common dolphins (genus \u003Ci\u003EDelphinus\u003C/i\u003E) from the eastern North Pacific. Contr. Nat. Hist. Mus. L.A. County: 442: 35 pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"O'Callaghan, T. M. and Baker, C. S. 2002. Summer cetacean community, with particular reference to Bryde’s whales, in the Hauraki Gulf, New Zealand. Department of Conservation. Wellington. 18; Watson, L. 1981. Sea guide to whales of the world. Hutchinson. London.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Van Waerebeek, K., Barnett, L., Camara, A., Cham, A., Diallo, M., Djiba, A., Jallow, A., Ndiaye, E., Samba Ould-Bilal, A. O. and Bamy, I. L. 2003. Conservation of cetaceans in The Gambia and Senegal, 1999-2001, and status of the Atlantic humpback dolphin. UNEP/CMS Secretariat. Bonn, Germany. 56","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Anon. 2000. Long-beaked common dolphin (\u003Ci\u003EDelphinus capensis\u003C/i\u003E): California stock. ; Heyning, J. E. and Perrin, W. F. 1994. Evidence for two species of common dolphins (genus \u003Ci\u003EDelphinus\u003C/i\u003E) from the eastern North Pacific. Contr. Nat. Hist. Mus. L.A. County: 442: 35 pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Aldemaro, R., Agudo, A.I., Green, S.M., Notarbartolo di Sciara, G. 2001. Cetaceans of Venezuela: their distribution and conservation status. Repository@NOAA. ","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Delphinus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54354,"full_name":"Hyperoodon planifrons","author_year":"Flower, 1882","common_names":[{"lang":"English","names":"Southern Bottlenose Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dixon, J.M., Frigo, L.I.N.A. and Moyle, R.L. 1994. New information on the southern bottlenose whale, \u003Ci\u003EHyperoodon planifrons\u003C/i\u003E (Cetacea: Ziphiidae), from a recent stranding in Victoria, Australia. \u003Ci\u003EAustralian Mammalogy\u003C/i\u003E: 17(1): 85–95.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Griffin, M. 2003. Checklist and provisional national conservation status of amphibians, reptiles and mammals known, reported, or expected to occur in Namibia. www.met.gov.na/programmes/status/2003%20checklist.pdf . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Dalebout, M.L., van Helden, A., van Waerebeek, K. and Baker, C.S. 1998. Molecular genetic identification of southern hemisphere beaked whales (Cetacea: Ziphiidae). \u003Ci\u003EMolecular Ecology\u003C/i\u003E: 7: 687–694.; MacLeod, C.D., Perrin, W.F., Pitman, R., Barlow, J., Ballance, L., D’Amico, A., Gerrodette, T., Joyce, G., Mullin, K.D., Palka, D.L. and Waring, G.T. 2006. Known and inferred distributions of beaked whale species ( Cetacea : Ziphiidae). \u003Ci\u003EJournal of Cetacean Research and Management\u003C/i\u003E: 7(3): 271–286.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Praderi, R. 1980. Adiciones a la lista sistemática de cetaceos de Uruguay. 2 (continuación). Resúmenes Jorn. Cienc. nat. Montevideo: 1: 138.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Hyperoodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54356,"full_name":"Indopacetus pacificus","author_year":"(Longman, 1926)","common_names":[{"lang":"English","names":"Indo-pacific Beaked Whale, Longman's Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Dalebout, M. L., Ross, G. J. B., Baker, C. S., Anderson, R.C., Best, P. B., Cockcroft, V. G., Hinsz, H. L., Peddemors, V. and Pitman, R. L. 2003. Appearance, distribution, and genetic distinctiveness of Longman's beaked whale, _Indopacetus pacificus. Marine Mammal Science: 19: 421-461.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Anderson, R. C., Clark, R., Madsen, P. T., Johnson, C., Kiszka, J. and Breysse, O. 2006. Observations of Longman's beaked whale (Indopacetus pacificus) in the Western Indian Ocean. \u003Ci\u003EAquatic Mammals\u003C/i\u003E 32(2): 223-231.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Indopacetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54357,"full_name":"Lagenorhynchus cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)","common_names":[{"lang":"English","names":"Hourglass Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.; Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Brownwll, R. L. Jr and Donahue, M. A. 1999. Hourglass Dolphin \u003Ci\u003ELagenorhynchus cruciger\u003C/i\u003E (Quoy and Gaimard, 1824). In S. H. Ridgway \u0026 R. Harrison (eds.) Handbook of Marine Mammals. Volume 6, the second book of dolphins and porpoises. Academic Press. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lagenorhynchus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Sagmatias cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)"},{"full_name":"Sagmatias cruciger","author_year":"(Quoy \u0026 Gaimard, 1824)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54361,"full_name":"Lissodelphis peronii","author_year":"(Lacépède, 1804)","common_names":[{"lang":"English","names":"Southern Right Whale Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bastida, R. and Bastida, V. L. de. 1984. Avistajes de cetaceos realizados por buques balleneros en aguas Argentinas. Revista del Museo Argentino de Ciencias Naturales 'Bernardino Rivadavia', Zoologia: 13: 211-224.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bouvet Island","country":"Bouvet Island","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Martuscelli, P. Milanelo, M. and Olmos, F. 1995. First record of Arnoux's Beaked Whale (\u003Ci\u003EBerardius arnuxii\u003C/i\u003E) and Southern Right-Whale Dolphin (\u003Ci\u003ELissodelphis peronii\u003C/i\u003E) from Brazil. Mammalia: 59: 274-275.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Canto, J, Ruiz, P. and Yanez, J. 1992. Registro de nuevas especies de cetaceos para la costa de Chile y antecedentes del grupo. Museo Nacional de Historia Natural Boletin (Santiago): 43: 105-115.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Rose, B. and Payne, A. I. L. 1991. Occurrence and behavior of the southern right whale dolphin \u003Ci\u003ELissodelphis peronii\u003C/i\u003E off Namibia. Marine Mammal Science: 7: 25-34.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Jefferson, T. A., Newcomer, M. W., Leatherwood, S. and Van Waerebeek, K. 1994. Right Whale Dolphins \u003Ci\u003ELissodelphis borealis\u003C/i\u003E (Peale, 1848) and \u003Ci\u003ELissodelphis peronii\u003C/i\u003E (Lacépède, 1804). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Lissodelphis","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54362,"full_name":"Mesoplodon bowdoini","author_year":"Andrews, 1908","common_names":[{"lang":"English","names":"Andrews's Beaked Whale, Splaytooth Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Laporta, P., Praderi, R., Little, V. and Le Bas, A. 2005. An Andrew's beaked whale \u003Ci\u003EMesoplodon bowdoini\u003C/i\u003E (Cetacea, Ziphidae) stranded on the Atlantic coast of Uruguay. Latin American Journal of Aquatic Mammals: 4: 101-111.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54363,"full_name":"Mesoplodon ginkgodens","author_year":"Nishiwaki \u0026 Kamiya, 1958","common_names":[{"lang":"English","names":"Ginkgo-toothed Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Baker, A. N. and van Helden, A. L. 1999. New records of beaked whales, genus \u003Ci\u003EMesoplodon\u003C/i\u003E, from New Zealand (Cetacea: Ziphiidae). Journal of the Royal Society of New Zealand: 29: 235-244.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54364,"full_name":"Mesoplodon hectori","author_year":"(Gray, 1871)","common_names":[{"lang":"English","names":"Hector's Beaked Whale, Skew-beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Zerbini, A. N. and Secchi, E. R. 2001. Occurrence of Hector's beaked whale, \u003Ci\u003EMesoplodon hectori\u003C/i\u003E, in southern Brazil. Aquatic Mammals: 27: 149-153.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Fraser, F. C. 1950. Notes on a skull of a \u003Ci\u003EMesoplodon hectori\u003C/i\u003E from the Falkland Islands. Proceedings of the Linnean Society of London: 162: 50-52.; Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54365,"full_name":"Mesoplodon layardii","author_year":"(Gray, 1865)","common_names":[{"lang":"English","names":"Layard's Beaked Whale, Strap-toothed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Venegas, C. C. and Sielfeld, K. W. 1978. Registros de \u003Ci\u003EMesoplodon layardii\u003C/i\u003E y otros cetaceos en Magallanes. Anales del Instituto de la Patagonia: 9: 171-177.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Robineau, D. and Duhamel, G. 2006. Nouvelles données sur les cétacés des îles Kerguelen. Mammalia: 2006: 28-39.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Clara, M., Altuna, C. and Achaval, F. 2003. Mamíferos del Uruguay. http://zvert.fcien.edu.uy/mamif.html . ; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"}]},{"id":54366,"full_name":"Mesoplodon traversii","author_year":"(Gray, 1874)","common_names":[{"lang":"English","names":"Spade-toothed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Mesoplodon bahamondi","author_year":"Reyes, van Waerebeek, Cárdenas \u0026 Yáñez, 1995"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54369,"full_name":"Peponocephala electra","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Melon-headed Whale","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Kiszka, J., Breysse, O., Vely, M. and Boinali, K. 2006. Marine mammals around the Comoros archipelago (Mozambique Channel): recent records and review of available information. Paper SC/58/06 presented to the IWC Scientific Committee, 2006 . 5; Kiszka, J., Vely, M. and Breysse, O. 2010. Preliminary account of cetacean diversity and humpback whale (\u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E) group characteristics around the Union of the Comoros (Mozambique Channel). Mammalia: 74: 51-56.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Janzen, D. H. and Wilson, D. E. 1983. Mammals - introduction. In: Jansen, D. H. (ed.) Costa Rican natural history. University of Chicago Press. Chicago.; Rodríguez-Fonseca, J. and Cubero-Pardo, P. 2001. Cetacean strandings in Costa Rica (1966-1999). Revista de Biologia Tropical: 49: 667-672.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Kami, H. T. and Hosmer, A. J. 1982. Recent beachings of whales on Guam. Micronesica: 18: 133-135.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Perrin, W. F. 1976. First record of the melon-headed whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, in the eastern Pacific, with a summary of world distribution. Fishery Bull. U.S. natn. ocean. atmos. Admn: 74: 457-458.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Ellerman, J. R. and Morrison-Scott, T. C. S. 1966. Checklist of Palaearctic and Indian mammals. (2nd edition). British Museum (Natural History). London.; Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Van Waerebeek, K., Gallagher, M., Baldwin, R. and Papastavrou, V. and Al-Lawati, S. M. 1999. Morphology and distribution of the Spinner Dolphin, \u003Ci\u003EStenella longirostris\u003C/i\u003E, Rough-toothed Dolphin, \u003Ci\u003ESteno bredanensis\u003C/i\u003E and Melon-headed Whale, \u003Ci\u003EPeponocephala electra\u003C/i\u003E, from waters off the Sultanate of Oman. Journal of Cetacean Research and Management: 1: 167-177.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Pacheco, V., de Macedo, H., Vivar, E., Ascorra, C., Arana-Cardó, R. and Solari, S. 1995. Lista anotada de los mamiferos peruanos. Occasional Papers in Conservation Biology 2. Conservation International. Washington, DC. ; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Heaney, L. R., Balete, D. S., Dolar, L., Alcala, A. C., Dans, A., Gonzales, P. C. et al. 1998. A synopsis of the mammalian fauna of the Philippine Islands. Fieldiana Zoology : 88: 1-61.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Ballance, L. T. and Pitman, R. L. 1998. Cetaceans of the western tropical Indian Ocean: distribution, relative abundance, and comparisons with cetacean communities of two other tropical ecosystems. Marine Mammal Science: 14(3): 429-459","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Shimada, H. and Pastene, A. A. 1995. Report of a sighting survey off the Solomon Islands with comments on Bryde's Whale distribution. Reports of the International Whaling Commission: 45: 413-417.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Small, J. A. and Small, G, J. 1991. Cetacean observations from the Somali Democratic Republic, September 1985 through May 1987. In S. Leatherwood and G. P. Donovan (eds). Cetaceans and cetacean research in the Indian Ocean sanctuary. Marine Mammal Technical Report No. 3. UNEP, Nairobi, Kenya. pp 180-210. 118-120","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Best, P. B. and Shaughnessy, P. D. 1981. First record of the Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E from South Africa. Annals of the South African Museum: 83: 33-47.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D. and Smithers, R. H. N. 1990. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"de Silva, P. H. D. H. 1987. Cetaceans (whales, dolphins and porpoises) recorded off Sri Lanka, India, from the Arabian Sea and Gulf, Gulf of Aden and from the Red Sea. Journal of the Bombay Natural History Society: 84: 505-525.; Gunaratna, R. 1986. Whales off Sri Lanka. Sri Lanka Wildlife: 2: 5-7.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 1999. Annotated checklist and identification key to the whales, dolphins and porpoises (Order Cetacea) of Thailand and adjacent waters. Natural History Bulletin of the Siam Society: 47: 27-62.; Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Hill Mikkelsen, A. M. and Sheldrick, M. 1992. First recorded stranding of a Melon-headed Whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) on the European coast. Journal of Zoology (London): 227: 326-329.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Peddemors, V. M. and Ross, G. J. B. 1988. First record of the melon-headed whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E (Gray, 1846) for the east African coast. African Journal of Ecology: 26: 345-346.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Baker, R. J., Bradley, L. C., Bradley, R. D., Dragoo, J. W., Engstrom, M. D., Hoffmann, R. S., Jones, C. A., Reid, F., Rice, D. W. and Jones, C. 2003. Revised checklist of North American mammals north of Mexico, 2003. Occasional Papers, Museum of Texas Tech University: 229: 23.; Barron, G. L. and Jefferson, T. A. 1993. First records of the melon-headed whale (\u003Ci\u003EPeponocephala electra\u003C/i\u003E) from the Gulf of Mexico. Southwestern Naturalist: 38: 82-85.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Perryman, W. L., Au, D. W. K., Leatherwood, S. and Jefferson, T. A. 1994. Melon-headed Whale \u003Ci\u003EPeponocephala electra\u003C/i\u003E Gray, 1846. In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Bolaños, J. and Villarroel-Marin, A. 2003. Three new records of cetacean species for Venezuelan waters. Caribbean Journal of Science: 39: 230-232.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Andersen, M. and Kinze, C. C. 2000. Review and new records of the marine mammals and sea turtles of Indochinese waters. Natural History Bulletin of the Siam Society: 48: 177-184.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Peponocephala","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Lagenorhynchus electra","author_year":"Gray, 1846"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"},{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":54371,"full_name":"Stenella frontalis","author_year":"(G. Cuvier, 1829)","common_names":[{"lang":"English","names":"Atlantic Spotted Dolphin","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meester, J. and Setzer, H. W (eds.) 1974. The mammals of Africa. An identification manual. Smithsonian Institution Press. Washington, D.C.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"McCarthy, T. J. 1998. Mammals of Belize: a checklist. Producciones de la Hamaca. Caye Caulker, Belize.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. and Wenzel, F. W. 2000. Whales and dolphins (Mammalia, Cetacea) of the Cape Verde Islands, with special reference to the Humpback Whale \u003Ci\u003EMegaptera novaeangliae\u003C/i\u003E (Borowski, 1781). Contributions to Zoology: 69: 197-211.; Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Alberico, M., Cadena, A., Hernández-Camacho, J. and Muñoz-Saba, Y. 2000. Mamíferos (Synapsida: Theria) de Colombia. Biota Colombiana: 1: 43-75.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodríguez-Herrera, B., Chinchilla, F.A. and May-Collado, L.J. 2002. Lista de especies, endemismo y conservación de los mamíferos de Costa Rica. Revista Mexicana de Mastozoología: 6: 19-41.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Whaley, A.R., Parsons, E.C.M., Sellares, R. and Bonnelly de Calventi, I. 2006. Dolphin ecology and behaviour in the southeastern waters of the Dominican Republic: preliminary observations. SC/58/SM12. Presented to the Scientific Committee. 58th Annual Meeting of the International Whaling Commission. St. Kitts \u0026 Nevis. ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.; Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Weir, C.R. 2010. A review of cetacean occurrence in West African waters from the Gulf of Guinea to Angola. Mammal Review: 40: 2-39.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Romero, A., Hayford, K. T., Romero, A. and Romero, J. 2002. The marine mammals of Grenada, W.I., and their conservation status. \u003Ci\u003EMammalia\u003C/i\u003E: 66: 479-494.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Marineros, L. and Gallegos, F. M. 1988. Mamiferos silvestres de Honduras. Asociacion Hondureña de Ecologia.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Anon. 2004. CITES listed species in the Netherlands Antilles. http://www.mina.vomil.an/CITES/CITESspeciesNethAnt.htm Environmental Department - Ministry of Public Health \u0026 Social Development. ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Eisenberg, J. F. 1989. Mammals of the Neotropics. Vol. 1. Panama, Colombia, Venezuela, Guyana, Suriname, French Guiana. University Chicago Press. Chicago.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Perrin, W. F., Caldwell, D. K. and Caldwell, M. C. 1994. Atlantic Spotted Dolphin \u003Ci\u003EStenella frontalis\u003C/i\u003E (G. Cuvier, 1829). In Ridgway, S. H. and Harrison, R. (eds.) Handbook of Marine Mammals. Volume 5, the first book of dolphins. Academic Press. London.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Jefferson, T. A., Curry, B. E., Leatherwood, S. and Powell, J. A. 1997. Dolphins and porpoises of West Africa: a review of records (Cetacea: Delphinidae, Phocoenidae). Mammalia: 61: 87-108.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Rodríguez, J. P. and Rojas-Suárez, F. 1999. Libro rojo de la fauna Venezolana. 2da edicíon. PROVITA. Caracas (Venezuela).","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Delphinidae","genus_name":"Stenella","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Stenella attenuata frontalis","author_year":"(Gray, 1846)"},{"full_name":"Stenella pernettensis","author_year":"(de Blainville, 1817)"},{"full_name":"Stenella plagiodon","author_year":"Cope, 1866"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"03/10/2008","name":"Western African Aquatic Mammals"},{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]},{"id":54376,"full_name":"Tasmacetus shepherdi","author_year":"Oliver, 1937","common_names":[{"lang":"English","names":"Shepherd's Beaked Whale, Tasman Beaked Whale, Tasman Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mead, J. G. and Payne, R. S. 1975. A specimen of the Tasman beaked whale, \u003Ci\u003ETasmacetus shepherdi\u003C/i\u003E, from Argentina. Journal of Mammalogy: 56: 213-218.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.; Vidal, O. 1992. Los mamíferos marinos del Océano Pacífico sudeste (Panamá, Colombia, Ecuador, Perú y Chile): diagnóstico regional. Informes y Estudios del Programa de Mares Regionales del PNUMA . ","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Culik, B.M. 2004. Review of small cetaceans. Distribution, behaviour, migration and threats. UNEP/CMS Secretariat. Bonn, Germany.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Tasmacetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"15/09/2006","name":"Pacific Islands Cetaceans"}]},{"id":54377,"full_name":"Pipistrellus hanaki","author_year":"Hulva \u0026 Benda, 2004","common_names":[{"lang":"English","names":"Hanaki's Dwarf Bat","convention_language":true,"id":null}],"distributions":[{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"13/08/2001","name":"EUROBATS"}]},{"id":54380,"full_name":"Buteo buteo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Common Buzzard, Eurasian Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54382,"full_name":"Eptesicus anatolicus","author_year":"Felten, 1971","common_names":[{"lang":"English","names":"Anatolian Serotine Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54386,"full_name":"Pipistrellus maderensis","author_year":"Dobson, 1878","common_names":[{"lang":"English","names":"Madeiran Pipistrelle Bat","convention_language":true,"id":null}],"distributions":[{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hutson, A. M., Mickleburgh, S. P. and Racey, P. A (comps.) 2001. Microchiropteran bats: global status survey and conservation action plan. IUCN/SSC Chiroptera Specialist Group. Gland, Switzerland and Cambridge, U.K.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Pipistrellus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54391,"full_name":"Eptesicus isabellinus","author_year":"Temminck, 1840","common_names":[{"lang":"English","names":"Isabelline Serotine Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54392,"full_name":"Myotis escalerai","author_year":"Cabrera, 1904","common_names":[{"lang":"English","names":"Escalera’s Bat","convention_language":true,"id":null},{"lang":"French","names":"Murin d'Escaler","convention_language":true,"id":null},{"lang":"German","names":"Iberische Fransenfledermaus","convention_language":false,"id":null}],"distributions":[{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54394,"full_name":"Plecotus teneriffae","author_year":"Barrett-Hamiton, 1907","common_names":[{"lang":"English","names":"Canary Long-Eared Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Plecotus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54395,"full_name":"Nyctalus azoreum","author_year":"Thomas, 1901","common_names":[{"lang":"English","names":"Azorean Noctule Bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Nyctalus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"","name":"EUROBATS"}]},{"id":54398,"full_name":"Hieraaetus pennatus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Booted eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"distribution uncertain","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Ash, J. S. 1984. Bird observations on Bali. Bulletin of the British Ornithologists' Club: 104: 24-35.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. 1979. Recent additions to the Zambian list. Bulletin of the British Ornithologists' Club: 99: 94-98.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54400,"full_name":"Pernis apivorus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"European Honey-Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.; Turner, D. A. and Forbes-Watson, A. D. 1976. Additional migrant records from Seychelles. Bulletin of the British Ornithologists' Club: 96: 57-58.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Pernis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54402,"full_name":"Chelictinia riocourii","author_year":"(Vieillot, 1822)","common_names":[{"lang":"English","names":"African Swallow-Tailed Kite, Scissor-tailed Kite","convention_language":true,"id":null},{"lang":"French","names":"Elanion naucler","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; King, M. 2000. Breeding of Swallow-tailed Kite \u003Ci\u003EChelictinia riocourii\u003C/i\u003E in Senegal. Malimbus: 22: 90-91.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Chelictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54403,"full_name":"Falco tinnunculus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1989. Additions and corrections to the avifauna of Zaire (4). Bulletin of the British Ornithologists' Club: 109: 217-225.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; LeDreff, A. and Raynaud, P. A. 1993. First record of the Eurasian Kestrel (\u003Ci\u003EFalco tinnunculus\u003C/i\u003E) in French Guiana. Journal of Raptor Research: 27: 125.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Marle, J. G. van and Voous, K. H. 1988. The birds of Sumatra. British Ornithologists' Union Check-list 10. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; Clements, R. 2008. The common kestrel population in Britain. British Birds: 101: 228-234.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54408,"full_name":"Strix nebulosa","author_year":"Forster, 1772","common_names":[{"lang":"English","names":"Great Grey Owl","convention_language":true,"id":null}],"distributions":[{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tishechkin, A. K. et al. 1997. Breeding population of the Great Gray Owl (\u003Ci\u003EStrix nebulosa\u003C/i\u003E) in Belarus: summary of recent knowledge. USDA, For. Serv. Gen. Tech. Rep. NC-GTR-190 . 449-455.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Strix","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54410,"full_name":"Aegolius funereus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Boreal Owl","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayward, G. D., Hayward, P. H. and Garton, E. O. 1993. Ecology of Boreal Owls in the Northern Rocky Mountains, USA. Wildlife Monographs: 124: 1-59.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Aegolius","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54412,"full_name":"Aviceda cuculoides","author_year":"Swainson, 1837","common_names":[{"lang":"English","names":"African Baza, African Cuckoo-hawk","convention_language":true,"id":null},{"lang":"French","names":"Faucon-coucou","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dekeyser, P. L. 1951. Mission A. Villiers au Togo et au Dahomey (1950). III. - Oiseaux. Études Dahomeennes: 5: 47-84.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54413,"full_name":"Falco columbarius","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Merlin","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Iliff, M. 1998. Bird observations from a visit to Anguilla, Lesser Antilles, 28 December 1995 to 4 January 1996. El Pitirre: 11: 1-4.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G. M., Williams, R. S. R. and Bradshaw, C. G. 1999. Interesting avifaunal records from the Dominican Republic. Cotinga: 11: 27-29.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; López-Lanús, B. and Gastezzi, P. 2000. An inventory of the birds of Segua Marsh, Manabí, Ecuador. Cotinga: 13: 59-64.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S. 1990. Notes on Philippine birds, 16. First records of the Red-tailed Tropicbird \u003Ci\u003EPhaethon rubricauda\u003C/i\u003E and Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E from the Philippines. Bulletin of the British Ornithologists' Club: 110: 107-109.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roadhouse, A. 2001. Merlin \u003Ci\u003EFalco columbarius\u003C/i\u003E, the first record for Thailand. Forktail: 17: 114.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54414,"full_name":"Aviceda leuphotes","author_year":"(Dumont, 1820)","common_names":[{"lang":"English","names":"Black Baza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Sridhar, H. and Sankar, K. 2008. Effects of habitat degradation on mixed-species bird flocks in Indian rain forests. Journal of Tropical Ecology: 24: 135-147.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Balen, S. van. 1984. Sight records of the Black Baza \u003Ci\u003EAviceda leuphotes\u003C/i\u003E on Java. Ardea: 72: 234.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54415,"full_name":"Buteo hemilasius","author_year":"Temminck \u0026 Schlegel, 1844","common_names":[{"lang":"English","names":"Upland Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Naoroji, R. and Forsman, D. 2001. First breeding record of the Upland Buzzard \u003Ci\u003EButeo hemilasius\u003C/i\u003E for the Indian subcontinent in Changthang, Ladakh, and identification characters of Upland Buzzard and Long-legged Buzzard \u003Ci\u003EButeo rufinus\u003C/i\u003E. Forktail: 17: 105-108.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54417,"full_name":"Accipiter virgatus","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Besra","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mottley, J. 1863. Observations on the birds of south-eastern Borneo. Proceedings of the Zoological Society of London: 1863: 206-224.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54419,"full_name":"Aegypius monachus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Cinereous vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; O'Sullivan, K. 1994. A record of Cinereous Vulture (\u003Ci\u003EAegypius monachus\u003C/i\u003E) for Cambodia. Natural History Bulletin of the Siam Society: 42: 297-299.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"reintroduced,extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Terrasse, M., Sarrazin, F., Choisy, J.-P., Clémente, C., Henriquet, S., Lécuyer, P., Pinna, J. L. and Tessier, C. 2004. A success story: the reintroduction of Eurasian Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E and Black \u003Ci\u003EAegypius monachus\u003C/i\u003E Vultures to France. Pp. 127-145 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/ BirdLife Hungary. ; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"extinct","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1984. Selected observations from Lebanon, Syria and Jordan in the springs of 1963 and 1966. Sandgrouse: 6: 24-47.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct,distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Tewes, E. 1994. The European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E project in Mallorca. In: Meyburg \u0026 Chancellor (eds.) 1994 Eagle Studies. World Working Group on Birds of Prey and Owls. Berlin, London \u0026 Paris.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tewes, E., Sánchez, J. J. and Ramirez, P. 2004. Status and conservation of the European Black Vulture \u003Ci\u003EAegypius monachus\u003C/i\u003E in Europe. Pp. 177-184 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aegypius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54420,"full_name":"Falco biarmicus","author_year":"Temminck, 1825","common_names":[{"lang":"English","names":"Lanner Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Holyoak, D. T. and Seddon, M. B. 1990. Notes on some birds of western Cameroon. Malimbus: 11: 123-127.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Gustin, M., Palumbo, G. and Corso, A. 1999. International species action plan - Lanner Falcon \u003Ci\u003EFalco biarmicus\u003C/i\u003E. Birdlife International. Italy. 23","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1956. Les oiseaux des monts du Togo (Afrique occidentale). Alauda: 24: 221-227.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54421,"full_name":"Accipiter soloensis","author_year":"(Horsfield, 1821)","common_names":[{"lang":"English","names":"Chinese Sparrowhawk, Gray Frog-Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54423,"full_name":"Circus melanoleucos","author_year":"(Pennant, 1769)","common_names":[{"lang":"English","names":"Pied harrier","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Pedersen, A. and Nielsen, S. S. 1998. The status and conservation of threatened and near-threatened species of birds in the Red River Delta, Vietnam. Bird Conservation International: 8: 31-51; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54425,"full_name":"Otus sunia","author_year":"(Hodgson, 1836)","common_names":[{"lang":"English","names":"Oriental Scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1991. The birds of Pakistan. Volume 1: Non-Passeriformes. Oxford University Press. Oxford.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54426,"full_name":"Buteo auguralis","author_year":"Salvadori, 1865","common_names":[{"lang":"English","names":"Red-necked Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1991. The red-tailed buzzards of Zaire. Bulletin of the British Ornithologists' Club: 111: 51-55.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Birds of the Parque Nacional de Monte Alen, mainland Equatorial Guinea, with an updating of the country's list. Alauda: 67: 179-188.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54427,"full_name":"Circus pygargus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Montagu's Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54428,"full_name":"Falco amurensis","author_year":"Radde, 1863","common_names":[{"lang":"English","names":"Amur falcon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1987. Additions and corrections to the avifauna of Zaire (1). Bulletin of the British Ornithologists' Club: 107: 137-143.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Symes, C.T. and Woodborne, S. 2010. Migratory connectivity and conservation of the Amur Falcon \u003Ci\u003EFalco amurensis\u003C/i\u003E: a stable isotope perspective. Bird Conservation International: 20: 134-148.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Buckton, S. T. and Safford, R. J. 2004. The avifauna of the Vietnamese Mekong Delta. Bird Conservation International: 14: 279-322.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54430,"full_name":"Pernis ptilorhynchus","author_year":"(Temminck, 1821)","common_names":[{"lang":"English","names":"Oriental Honey-Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Rare birds in 2003. Wingspan: 14: 38-39.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"Baha el Din, S. and Baha el Din, M. 1997. Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E, a new species for Egypt and the African continent. Bull. Afr. Bird Club: 4: 31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Clark, W. S. and Christy, P. 2006. First record of Oriental Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E for Gabon and sub-Saharan Africa. Bulletin of the African Bird Club: 13: 207-210.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; White, C. M. N. and Bruce, M. D. 1986. The birds of Wallacea (Sulawesi, the Moluccas and Lesser Sunda Islands, Indonesia): an annotated checklist. British Ornithologists' Union Checklist No. 7. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duquet, M. and Richardson, C. 2000. First and second records of Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E in Iran. Sandgrouse: 22: 133-134.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G., Waterbury, S. P. and Ramadan-Jaradi, M. 2005. Ornithological observations from Lebanon during 2003-4. Sandgrouse: 27: 69-73.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J. 1997. The first Crested Honey Buzzard \u003Ci\u003EPernis ptilorhynchus\u003C/i\u003E in Oman. Sandgrouse: 19: 143-144.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Miranda, H. C. Jr, Kennedy, R. S., Sison, R. V., Gonzales, P. C. and Ebreo, M. F. 2000. New records of birds from the island of Panay, Philippines. Bulletin of the British Ornithologists's Club: 120: 266-280.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Pernis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54431,"full_name":"Falco severus","author_year":"Horsfield, 1821","common_names":[{"lang":"English","names":"Oriental Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mayr, E. 1945. Birds collected during the Whitney South sea expedition. Notes on the birds of Northern Melanesia. American Museum Novitates: 1294: 1-11.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Gibbs, D. 1996. Notes on Solomon Island birds. Bulletin of the British Ornithologists' Club: 116: 18-25.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Mayr, E. 1945. Birds collected during the Whitney South sea expedition. Notes on the birds of Northern Melanesia. American Museum Novitates: 1294: 1-11.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.; Rothschild, W. and Hartert, E. 1905. Further contribution to our knowledge of the Ornis of the Solomon Islands. Novitates Zoologicae: XII: 243-269.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54432,"full_name":"Aquila nipalensis","author_year":"Hodgson, 1833","common_names":[{"lang":"English","names":"Steppe Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roth, T., Aye, R., Burri, R. and Schweizer, M. 2005. Bird observations from Iran in February-March 2001, including a new species for the Middle East. Sandgrouse: 27: 63-68.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ottoson, U., Bengtsson, D., Gustafsson, R., Hall, P., Hjort, C., Leventis, A. P., Neumann, R., Pettersson, J., Rhönnstad, P., Rumsey, S. et al. 2002. New birds for Nigeria observed during the Lake Chad Bird Migration Project. Bulletin of the African Bird Club: 9: 52-55.; Ottosson, U., Hjort, C. and Hall, P. 2001. The Lake Chad Bird Migration Project: Malamfatori revisited. Bulletin of the African Bird Club: 8: 121-126.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Knystautas, A. 1993. Birds of Russia. Harper Collins Publishers. London.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54433,"full_name":"Falco eleonorae","author_year":"Géné, 1839","common_names":[{"lang":"English","names":"Eleonora's Falcon","convention_language":true,"id":null},{"lang":"French","names":"Faucon d'Eléonore","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Ananian, V., Carlsson, B. and Breider, J.-M. 2007. The first record of Eleonora's Falcon \u003Ci\u003EFalco eleonorae\u003C/i\u003E (Gené, 1839) in Armenia. Sandgrouse: 29: 103-105.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frith, C. B. 1974. New observations of migrants and vagrants from Aldabra, Farquhar and Astove Atolls, Indian Ocean. Bulletin of the British Ornithologists' Club: 94: 12-19.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Mayol, J. 1981. [Evaluation of the Majorcan colonies of Eleonora's Falcon, \u003Ci\u003EFalco eleonorae\u003C/i\u003E, during summer 1981.]. Bol. Est. Cent. Ecol.: 20: 21-25.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54434,"full_name":"Accipiter nisus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eurasian Sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.; Ludlow, F. 1937. The birds of Bhutan and adjacent territories of Sikkim and Tibet. Ibis: 14: 1-46, 249-293, 467-5.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Roberts, J. L. 1979. Observation of the migration of raptors and other large soaring birds in Bulgaria. Ibis: 121: 301-312.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Frumkin, R. and Adar, M. 1989. First breeding records of Sparrowhawk in Israel. Ornithological Society of the Middle East Bulletin: 23: 20-22.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Clark, W. S. 1995. Specimen of Eurasian Sparrowhawk \u003Ci\u003EAccipiter nisus\u003C/i\u003E from South Africa verified. Journal of African Raptor Biology: 10: 39.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54435,"full_name":"Accipiter badius","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Shikra","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barnett, L. K. and Emms, C. 2001. New species and breeding records for The Gambia. Bulletin of the African Bird Club: 8: 44-45.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Labinger, Z., Gorney, E. and Parslow, R. 1991. First record of Shikra \u003Ci\u003EAccipiter badius\u003C/i\u003E in Israel. Sandgrouse: 13: 46-49.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"Chye, L.K. 2012. Current status and distribution of diurnal raptors in Malaysia. Ornis mongolica 1:52-59; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"David, D. L., Ezealor, A. U., \u0026 Oniye, S. J. 2013. Diversity of Bird Species and Conservation of two Lacustrine Wetlands of the Upper Benue Basin, Adamawa-Nigeria. IOSR Journal of Agriculture and Veterinary Science (IOSR-JAVS) 4(3):11-20; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Clark, W. S. and Parslow, R. 1991. A specimen record of Shikra \u003Ci\u003EAccipiter badius\u003C/i\u003E for Saudi Arabia. Sandgrouse: 13: 44-46.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54437,"full_name":"Gyps fulvus","author_year":"(Hablizl, 1783)","common_names":[{"lang":"English","names":"Griffon Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Dementjev, D. P. and Gladkov, N. A (eds.) 1966. Birds of the Soviet Union. Volume I. Jerusalem.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.; Iezekiel, S., Bakaloudis, D. E. and Vlachos, C. G. 2004. The status and conservation of Griffon Vulture \u003Ci\u003EGyps fulvus\u003C/i\u003E in Cyprus. Pp. 67-73 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Welch, G. R and Welch, H. J. 1988. Djibouti III - preliminary report. Ornithological Society of the Middle East Bulletin: 20: 1-2.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"reintroduced","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Terrasse, M., Sarrazin, F., Choisy, J.-P., Clémente, C., Henriquet, S., Lécuyer, P., Pinna, J. L. and Tessier, C. 2004. A success story: the reintroduction of Eurasian Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E and Black \u003Ci\u003EAegypius monachus\u003C/i\u003E Vultures to France. Pp. 127-145 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/ BirdLife Hungary. ","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Clark, W. S. 2001. First record of European Griffon \u003Ci\u003EGyps fulvus\u003C/i\u003E for Kenya. Bulletin of the African Bird Club: 8: 59-60.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sociedad Española de Ornitologia. 1981. [First general survey of Griffon Vulture breeding colonies in the Iberian peninsula, 1979.]. Ardeola: 26: 165-312.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.; Van Beest, F., van den Bremer, L., de Boer, W.F., Heitkonig, I.M.A. and Monteiro, A.E. 2008. Population dynamics and spatial distribution of Griffon Vultures (\u003Ci\u003EGyps fulvus\u003C/i\u003E) in Portugal. Bird Conservation International: 18: 102-117.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct","country_references":"Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct,distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dupuy, A. R. 1976. Première observation d'un Vautour fauve \u003Ci\u003EGyps fulvus\u003C/i\u003E au Sénégal. Ardea: 44: 333-334.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.; Margalida, A., Garcia, D. and Cortes-Avizanda, A. 2007. Factors influencing the breeding density of Bearded Vultures, Egyptian Vultures and Eurasian Griffon Vultures in Catalonia (NE Spain): management implications. Animal Biodiversity and Conservation: 30: 189-200.; Sociedad Española de Ornitologia. 1981. [First general survey of Griffon Vulture breeding colonies in the Iberian peninsula, 1979.]. Ardeola: 26: 165-312.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54438,"full_name":"Falco concolor","author_year":"Temminck, 1825","common_names":[{"lang":"English","names":"Sooty falcon","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gaucher, P., Thiollay, J.-M. and Eichaker, X. 1995. The Sooty Falcon \u003Ci\u003EFalco concolor\u003C/i\u003E on the Red Sea coast of Saudi Arabia: distribution, numbers and conservation. Ibis: 137: 29-33.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, J. and Klaus, R. 2006. Sudan Marine Parks Survey Expedition. African Parks Foundation. ","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J., Aspinwall, D. R. and Leonard, P. M. 1999. Further additions to the avifauna of Zambia. Bulletin of the British Ornithologists' Club: 119: 94-103.; Penry, E. H. 1979. Sight records of the Sooty Falcon \u003Ci\u003EFalco concolor\u003C/i\u003E in Zambia. Bulletin of the British Ornithologists' Club: 99: 63-65.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54439,"full_name":"Otus brucei","author_year":"(Hume, 1873)","common_names":[{"lang":"English","names":"Pallid Scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. M. 1959. Notes on a collection of birds made in Iraq by Flight Lieutenant David L. Harrison. Bulletin of the British Ornithologists' Club: 79: 9-13, 31-36, 49-50.; Marchant, S. 1963. Notes on five species of Iraqi birds. Bulletin of the British Ornithologists' Club: 83: 52-56.; Scott, D. A. and Carp, E. 1982. A midwinter survey of wetlands in Mesopotamia, Iraq: 1979. Sandgrouse: 4: 60-69.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54440,"full_name":"Accipiter ovampensis","author_year":"Gurney, 1875","common_names":[{"lang":"English","names":"Ovambo Sparrowhawk","convention_language":true,"id":null},{"lang":"French","names":"Epervier de l'Ovampo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mills, M., Hoff, R. and Myers, D. 2003. First breeding record of Ovambo Sparrowhawk \u003Ci\u003EAccipiter ovampensis\u003C/i\u003E in West Africa. Malimbus: 25: 104-106; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Salewski, V. 1998. A record of an immature Ovambo Sparrowhawk \u003Ci\u003EAccipiter ovampensis\u003C/i\u003E from Ivory Coast. Bulletin of the African Bird Club: 5: 120-121.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54441,"full_name":"Accipiter gentilis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northern Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.; Roberts, J. L. 1979. Observation of the migration of raptors and other large soaring birds in Bulgaria. Ibis: 121: 301-312.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Weiss, J. 1986. Tatigkeitsbericht 1977-84 der Arbreitsgruppe Feldornithologie. Regulus: 4: 167-306.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raja, N.A., Davidson, P. Bean, N. Drijvers, R. Showler, D.A. Barker, C 1999. The birds of Palas, North-West Frontier Province, Pakistan. Forktail 15:77-85","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Mayr, E. 1957. Notes on the birds of Northern Melanesia. American Museum Novitates: 1823: 1-14.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Marquiss, M. and Newton, I. 1982. The Goshawk in Britain. British Birds: 75: 243-260.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54444,"full_name":"Aquila chrysaetos","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Golden Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Clouet, M., Barrau, C. and Goar, J.-L. 1999. The Golden Eagle (\u003Ci\u003EAquila chrysaetos\u003C/i\u003E) in the Balé Mountains, Ethiopia. J. Raptor Res.: 33: 102-109.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Radovic, D., Stevanovic, V., Markovic, D., Jovanovic, S., Dzukic, G. and Radovic, I. 2005. Implementation of GIS technologies in assessment and protection of natural values of Tara National Park. Archives of Biological Sciences, Belgrade: 57: 193-204.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain,extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 2005. Additions to the avifauna of Mali. Bulletin of the African Bird Club: 12: 119-124.; Goar, J.-L. and Rutkowski, T. 2000. Reproduction de l'Aigle royal \u003Ci\u003EAquila chrysaetos\u003C/i\u003E au Mali. Alauda: 68: 327-328.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Clouet, M. and Goar, J. L. 2004. L'aigle royal \u003Ci\u003EAquila chrysaetos\u003C/i\u003E au Niger. Alauda: 72: 151-152.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. and Brown, M. R. 1982. Golden Eagle \u003Ci\u003EAquila chrysaetos\u003C/i\u003E breeding in Oman, eastern Arabia. Bulletin of the British Ornithologists' Club: 102: 41-42.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54446,"full_name":"Circaetus gallicus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Short-toed snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"extinct","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Greling, C. de. 1972. New records from northern Cameroun. Bulletin of the British Ornithologists' Club: 92: 24-27.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain,extinct","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Balen, S. van and Compost, A. R. 1989. Overlooked evidence of the Short-toed Eagle \u003Ci\u003ECircaetus gallicus\u003C/i\u003E on Java. Kukila: 4: 44-46.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"Clark, W. S. and Paulson, D. R. 2002. Specimen record of Short-toed Snake Eagle for Kenya is invalid. Bulletin of the British Ornithologists' Club: 122: 156-157.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meininger, P. L., Wolf, P. A., Hadoud, D. A. and Essghaier, M. F. A. 1996. Notes on the coastal birds of Libya, July 1993. Sandgrouse: 18: 53-60.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54447,"full_name":"Falco subbuteo","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Eurasian hobby","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; Ananian, V., Busuttil, S. and Finn, M. 2002. Recent observations of some rare breeding birds in Armenia. Sandgrouse: 24: 46-48.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. and Vielliard, J. 1970. Midwinter observations on birds of central and south Iraq. Bull. Iraq Nat. Hist. Mus.: 4: 61-85.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Gore, M. E. J. 1968. A checklist of the birds of Sabah, Borneo. Ibis: 110: 165-196.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1973. \u003Ci\u003ENumenius minutus\u003C/i\u003E, \u003Ci\u003EFalco subbuteo\u003C/i\u003E and \u003Ci\u003ECaprimulgus europaeus\u003C/i\u003E in the Seychelles. Bulletin of the British Ornithologists' Club: 93: 99-101.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54454,"full_name":"Buteo rufinus","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Long-legged buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Morel, G. J. and Morel, M.-Y. 1988. Nouvelles données sur l'hivernage de la tourterelle des bois, \u003Ci\u003EStreptopelia turtur\u003C/i\u003E en afrique de l'ouest: nord de la Guinée. Alauda: 56: 85-91.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"distribution uncertain","country_references":"Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54459,"full_name":"Otus scops","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Common scops-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Otus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54460,"full_name":"Anas acuta","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Pintail, Northern Pintail, Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Birds Australia Rarities Committee. 2004. Index of Case Summaries: Volume Three. http://users.bigpond.net.au/palliser/barc/vol3.htm . ","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Erickson, R. 1977. First record of Knot \u003Ci\u003ECalidris canutus\u003C/i\u003E, and other records, from Belize (British Honduras). Bulletin of the British Ornithologists' Club: 97: 78-81.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Balchin, C. S. 1988. Recent observations of birds from the Ivory Coast. Malimbus: 10: 201-206.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Mees, G. F. 1971. Systematic and faunistic remarks on birds from Borneo and Java, with new records. Zoologische Mededelingen: 45: 225-244.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ebenhard, N. T. 1979. First record in the Seychelles of Northern Pintail. Bulletin of the British Ornithologists' Club: 99: 39-40.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hestbeck, J. B. 1993. Overwinter distribution of Northern Pintail population in North America. Journal of Wildlife Management: 57: 582-589.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Clark, A. 1977. Review of the records of three Palearctic ducks in southern Africa. Bulletin of the British Ornithologists' Club: 97: 107-114.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54461,"full_name":"Anas capensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Cape Teal, Cape Wigeon","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"distribution uncertain","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54464,"full_name":"Anas crecca","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Common Teal, Green-winged Teal, Teal ","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Mann, C. F. 1988. Bird report for Brunei Darussalam, July 1986 to June 1988. Brunei Museum Journal: 6: 88-111.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"BirdLife International. 2006. European Bird Database. BirdLife International European Division Office, Wageningen, Netherlands.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas carolinensis","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54467,"full_name":"Accipiter gularis","author_year":"(Temminck \u0026 Schlegel, 1844)","common_names":[{"lang":"English","names":"Japanese sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mees, G. F. 1980. The sparrow-hawks (\u003Ci\u003EAccipiter\u003C/i\u003E) of the Andaman Islands. Journal of the Bombay Natural History Society: 77: 371-412.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54471,"full_name":"Butastur indicus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Grey-faced buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kawakami, K. and Higuchi, H. 2003. Population trend estimation of three threatened bird species in Japanese rural forests: the Japanese Night Heron \u003Ci\u003EGorsachius goisagi\u003C/i\u003E, Goshawk \u003Ci\u003EAccipiter gentilis\u003C/i\u003E and Grey-faced Buzzard \u003Ci\u003EButastur indicus\u003C/i\u003E. J. Yamashina Inst. Ornithol. : 35: 19-29.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; King, B., Buck, H., Ferguson, R., Fisher, T., Goblet, C., Nickel, H. and Suter, W. 2001. Birds recorded during two expeditions to north Myanmar (Burma). Forktail: 17: 29-40.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54472,"full_name":"Circus maurus","author_year":"(Temminck, 1828)","common_names":[{"lang":"English","names":"Black harrier","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54478,"full_name":"Circus macrourus","author_year":"(Gmelin, 1770)","common_names":[{"lang":"English","names":"Pallid harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S. 2008. Nest occupation and prey grabbing by saker falcon (\u003Ci\u003EFalco cherrug\u003C/i\u003E) on power lines in the province of Vojvodina (Serbia). Archives of Biological Sciences, Belgrade: 60: 271-277.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Terraube, T., Arroyo, B.E., Mougeot, F., Madders, M., Watson, J. and Bragin, E.A. 2009. Breeding biology of the pallid harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E in north-central Kazakhstan: implications for the conservation of a Near Threatened species. Oryx: 43: 104-112.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Lamont, A. R. and Morgan, J. A. L. 2000. Pallid Harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E: the first record for Peninsular Malaysia. Forktail: 16: 174.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; Debout, G., Meister, P. and Ventelon, M. 2000. Notes complémentaires sur l'avifaune du Niger. Malimbus: 22: 87-88.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and Roest, L. 2003. Pallid Harrier \u003Ci\u003ECircus macrourus\u003C/i\u003E: the first record for Seychelles. Bulletin of the African Bird Club: 10: 126-127.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54479,"full_name":"Circus spilonotus","author_year":"Kaup, 1847","common_names":[{"lang":"English","names":"Eastern marsh-harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Simmons, R.E. and Legra, L.A.T. 2009. Is the Papuan Harrier \u003Ci\u003ECircus spilonotus spilothorax\u003C/i\u003E a globally threatened species? Ecology, climate change threats and first population estimates from Papua New Guinea. Bird Conservation International: 19: 379-391.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54483,"full_name":"Surnia ulula","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northen Hawk Owl ","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Surnia","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54484,"full_name":"Falco rusticolus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Gyrfalcon","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Mela, M. and Koskimies, P. 2005. Monitoring and conservation of the gyrfalcon (\u003Ci\u003EFalco rusticolus\u003C/i\u003E) in Finland. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005: 97-100.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.; Lobkov, Y.G., Gerasimov, Y.N., and Gorovenko, A.V. 2007. Population status of the gyrfalcon in Kamchatka. Falco: 30: 8-11.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Koskimies, P. 2005. Research on conservation biology of the gyrfalcon \u003Ci\u003EFalco rusticolus\u003C/i\u003E in northern Fennoscandia: present status and future prospects. Status of raptor populations in eastern Fennoscandia. Proceedings of the Workshop, Kostomuksha, Karelia, Russia, November 8-10, 2005 . 56-69; Nystrom, J., Ekenstedt, J., Engstrom, J., and Angerbjorn, A. 2005. Gyr Falcons, ptarmigan and microtine rodents in northern Sweden. Ibis: 147: 587-597.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54487,"full_name":"Ninox scutulata","author_year":"(Raffles, 1822)","common_names":[{"lang":"English","names":"Brown hawk-Owl","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Pont, J. E. du. 1971. Philippine birds. Delaware Museum of Natural History. Greenville, Delaware.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Ninox","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54495,"full_name":"Accipiter brevipes","author_year":"(Severtsov, 1850)","common_names":[{"lang":"English","names":"Levant sparrowhawk","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sedláček, O., Hořák, D., Riegert, J., Reif, J., \u0026 Pešata, M. 2004 Poznámky k výskytu palearktických migrantů v Kamerunu Notes to the occurrence of Palearctic migrants in Cameroon. Sylvia 40:63-78","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Louette, M. 1988. Additions and corrections to the avifauna of Zaire (2). Bulletin of the British Ornithologists' Club: 108: 43-50.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"extinct","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georg, P. V. 1969. Systematic list of Iraqi vertebrates - Aves. Iraq Nat. Hist. Mus. Publ.: 26: 34-63.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54507,"full_name":"Balaeniceps rex","author_year":"Gould, 1850","common_names":[{"lang":"English","names":"Shoebill , Whale-headed Stork","convention_language":true,"id":null}],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Burton, M. and Benson, C. W. 1961. The Whale-headed Stork or Shoe-bill: legend and fact. Northern Rhodesia Journal: 4: 411-426; Chapin, J. P. 1932. The birds of Belgian Congo. Part 1. Bulletin of the American Journal of Natural History: 65: 1-756. ; Collar, N. J. and Stuart, S. N. 1985. Threatened birds of Africa and related islands: The ICBP/IUCN Red Data Book, Part 1. 3rd edition. International Council for Bird Preservation and International Union for Conservation of Nature and Natural Resources. Cambridge, U.K.; Curry-Lindahl, K. 1961. Contribution à l' étude des vertebtras terrestres en Afrique tropicale. Exploration du Parc National Albert et du Parc National de la Kagera II. Mission K. Curry-Lindahl (1951-1952, 1958-1959). 1-331.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Verschuren, J. 1975. Wildlife in Zaire. Oryx: 13: 149-163","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Duckworth, F. 1974. The Whale-headed Stork in Ethiopia. Bulletin of the British Ornithologists' Club: 94: 3-4.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"Hanmer, D. B. and Roseveare, M. 1989. The first record of the Shoebill (\u003Ci\u003EBalaeniceps rex\u003C/i\u003E) in Malawi. Scopus: 12: 92.93.; Haugaard, J. 1999. The Shoebill \u003Ci\u003EBalaeniceps rex\u003C/i\u003E in Malawi: myth, ghost or grain of truth? Vocifer: 2: 3-4.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Roseveare, M. 1989. First record of the Shoebill in Malawi. Nyala: 14: 45.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dinesen, L. and Baker, M. 2006. Status of Shoebill \u003Ci\u003EBalaeniceps rex\u003C/i\u003E in Malagarasi, Tanzania. Bulletin of the African Bird Club . 56-63; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Balaenicipitidae","genus_name":"Balaeniceps","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54509,"full_name":"Balearica pavonina","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"West African Crowned Crane, Black Crowned-crane","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Scholte, P., de Kort, S. and van Weerd, M. 2000. Floodplain rehabilitation in Far Northern Cameroon: expected impact on bird life. Ostrich: 71: 112-117.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Tursha, L.G. and Boyi, M.G. 2011. Status of the Black Crowned Crane (\u003Ci\u003EBalearica pavonina\u003C/i\u003E) in Northern Nigeria. Indwa - Journal of the South African Crane Working Group (SACWG): 7: 30-36.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Tursha, L.G. and Boyi, M.G. 2011. Status of the Black Crowned Crane (\u003Ci\u003EBalearica pavonina\u003C/i\u003E) in Northern Nigeria. Indwa - Journal of the South African Crane Working Group (SACWG): 7: 30-36.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Barlow, C. and Wacher, T. 1997. A field guide to the birds of the Gambia and Senegal. Pica Press. Sussex.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C.H., Dodman, T. and Sylla, S.I. 2006. Conservation action plans for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E and Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. In: Boere, G.C., Galbraith, C.A. \u0026 Stroud, D.A. (Eds.) Waterbirds around the world. The Stationary Office, Scottish Natural Heritage. Edinburgh, United Kingdom.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Backhurst, G.C., Britton, H.A., Diamond, A.W., Gerhart, J.D., Mann, C.F., Meadows, B.S., Pearson, D.J., Reynolds, J.F. and Turner, D.A. 1980. Birds of East Africa - their habitat, status and distribution. East African Natural History Society. Nairobi, Kenya.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jackson, F. J. and Sclater, W. L. 1938. The birds of Kenya Colony and the Ugandan Protectorate. Gurney and Jackson. London.; Owre, O. T. 1966. The Crowned Crane at Lake Rudolf. Bulletin of the British Ornithologists' Club: 86: 54-56.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kone, B., Fofana, B., Beilfuss, R. and Dodman, T. 2007. The impact of capture, domestication and trade on Black Crowned Cranes in the Inner Niger Delta, Mali. Ostrich: 78: 195-203.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Archibald, G. and Pasquier, R.F. 1983. African cranes. Proceedings of the 1983 International Crane Workshop International Crane Foundation. Wisconsin, United States of America.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Diagana, C.H., Dodman, T. and Sylla, S.I. 2006. Conservation action plans for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E and Black Stork \u003Ci\u003ECiconia nigra\u003C/i\u003E in Africa. In: Boere, G.C., Galbraith, C.A. \u0026 Stroud, D.A. (Eds.) Waterbirds around the world. The Stationary Office, Scottish Natural Heritage. Edinburgh, United Kingdom.; Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.; Fry, C.H. 1983. New data on the status of the Black Crowned Crane in West Africa. Proceedings of the 1983 International Crane Workshop International Crane Foundation. Wisconsin, United States of America.; Kone, B., Fofana, B., Beilfuss, R. and Dodman, T. 2007. The impact of capture, domestication and trade on Black Crowned Cranes in the Inner Niger Delta, Mali. Ostrich: 78: 195-203.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. (Ed.) 2003. The Howard and Moore Complete Checklist of the Birds of the World. Revised and enlarged 3rd Edition. Christopher Helm, London. 1039 pp. \nin combination with Dickinson, E.C. 2005. Corrigenda 4 (02.06.2005) to Howard \u0026 Moore Edition 3 2003. (Available on the CITES website).; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Eljack, A.O. 1996. An overview of the status of the Black Crowned Cranes in Sudan. Proceedings of the African Crane and Wetland Training Workshop Wildlife Training Institute. Maun, Botswana. 157-158; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.; UNEP. 2007. Sudan. Post-conflict environmental assessment. UNEP. Nairobi, Kenya. 356","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Dekeyser, P. L. 1951. Mission A. Villiers au Togo et au Dahomey (1950). III. - Oiseaux. Études Dahomeennes: 5: 47-84.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"Backhurst, G.C., Britton, H.A., Diamond, A.W., Gerhart, J.D., Mann, C.F., Meadows, B.S., Pearson, D.J., Reynolds, J.F. and Turner, D.A. 1980. Birds of East Africa - their habitat, status and distribution. East African Natural History Society. Nairobi, Kenya.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jackson, F. J. and Sclater, W. L. 1938. The birds of Kenya Colony and the Ugandan Protectorate. Gurney and Jackson. London.; Urban, E.K. 1988. Status of cranes in Africa. Proceedings of the sixth Pan-African Ornithological Congress. Nairobi, Kenya. 315-329; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Williams, T. C., Beilfuss, R. and Dodman, T. 2003. Status survey and conservation action plan for the Black Crowned Crane \u003Ci\u003EBalearica pavonina\u003C/i\u003E. Wetlands International. Dakar. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Balearica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea pavonina","author_year":"Linnaeus, 1758"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54514,"full_name":"Asio otus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Long-eared owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Crozier, J., Dubourg-Savage, M. J. and Clamens. A. 1995. Andorra: ocells, oiseauxm aves, birds. Associació per a la Defensa de la Natura.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Jovanovic, T.B. 2004. Mapping and monitoring of long-eared owl \u003Ci\u003EAsio otus\u003C/i\u003E winter roosts in Serbia: the first results. Ciconia (Serbia and Montenegro): 13: 45-48.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Manners, G. R. and Diekmann, J. 1996. Long-eared Owl \u003Ci\u003EAsio Otus\u003C/i\u003E breeding in north-west Syria. Sandgrouse: 18: 62.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54516,"full_name":"Balearica regulorum","author_year":"(E. T. Bennett, 1834)","common_names":[{"lang":"English","names":"Grey Crowned-Crane, South African Crowned Crane, Grey Crowned-crane","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C.W. and Grant, C.H.B. 1962. Birds of the southern third of Africa. Volume 1. Longmans. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 1996. The larger illustrated guide to birds of Southern Africa. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Schouteden, H. 1966. La faune ornithologique du Burundi. Doc. zool. Mus. Roy. Afr. centr.: 11: 1-81.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C.W. and Grant, C.H.B. 1962. Birds of the southern third of Africa. Volume 1. Longmans. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Owre, O. T. 1966. The Crowned Crane at Lake Rudolf. Bulletin of the British Ornithologists' Club: 86: 54-56.; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Beilfuss, R. 2008. Grey crowned cranes in Gorongosa National Park, Mozambique. African Cranes, Wetlands \u0026 Communities: Newsletter: 2: 12.; Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Parker, V. 1999. The atlas of the birds of Sul do Save, Southern Mozambique. Avian Demography Unit, University of Cape Town and Endangered Wildlife Trust. Cape Town and Johannesburg, South Africa.; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Schouteden, H. 1966. La faune ornithologique du Rwanda. Doc. zool. Mus. Roy. Afr. centr.: 10: 1-130.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; MacLean, G.L. 1988. Roberts birds of southern Africa. Hyperion Books.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Muheebwa, J.M. 2007. Crane abstracts: Stemming the decline of Grey Crowned Cranes and wetlands in Uganda through community-based conservation action. Ostrich: 78: 221-222.; Muheebwa-Muhoozi, J. 2001. The status of the Grey Crowned Crane \u003Ci\u003EBalearica regulorum\u003C/i\u003E in Uganda, with special reference to breeding. Ostrich Supplement: 15: 122-125.; Olupot, W., Mugabe, H. and Plumptre, A.J. 2009. Species conservation on human-dominated landscapes: the case of crowned crane breeding and distribution outside protected areas in Uganda. African Journal of Ecology: 48: 119-125.; Richards, D. 1995. A photographic guide to birds of East Africa. New Holland Ltd. London, United Kingdom.; Stevenson, T. and Fanshawe, J. 2002. Birds of East Africa, Kenya, Tanzania, Uganda, Rwanda, Burundi. T. \u0026 A. D. Poyser. London.; Walkinshaw, L.H. 1964. The African crowned cranes. Wilson Bulletin: 76: 355-377.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; Benson, C. W., Brooke, R. K., Dowsett, R. J. and Irwin, M. P. S. 1971. The birds of Zambia. Collins. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Urban, E.K. 1996. Status of cranes in Africa 1994. Proceedings of the African crane and wetland training workshop Wildlife Training Institute. Maun, Botswana. 53-59","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Beilfuss, R.D., Dodman, T. and Urban, E.K. 2007. The status of cranes in Africa in 2005. Ostrich: 78: 175-184.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Sinclair, I. and Hockey, P. 2005. The larger illustrated guide to birds of southern Africa. Struik Publishers. Cape Town, South Africa.; Sinclair, I. and Ryan, P. 2009. Birds of southern Africa: the complete photographic guide. Struik Publishers. Cape Town, South Africa.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Balearica","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Anthropoides regulorum","author_year":"E. T. Bennett, 1834"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54518,"full_name":"Buteo lagopus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"English","names":"Rough-legged buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"extinct","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54519,"full_name":"Milvus migrans","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"black kite","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Guerriat, H. and Ittelet, M. 1982. [A survey on the status of the Black Kite \u003Ci\u003EMilvus migrans\u003C/i\u003E in Belgium.]. Aves: 19: 183-191.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Norton, R. 2000. West Indies region. North American Birds: 54: 109-111.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hille, S. and Thiollay, J.-M. 2000. The imminent extinction of the kites \u003Ci\u003EMilvus milvus fasciicauda\u003C/i\u003E and \u003Ci\u003EM. m. migrans\u003C/i\u003E on the Cape Verde Islands. Bird Conservation International: 10: 361-369.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Green, A. A. and Rodewald, P. G. 1996. New bird records from Korup National Park and its environs, Cameroon. Malimbus: 18: 122-133; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dumbacher, J.P., Miller, J., Flannery, M.E. and Xiaojun, Y. 2010. Avifauna of the Gaoligong Shan Mountains of Western China: A hotspot of avian species diversity. Ornithological Monographs: 70: 30-63.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Georgiev, A. 2003. Democratic Republic of the Congo, November 24th 2002 - June 26th 2003. http://www.birdtours.co.uk . ; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Schifferli, A. 1967. Vom Zug schweizerischer und deutscher Schwarzer Milane \u003Ci\u003EMilvus migrans\u003C/i\u003E nach Ringfunden. Orn. Beob.: 64: 34-51.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; White, C. M. N. and Bruce, M. D. 1986. The birds of Wallacea (Sulawesi, the Moluccas and Lesser Sunda Islands, Indonesia): an annotated checklist. British Ornithologists' Union Checklist No. 7. London.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.; Snow, D. W. 1979. Atlas of speciation in African non- passerine birds - addenda and corrigenda. Bulletin of the British Ornithologists' Club: 99: 66-68.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Anon. 1957. Un milan noir dans ses quartiers d'hiver. Nos Oiseaux: 1956: 340.; Baumann, E. 1894. Notizen. Ornithologische Monatsberichte: 2: 160.; Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jokele, I. 1974. Ringfunde des Schwarzen Milans (\u003Ci\u003EMilvus migrans\u003C/i\u003E). Auspicium: 5: 229-243.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Milvus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54526,"full_name":"Bubulcus ibis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Buff-backed Heron, Cattle Egret","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Australia","country":"Australia","tags_list":"introduced","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Oustalet, G. 1898. Catalogue des oiseaux du Dahomey remis par M. Miegemarque au Muséum d'Histoire Naturelle, en 1895. Bulletin du Muséum National d'Histoire Naturelle: 4: 361-364.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. 1990. First record of \u003Ci\u003EUpucerthia validirostris\u003C/i\u003E from Bolivia and new Bolivian distributional data. Bulletin of the British Ornithologists' Club: 110: 103-107.; Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"introduced","country_references":"Carr, P. 2003. Further bird observations from Diego Garcia 4-5 December 2002. Sea Swallow: 52: 21-25.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"ICPDR. 2007. Tisza river basin analysis 2007. International Commission for the Protection of the Danube River. Vienna, Austria. ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"Gauthier-Clerc, M., Jiguet, F. and Lambert, N. 2002. Vagrant birds at Possession Island, Crozet Islands and Kerguelen Island from December 1995 to December 1997. Marine Ornithology: 30: 38-39.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Demey, R. 1995. Notes on the birds of the coastal and Kindia areas, Guinea. Malimbus: 17: 85-99.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dee, T. J. 1987. The status and distribution of the endemic birds of Madagascar. International Council for Bird Preservation. Cambridge, U.K.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Langrand, O. 1990. Guide to the birds of Madagascar. Yale University Press. New Haven and London.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skinner, J. 1992. Herons in the inner Niger Delta, Mali, West Africa. Heron Conservation Newsletter: 5: 1.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Safford, R. and Basque, R. 2007. Records of migrants and amendments to the status of exotics on Mauritius in 1989-93. Bulletin of the African Bird Club: 14: 26-35.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Vizi, O. and Vizi, A. 2006. Affirmed discovery of cattle egret (\u003Ci\u003EBubulcus ibis\u003C/i\u003E (L. 1758)) on Skadar Lake (Montenegro). Natura Montenegrina: 5: 171-172.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Barré, N. and Bachy, P. 2003. Compléments à la liste commentée des oiseaux de Nouvelle-Calédonie. Alauda: 71: 31-39.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Heather, B. D. 1991. Cattle Egret numbers in New Zealand 1986-1990. Notornis: 35: 185-191.; Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Camp, R.J., Pratt, T.K., Marshall, A.P., Amidon, F. and Williams, L.L. 2009. Recent status and trends of the land bird avifauna on Saipan, Mariana Islands, with emphasis on the endangered Nightingale Reed-warbler \u003Ci\u003EAcrocephalus luscinia\u003C/i\u003E. Bird Conservation International: 19: 323-337.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Storer, R. W. 1989. Notes on Paraguayan birds. Occasional Papers of the Museum of Zoology, University of Michigan: 719: 21 pp.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Betleja, J. 1996. [First record of Cattle Egret (\u003Ci\u003EBubulcus ibis\u003C/i\u003E) in Poland.]. Notatki Orn.: 37: 141-143.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Rowlands, B. W., Trueman, T., Olson, S. L., McCulloch. M. N. and Brooke, R. K. 1998. The birds of St Helena: an annotated checklist. BOU Checklist No. 16. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"Prince, P. A. and Croxall, J. P. 1996. The birds of South Georgia. Bulletin of the British Ornithologists' Club: 116: 81-104.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Farinha, J.C. 1997. \u003Ci\u003EBubulcus ibis\u003C/i\u003E Cattle egret. The EBCC atlas of European breeding birds: their distribution and abundance. Hagemeijer, E. J. M. \u0026 Blair, M. J., (eds.) T \u0026 AD Poyser. London.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Anon. 1988. European news. British Birds: 81: 330-340.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Bubulcus","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea ibis","author_year":"Linnaeus, 1758"},{"full_name":"Ardeola ibis","author_year":"(Linnaeus, 1758)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54566,"full_name":"Dendrocygna bicolor","author_year":"(Vieillot, 1816) ","common_names":[{"lang":"English","names":"Fulvous Tree-Duck, Fulvous Whistling-Duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Miller, B.W. and Miller, C.M. 2006. Final report: waterbirds in Belize. Belize Audubon Society - Wildlife Conservation Society. ","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 2006. Further annotations and an addition to the avifauna of the Democratic Republic of Congo. Bulletin of the British Ornithologists' Club: 126: 19-37.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Morales-Pérez, J. E. 1999. Additional bird records for Oaxaca, Mexico. Bulletin of the British Ornithologists' Club: 119: 16-25.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"Angehr, G. 1999. The FieldEditor's report(s). El Tucán: 25: 3-4.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Turnbull, R. E., Johnson, F. A. and Brakhage, D. H. 1989. Status, distribution and foods of Fulvous Whistling-duck in South Florida. Journal of Wildlife Management: 53: 1046-1051.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stanton, D. B. 2000. The first Fulvous Whistling-duck \u003Ci\u003EDendrocygna bicolor\u003C/i\u003E in Yemen and the Middle East. Sandgrouse: 22: 130-131.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas bicolor","author_year":"Vieillot, 1816"},{"full_name":"Dendrocygna fulva","author_year":"Hartlaub, 1844"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54569,"full_name":"Circus aeruginosus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Western Marsh-harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Tyler, S. J., Randall, R. D. and Brewster, C. A. 2008. New bird records for Botswana and additional information on some rarities. Bulletin of the African Bird Club: 15: 36-52.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Green, A. A. and Rodewald, P. G. 1996. New bird records from Korup National Park and its environs, Cameroon. Malimbus: 18: 122-133; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Levesque, A. and Malglaive, L. 2003. First documented record of the Marsh Harrier for the West Indies and the New World. North American Birds: 57: 564-565.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"extinct","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wells, D. R. 1999. The birds of the Thai-Malay Peninsula. Volume 1: Non-passerines. Academic Press. London.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Browne, P. W. P. 1980. Birds observed near Lome, Togo in 1976 and 1977. Malimbus: 2: 51-55.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54570,"full_name":"Buteo oreophilus","author_year":"Hartert \u0026 Neumann, 1914","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":54571,"full_name":"Butastur rufipennis","author_year":"(Sundevall, 1851)","common_names":[{"lang":"English","names":"Grasshopper buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Anciaux, M.-R. 2000. Approche de la phénologie de la migration des migrateurs intra-africains de l'intérieur des terres du Sud-Bénin (plateau d'Allada et sud de la dépression de la Lama). 1. Les non-Passériformes et les non-Coraciiformes. Alauda: 68: 311-320.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Cheke, R. A. 1995. An historical breeding record in Mali and description of the young of the Grasshopper Buzzard \u003Ci\u003EButastur rufipennis\u003C/i\u003E. Malimbus: 17: 106-107.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; Douaud, J. 1957. Les migrations au Togo (Afrique occidentale). Alauda: 25: 241-266.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54573,"full_name":"Dendrocygna viduata","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"White-faced Tree-Duck, White-faced Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas viduata","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54576,"full_name":"Aviceda jerdoni","author_year":"(Blyth, 1842)","common_names":[{"lang":"English","names":"Jerdon's baza","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"Basnet, S., Holt, P. and Karki, R. 2000. Jerdon's Baza \u003Ci\u003EAviceda jerdoni\u003C/i\u003E: a new species for Nepal. Forktail: 16: 170--171.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Stepanyan, L. S. 1987. [The first record of \u003Ci\u003EAviceda jerdoni\u003C/i\u003E (Blyth 1842) (Accipitridae, Aves) in northern Viet Nam.]. Biol. Nauki (Mosc.): 1987: 42-45.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aviceda","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54577,"full_name":"Milvus milvus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Red kite","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hille, S. and Thiollay, J.-M. 2000. The imminent extinction of the kites \u003Ci\u003EMilvus milvus fasciicauda\u003C/i\u003E and \u003Ci\u003EM. m. migrans\u003C/i\u003E on the Cape Verde Islands. Bird Conservation International: 10: 361-369.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S. 2002. New observations of red kite (\u003Ci\u003EMilvus milvus\u003C/i\u003E) in Serbia during reproductive period. Ciconia (Serbia and Montenegro): 11: 136-139.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Geeson, J. and Geeson, J. 1990. First Red Kite record for the Gambia. Malimbus: 11: 144.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ctyroky, P. 1987. Ornithological observations in Iraq. Beiträge Vogelkundliche: 33: 141-204.; Harrison, J. M. 1955. The first occurrence of the Bateleur and Red Kite in Iraq. Bulletin of the British Ornithologists' Club: 75: 59-60.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Lambert, F. R. 1987. New and unusual bird records from the Sudan. Bulletin of the British Ornithologists' Club: 197: 17-19.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mosimann, P. and Juillard, M. 1988. [Breeding status and winter distribution of the Red Kite \u003Ci\u003EMilvus milvus\u003C/i\u003E in Switzerland.]. Orn. Beob.: 85: 199-206.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Milvus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54578,"full_name":"Aquila rapax","author_year":"(Temminck, 1828)","common_names":[{"lang":"English","names":"Tawny eagle","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R. 2005. Recent reports. Bulletin of the African Bird Club: 12(2): 176-191.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Prigogine, A. 1971. Les oiseaux de l`Itombwe et de son hinterland. Annales du Musée Royal de l`Afrique Centrale Serie In-8 Sciences Zoologiques: 185: 28-66; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Brosset, A. and Erard, C. 1986. Les oiseaux des regions forestières du nord-est du Gabon, 1. Société Nationale de Protection de la Nature. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A. and Pineau, O. 1990. Promotion of Ramsar Convention and survey of Lagoa de Cufada, Guinea Bissau. Unpublished report to IUCN. Bissau. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.; Snow, D. W. 1979. Atlas of speciation in African non- passerine birds - addenda and corrigenda. Bulletin of the British Ornithologists' Club: 99: 66-68.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclean, G. I. 1993. Roberts' birds of Southern Africa. Sixth Edition. Trustees of the John Voelcker Bird Book Fund. Cape Town.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54579,"full_name":"Egretta garzetta","author_year":"(Linnaeus, 1766) ","common_names":[{"lang":"English","names":"Little Egret","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Bencke, G. A., Ott, P., Moreno, I., Tavares, M. and Caon, G. 2005. Old World birds new to the Brazilian territory recorded in the Archipelago of São Pedro and São Paulo, equatorial Atlantic Ocean. Ararajuba: 13: 126-129.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Stokes, T., Sheils, W. and Dunn, K. 1984. Birds of the Cocos (Keeling) Islands, Indian Ocean. Emu: 84: 23-28.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.; Kazantzidis, S. and Goutner, V. 1996. Foraging ecology and conservation of feeding habitats of Little Egrets (Egretta garzetta) in the Axios River Delta, Macedonia, Greece. Colonial Waterbirds: 19: 115-121.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Ryan, R. 1997. First record of Little Egret \u003Ci\u003EEgretta garzetta\u003C/i\u003E for Guyana. Cotinga: 7: 92.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; Fasola, M. and Romagnoli, L. 1995. Heron population trends in Italy (1976-1994). Avocetta: 19: 42.; Hafner, H. and Fasola, M. 1997. Long-term monitoring and conservation of herons in France and Italy. Colonial Waterbirds: 20: 298-305.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Evans, M., Amr, Z. and Al-Oran, R.M. 2005. The status of birds in the proposed Rum Wildlife Reserve, southern Jordan. Turkish Journal of Zoology: 29: 17-26.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Komisja Faunistyczna. 2004. Rzadkie ptaki obserwowane w Polsce w roku 2003. Notatki Ornitologiczne: 45: 169-194.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1975. Further migrant birds in the Seychelles. Bulletin of the British Ornithologists' Club: 95: 48-50.; Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Blaber, S. J. M. 1990. A checklist and notes on the current status of the birds of New Georgia, Western Province, Solomon Islands. Emu: 90: 205-214.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. 1983. First record of the Little Egret (\u003Ci\u003EEgretta garzetta\u003C/i\u003E) in Suriname. Wilson Bulletin: 95: 315.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Bond, J. 1985. Birds of the West Indies. 5th edition. Collins. London.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41; Scott, D. A., Howes, J. and Le Dien Duc. 1989. Recommendations for management of Xuan Thuy Reserve, Red River Delta, Vietnam. Asian Wetland Bureau. Kuala Lumpur. ; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Egretta","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea garzetta","author_year":"Linnaeus, 1766"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54583,"full_name":"Falco alopex","author_year":"(Heuglin, 1861)","common_names":[{"lang":"English","names":"Fox kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnérieux, Y. 1985. Note complémentaires sur l'avifaune des Parcs Nationaux de l'Arli (Burkina) et de la Pendjari (Benin). Malimbus: 7: 137-139.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Wilson, J. D. 1989. Range extensions of some bird species of Cameroon. Bulletin of the British Ornithologists' Club: 109: 110-115.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.; Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54585,"full_name":"Strix uralensis","author_year":"Pallas, 1771","common_names":[{"lang":"English","names":"Ural owl","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; Brazil, M. and Yamamoto, S. 1989. The status and distribution of owls in Japan. Pp. 389-401 in Meyburg, B.- U. and Chancellor, R.D. (eds.) Raptors in the modern world. Proceedings of the III World Conference on Birds of Prey and Owls, Eilat, Israel, 22-27 March 1987 .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Strix","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54587,"full_name":"Circus cyaneus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Hen Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"RAMSAR Convention Bureau. 2004. Nomination of Slano Kopovo for Ramsar Site. http://www.wetlands.org/reports/ris/3RS004en_annex.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54593,"full_name":"Asio flammeus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"English","names":"Short-eared owl","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., McRae, E., Meadows, M. and Howell, S. N. G. 2000. Status updates for selected bird species in Belize, including several species previously undocumented from the country. Cotinga: 13: 17-31.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mercado, N. K. 1985. Aves de Bolivia. Editorial Gisbert. La Paz.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Belton, W. 1984. Birds of Rio Grande do Sul, Brazil, part 1: Rheidae through Furnariidae. Bulletin of the American Museum of Natural History: 178: .; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pinto, O. 1978. Novo catalogo das aves do Brasil. Departmento de Zoologia. Sao Paulo.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Araya, L. 1982. Lista patron de las aves Chilenas. Publicaciones ocasionales No. Instituto de Oceanologica, Universidad de Valparaiso, Vina del Mar, Chile.; Brooke, M. de L. 1987. The birds of the Juan Fernandez Islands, Chile. International Council for Bird Preservation, Study Report. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Slud, P. 1964. The birds of Costa Rica, distribution and ecology. Bulletin of the American Museum of Natural History: 128: 1-430.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Austin, O. L. Jr. 1948. The birds of Korea. Bulletin of the Museum of Comparative Zoology: 101: 1-301.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Butler, L. Y. 1979. The birds of Ecuador and the Galapagos Archipelago. The Ramphastos Agency. Portsmouth, N.H.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Freile, J. F. 2004. Range extensions and other noteworthy and new bird records from mainland Ecuador. Bulletin of the British Ornithologists' Club: 124: 188-202.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Puzovic, S., Simic, D., Saveljic, D., Gergelj, J., Tucakov, M., Stojnic, N., Hulo, I., Ham, I., Vizi, O., Å ciban, M., Ružic, M., Vucanovic, M. and Jovan 2003. Birds of Serbia and Montenegro - breeding population estimates and trends: 1990 and 2002. Ciconia: 12: 35-120.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Bagyura, J. and Haraszthy, L. 2004. The status of birds of prey and owls in Hungary. Pp. 3-8 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 World Working Group on Birds of Prey and Owls \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wild Bird Society of Japan. 1982. A field guide to the birds of Japan. Tokyo.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Britton, P. L. (ed.) 1980. Birds of East Africa. East Africa Natural History Society. Nairobi.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Steinheimer, F. D., Easton, E. R. and Lewthwaite, R. W. 2003. Rediscovery of John Crampton W. Kershaw's birds from Macau, including his record of Small Niltava \u003Ci\u003ENiltava macgrigoriae\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 123: 220-227.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Wetlands International. 1995. Ramsar Information Sheet: Proposal for inclusion of Skadar Lake in the list of wetland of international importance. Ramsar. Netherlands. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.; Velmala, W. and Gustafsson, R. 2003. Two new raptors for Nigeria and other raptor observations at Lake Chad. Malimbus: 25: 52-55.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.; Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.; Pont, J. E. du. 1971. Philippine birds. Delaware Museum of Natural History. Greenville, Delaware.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Swanbeck, A. B. and Seiler, C. F. 1987. First sighting of a Short-eared Owl in the US Virgin Islands. Florida Field Naturalist: 15: 52-53.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":54601,"full_name":"Bugeranus carunculatus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Wattled Crane","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"extinct (?),extinct","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Collar, N. J. 1998. Wattled Cranes in Guinea-Bissau. Bulletin of the British Ornithologists' Club: 118: 57-58.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hazevoet, C. J. 1997. On a record of the Wattled Crane \u003Ci\u003EBugeranus carunculatus\u003C/i\u003E from Guinea-Bissau. Bulletin of the British Ornithologists' Club: 117: 56-59.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Williams, J. 1987. Wattled Crane survey in Caprivi. Quagga: 18: 22-23.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.; Tarboton, W. 1984. The status and conservation of the Wattled Crane in the Transvaal. Proceedings of the V Pan African Ornithological Congress . 665-678.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Bugeranus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Ardea carunculata","author_year":"Gmelin, 1789"},{"full_name":"Grus carunculatus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54605,"full_name":"Anthropoides paradiseus","author_year":"(Lichtenstein, 1793)","common_names":[{"lang":"English","names":"Blue Crane, Stanley Crane","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; McCann, K. I. 2001. Population status of South Africa's three crane species as of the end of 1999 based on a National Crane Census and regional aerial surveys. Ostrich Supplement: 15: 126-129.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Anthropoides","name_status":"A","nomenclature_note_en":null,"cms_listing":"NC","synonyms":[{"full_name":"Ardea paradisea","author_year":"Lichtenstein, 1793"},{"full_name":"Grus paradisea","author_year":"(Lichtenstein, 1793)"},{"full_name":"Tetrapteryx paradisea","author_year":"(Lichtenstein, 1793)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54609,"full_name":"Anthropoides virgo","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Demoiselle Crane","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Shelton, N. 2001. Where to watch birds in Azerbaijan. Azerbaijan Publishing House. Baku.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Matvejev, S.D. 1997. Birds of Mt. Kopaonik (2017m): seasonal review. Institute for the Protection of Nature. Belgrade. 123.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pilcher, C. W. T., Gregory, G., Tye, A. and Ahmed, M. S. 1990. Additions to the country list produced by the Kuwait Avifaunal Survey, 1985-7. Sandgrouse: 12: 31-36.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Benson, S. V. 1970. Birds of Lebanon and the Jordan area. International Council for Bird Preservation. Cambridge (UK).; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain,extinct (?)","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Elgood, J. H., Heigham, J. B., Moore, A. M., Nason, A. M., Sharland, R. E. and Skinner, N. J. 1994. The birds of Nigeria. Second edition. B.O.U. Check-list No.4 (Second edition), British Ornithologists' Union. Tring, Herts.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. and Woodcock, M. W. 1980. The birds of Oman. Quartet Books. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Roberts, T. J. 1991. The birds of Pakistan. Volume 1: Non-Passeriformes. Oxford University Press. Oxford.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Kolosov, A. M. (ed.) 1983. [Red data book of the RSFSR: animals.]. Rossel `khozizdat'. Moscow.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Kasparek, M. 1988. The Demoiselle Crane, \u003Ci\u003EAnthropoides virgo\u003C/i\u003E, in Turkey: distribution and population of a highly endangered species. Zoology in the Middle East: 2(1): 31-38; Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Grinchenko, A. 1988. [The present-day status of \u003Ci\u003EAnthropoides virgo\u003C/i\u003E (Linnaeus) in the Kerch Peninsula]. Papers from the fifth meeting of the Soviet working group on cranes, 9-13 September 1986 . Arkhara (USSR). 147; Hagemeijer, W. J. M. and Blair, M. J (eds.) 1997. The atlas of European breeding birds: their distribution and abundance. T \u0026 A D Poyser. London.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282; Winter, S. V., Andrushchenko, Y. A. and Gorlov, P. I. 1995. The Demoiselle Crane in the Ukraine: status, ecology, and conservation prospects. European Crane Workig Group and Martin-Luther Universität . Halle and Wittenberg (Germany). 285-289.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Meine, C.D. and Archibald, G.W. (Ed.) 1996. The Cranes: Status Survey and Conservation Action Plan. The World Conservation Union (IUCN). 282","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Brooks, D. J., Evans, M. I., Martins, R. P. and Porter, R. F. 1987. The status of birds in North Yemen and the records of the OSME Expedition in autumn 1985. Sandgrouse: 9: 4-66.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Anthropoides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ardea virgo","author_year":"Linnaeus, 1758"},{"full_name":"Grus virgo","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Anthropoides spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54648,"full_name":"Nettapus auritus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"African Pygmy-goose","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Johnson, E. D. H. 1972. Observations on the birds of the Upper Blue Nile Basin. Bulletin of the British Ornithologists' Club: 92: 42-49.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Künzel, T. and Künzel, S. 1999. First Nigerian record of Red-fronted Parrot \u003Ci\u003EPoicephalus gulielmi\u003C/i\u003E, and other notable records from SE Nigeria. Malimbus: 21: 111-113.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Nettapus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas aurita","author_year":"Boddaert, 1783"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54665,"full_name":"Phoeniconaias minor","author_year":"(Geoffroy Saint-Hilaire, 1798)","common_names":[{"lang":"English","names":"Lesser Flamingo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. 1996. More bird records from Rio del Rey estuary, Cameroon. Malimbus: 18: 112-121; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Turner, D. A. and Dowsett, R. J. 1988. Additions and corrections to Afrotropical and Malagasy avifaunas, 1. Western Indian Ocean islands. Tauraco: 1: 130-138.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.; Lassey, P. A. 1994. First record of Lesser Flamingo \u003Ci\u003EPhoenicopterus minor\u003C/i\u003E in Egypt. Sandgrouse: 16: 52-53.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Finlayson, C. 2010. Birds of the Strait of Gibraltar. A \u0026 C Black. 560 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nasirwa, O. 2000. Conservation status of flamingos in Kenya. Waterbirds (Special Publication): 23: 47-51.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.; Seddon, N., Tobias, J., Yount, J. W., Ramanampamonjy, J. R., Butchart, S. and Randrianizahana, H. 2000. Conservation issues and priorities in the Mikea Forest of south-west Madagascar. Oryx: 34: 287-304.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":" Childress, B., Nagy, S. \u0026 Hughes, B. (Compilers). 2007. International Single Species Action Plan for the Conservation of the Lesser Flamingo (\u003Ci\u003EPhoenicopterus minor\u003C/i\u003E). AEWA Technical Series. Bonn, Germany; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Chaudry, M.J.I., Arshad, M. \u0026 Akbar, G. 2012. Some observations on Threatened and Near Threatened avifauna of Pakistan. 21: 65-72; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoeniconaias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phoenicopterus minor","author_year":"Geoffroy, 1798"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54667,"full_name":"Phoenicopterus roseus","author_year":"Pallas, 1811","common_names":[{"lang":"English","names":"Greater Flamingo","convention_language":true,"id":null},{"lang":"French","names":"Flamant rose","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54668,"full_name":"Phoenicopterus ruber","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"American Flamingo, Caribbean Flamingo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Adamian, M. S. and Klem, D. Jr. 1997. A field guide to birds of Armenia. American University of Armenia.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Gauger, K. \u0026 Pietzsch, D. 2005. The National Park Lake Ag-Gel – contributions to the Avifauna of Azerbaijan. 44(4):57-68","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Nightingale, T. and Hill, M. 1992. The birds of Bahrain. Immel.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Otoch, R., Luigi, G., Raposo, M. A. and Almeida, A. C. C. de. 1993. Notes on some birds of northeastern Brazil (5). Bulletin of the British Ornithologists' Club: 113: 48-52.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"reintroduced","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Ruiz-Guerra, C., Johnston-González, R., Cifuentes-Sarmiento, Y., Estela, F. A., Castillo, F., Hernández, C. E. and Naranjo, L. G. 2007. Noteworthy bird records from the southern Chocó of Colombia. Bulletin of the British Ornithologists' Club: 127: 283-293.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Turner, D. A. and Dowsett, R. J. 1988. Additions and corrections to Afrotropical and Malagasy avifaunas, 1. Western Indian Ocean islands. Tauraco: 1: 130-138.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Buden, D.W. 1993. Bird band recoveries from Haiti and the Dominican Republic. Caribbean Journal of Science: 29: 179-185.; Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kebede, E. and Hillman, J. C. 1989. First recorded breeding of Greater Flamingos \u003Ci\u003EPhoenicopterus ruber roseus\u003C/i\u003E in Ethiopia. Flamingo Research Group Newsletter: 5: 7.","id":null},{"name":"Former Serbia and Montenegro","country":"Former Serbia and Montenegro","tags_list":"","country_references":"Ruzic, M. 2006. Checklist of Serbian birds. http://www.wild-serbia.com/pdf/Ptice\u003Ci\u003ESrbije-lista\u003C/i\u003Evrsta.pdf . ","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; Johnson, A. R. 1989. Population studies and conservation studies of Greater Flamingos in the Camargue. Pp.49-63 in Spaans, A. L. Wetlands en Watervoegels. Pudoc. Wageningen, the Netherlands.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Finlayson, C. 2010. Birds of the Strait of Gibraltar. A \u0026 C Black. 560 pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Altenburg, W. and van der Kamp, J. 1986. Oiseaux d'eau dans les zones humides de la Mauritanie du Sud, du Sénégal et de la Guinée-Bissau; octobre-décembre 1983. Research Institute for Nature Management (Contrib. 86-1). Leersum. ; Altenburg, W., Wymenga, E. and Zwarts, L (eds.) 1992. Ornithological importance of the coastal wetlands of Guinea-Bissau. Working Group International Wader and Waterfowl Research (Rep. 26). Zeist. ; Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1969. Peuplements et cycles de reproduction des oiseaux de la côte occidentale d'Afrique, du Cap Barbas, Sahara Espagnol, à la frontière de la République de Guinée. Mém. Mus. Nat. Hist. Paris sér. A, Zool.: 56: 1-312.; Poorter, E. and Zwarts, L. 1984. Résultats d'une première mission ornitho-écologique de l'UICN/WWF en Guinée-Bissau. Privately published. Groningen.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Buden, D.W. 1993. Bird band recoveries from Haiti and the Dominican Republic. Caribbean Journal of Science: 29: 179-185.; Ottenwalder, J. A. 1988. Flamingos in Haiti. World Birdwatch: 10: 8.; Ottenwalder, J. A., Woods, C. A., Rathburn, G. B. and Thorbjarneson, J. B. 1990. Status of the Greater Flamingo in Haiti. Colonial Waterbirds: 13: 115-123.; Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Alipour, S. 2008. Atlas of the Urmia Lake National Park. Department of the Environment - West Azarbaijan Provincial Directory of Environmental Protection. Islamic Republic of Iran.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Schielzeth, H., Eichhorn, G., Heinicke, T., Kamp, J., Koshkin, M.A., Koshkin, A.V. and Lachmann, L. 2008. Waterbird population estimates for a key staging site in Kazakhstan: a contribution to wetland conservation on the Central Asian flyway. Bird Conservation International: 18: 71-86.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Nasirwa, O. 2000. Conservation status of flamingos in Kenya. Waterbirds (Special Publication): 23: 47-51.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.; Ramadan-Jaradi, G., Bara, T., Almécija, M. and Ramadan-Jaradi, M. 2004. Significant bird notes from Lebanon during 2002-03. Sandgrouse: 26: 29-34.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Baldassarre, G. A. and Arengo, F. 2000. A review of the ecology and conservation of Caribbean Flamingos in Yucatán, Mexico. Waterbirds (Special Publication): 23: 70-79.; Espino-Barros, R. and Baldassarre, G. A. 1989. Numbers, migration chronology, and activity patterns of non-breeding Caribbean Flamingos in Yucatan, Mexico. Condor: 91: 585-591.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M., Schwarz, U., Sackl, P., Dhora, D., Saveljic , D. and Stumberger, B. 2006. Rapid assessment of the ecological value of Bojana-Buna delta (Albania/Montenegro). Euronatur: Radolfzell . ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Voous, K.H. 1985. Additions to the avifauna of Aruba, Curaçao, and Bonaire, South Caribbean. \u003Ci\u003EOrnithological Monographs\u003C/i\u003E 36: 247-254","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Arshad, M. Mehmood, N., Muqadas, H., Chaudhry, J., Mustafa, I., Khan, M. R., Maliks, I.U. \u0026 Ahmed, H. 2014. Avifauna Studies in Co-Relation with Alteration in Climatic Patterns and Hydrology of Uchalli Lake, Punjab, Pakistan. Pakistan Journal of Zoology 46(2):503-515","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Warr, F. E. 1993. A list of Qatar's birds. Privately distributed.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Feare, C. J. 1975. Further migrant birds in the Seychelles. Bulletin of the British Ornithologists' Club: 95: 48-50.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Cramp, S. 1977. Handbook of the birds of Europe, the Middle East and North Africa. Oxford University Press. Oxford.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; ffrench, R. and White, G. 1999. Verification of rare bird records from Trinidad \u0026 Tobago. Cotinga: 12: 80-82.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"extinct","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Vasiliev, V. I. and Gauzer, M. 2001. Status of waterbirds in the Caspian region of Turkmenistan, 1970-2000. Threatened Waterfowl Research Group News: 13: 72-73.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Espinoza, F., Parra, L., Aranguren, J., Martino, A., Quijada, M., Pirela, D., Rivero, R., Gutierrez, T., Jimenez, N., Leal, S. and Leon, E. 2000. Numbers and distribution of the Caribbean Flamingo in Venezuela. Waterbirds (Special Publication): 23: 80-86.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":54674,"full_name":"Plectropterus gambensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Spur-winged Goose","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Naurois, R. de. 1969. Peuplements et cycles de reproduction des oiseaux de la côte occidentale d'Afrique, du Cap Barbas, Sahara Espagnol, à la frontière de la République de Guinée. Mém. Mus. Nat. Hist. Paris sér. A, Zool.: 56: 1-312.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Plectropterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anas gambensis","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":54690,"full_name":"Sarkidiornis melanotos","author_year":"(Pennant, 1769)","common_names":[{"lang":"English","names":"Comb Duck, Knob-billed Goose, African Comb Duck","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Bertonatti, C. and Gonzalez, F. 1992. Lista de vertebrados Argentinas en peligro de extinción. Fundacion Vida Silvestre Argentina. Boletin Tecnico: 8; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hawkins, A.F.A. and Goodman, S.M. 1999. Bird community variation with elevation and habitat in parcels 1 and 2 of the Réserve Naturelle Intégrale d'Andohahela, Madagascar. Goodman, S.E. (ed.) A floral and faunal inventory of the Réserve Naturelle d'Intégrale d'Andohahela, Madagascar: With reference to elevational variation. Fieldiana Zoology New Series: 94: 175-186.; Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Contreras-Balderas, A. J. 1988. New records of birds from Nuevo Leon, Mexico. Southwestern Naturalist: 33: 251-252.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Jones, P. and Tye, A. 2006. The birds of São Tomé \u0026 Príncipe, with Annobon, islands of the Gulf of Guinea. An annotated checklist. British Ornithologists' Union and British Ornithologists' Club. Oxford.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Humphrey, S. R. and Bain, J. R. 1990. Endangered animals of Thailand. Sandhill Crane Press, Inc. Florida.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Achaval, F. 1989. Lista de especies de vertebratos del Uruguay. Parte 2: Anfibios, reptiles aves y mamíferos. Facultad de Humanidades y Ciencias, Universidad de la Republica, Uruguay.; Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Sarkidiornis","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[{"full_name":"Anser melanotos","author_year":"Pennant, 1769"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":66107,"full_name":"Grus americana","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Whooping Crane","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"extinct,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Urbanek, R.P., Fondow, L.E.A., Zimorski, S.E., Wellington, M.A. and Nipper, M.A. 2010. Winter release and management of reintroduced migratory Whooping Cranes \u003Ci\u003EGrus americana\u003C/i\u003E. Bird Conservation International: 20: 43-54.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Grus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"All migratory \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Grus spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66116,"full_name":"Accipiter poliogaster","author_year":"(Temminck, 1824)","common_names":[{"lang":"English","names":"Grey-bellied Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1992. Guía de Aves Argentinas. Second edition. Vol. 2. Falconiformes-Charadriiformes. Literature of Latin America (L.O.L.A.). Buenos Aires.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Howell, S. N. G. 2002. Additional information on the birds of Ecuador. Cotinga: 18: 62-65.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Thiollay, J.-M. 1989. Area requirements for the conservation of rain forest raptors and game birds in French Guiana. Conservation Biology: 3: 128-137.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Barnett, A., Shapley, R., Benjamin, P., Henry, E. and McGarrell, M. 2002. Birds of the Potaro Plateau, with eight new species for Guyana. Cotinga: 18: 19-36.; Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. 1972. \u003Ci\u003EAccipiter poliogaster\u003C/i\u003E in Surinam. Journal für Ornithologie: 113: 338-339.; Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66125,"full_name":"Accipiter fasciatus","author_year":"(Vigors \u0026 Horsfield, 1827)","common_names":[{"lang":"English","names":"Brown Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.; Olson, P. D., Crome, F. and Olson, J. 1993. Birds of prey and ground birds of Australia. Australian Museum and Angus \u0026 Robertson. Sydney.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Thiollay, J. M. 1993. Habitat segregation and the insular syndrome: two congeneric raptors in New Caledonia: the White-bellied Goshawk \u003Ci\u003EAccipiter haplochrous\u003C/i\u003E and the Brown Goshawk \u003Ci\u003EA. fasciatus\u003C/i\u003E. Ibis: 135: 237-246.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Coates, B. J. 1985. Birds of Papua New Guinea. Volume 1. Dove Publications. Alderley, Australia.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Mayr, E. 1931. Birds collected during the Whitney South sea expedition XIII. American Museum Novitates: 486: 1-10.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Trainor, C. R. and Soares, T. 2004. Birds of Atauro Island, Timor-Leste (East Timor). Forktail: 20: 41-48.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66146,"full_name":"Accipiter striatus","author_year":"Vieillot, 1807","common_names":[{"lang":"English","names":"Sharp-shinned Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1992. Guía de Aves Argentinas. Second edition. Vol. 2. Falconiformes-Charadriiformes. Literature of Latin America (L.O.L.A.). Buenos Aires.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Pacheco, J. F. and Whitney, B. M. 1995. Range extensions for some birds in northeastern Brazil. Bulletin of the British Ornithologists' Club: 115: 157-163.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Norton, R. L. 1999. West Indies region. North American Birds: 53: 110-111.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ingels, J., Cleere, N. and Pelletier, V. 2003. Noteworthy observations on some French Guianan birds. Alauda: 71: 59-67.; Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.; Schaller, G. B. 1985. China's golden treasure. International Wildlife: 15: 29-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66147,"full_name":"Accipiter cooperii","author_year":"(Bonaparte, 1828)","common_names":[{"lang":"English","names":"Cooper's Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Edwards, E. P. 1998. A field guide to the birds of Mexico and adjacent areas: Belize, Guatemala and El Salvador. University of Texas Press. Texas, USA.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Forcey, J. M. 2001. Breeding of Cooper's Hawk (\u003Ci\u003EAccipiter cooperii\u003C/i\u003E) in Oaxaca. Huitzil: 2: 21-23.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66149,"full_name":"Accipiter bicolor","author_year":"(Vieillot, 1817)","common_names":[{"lang":"English","names":"Bicolored Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Imberti, S. 2003. Notes on the distribution and natural history of some birds in Santa Cruz and Tierra del Fuego provinces, Patagonia, Argentina. Cotinga: 19: 15-24.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Vallely, A. C. and Aversa, T. 1997. New and noteworthy bird records from Belize including the first record of Chestnut-collared Swift \u003Ci\u003ECypseloides rutilus\u003C/i\u003E. Bulletin of the British Ornithologists' Club: 117: 272-274.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66150,"full_name":"Accipiter melanoleucus","author_year":"Smith, 1830","common_names":[{"lang":"English","names":"Black Sparrowhawk","convention_language":true,"id":null},{"lang":"French","names":"Autour noir","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Sinsin, B. 1995. La forêt classée de la Lama: aperçu général d'un écosystème naturel aménagé dans un environnement socio-économique. Notes du Laboratoire d'Ecologie Appliquée de la FSA/UN Bénin No. 3.; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Scott, D. A. and Pineau, O. 1990. Promotion of Ramsar Convention and survey of Lagoa de Cufada, Guinea Bissau. Unpublished report to IUCN. Bissau. ","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclean, G. I. 1993. Roberts' birds of Southern Africa. Sixth Edition. Trustees of the John Voelcker Bird Book Fund. Cape Town.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1897. Zur Vogelfauna von Togo. Journal für Ornithologie: 45: 1-57.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Accipiter","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66156,"full_name":"Buteo lineatus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Red-shouldered Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66158,"full_name":"Buteo platypterus","author_year":"(Vieillot, 1823)","common_names":[{"lang":"English","names":"Broad-winged Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Cabot, J. and Serrano, P. 1988. Distributional data on some non-passerine species in Bolivia. Bulletin of the British Ornithologists' Club: 108: 187-193.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Robbins, M. B., Braun, M. J. and Finch, D. W. 2004. Avifauna of the Guyana southern Rupununi, with comparisons to other savannas of northern South America. Orn. Neotrop.: 15: 173-200.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hughes, R. A. 1988. Nearctic migrants in southwest Peru. Bulletin of the British Ornithologists' Club: 108: 29-43.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66161,"full_name":"Buteo albigula","author_year":"Philippi, 1899","common_names":[{"lang":"English","names":"White-throated Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Anon. 1995. Lista de las aves de Bolivia. Asociación Armonía. Santa Cruz, Bolivia.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. 2000. New distributional sightings of 28 species of birds from Dpto. Nariño, SW Colombia. Bulletin of the British Ornithologists' Club: 120: 189-195.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Høgsås, T. E., Málaga-Arenas, E. and Neyra, J. P. 2002. Noteworthy bird records for south-west Peru. Cotinga: 17: 60-61.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66162,"full_name":"Buteo swainsoni","author_year":"Bonaparte, 1838","common_names":[{"lang":"English","names":"Swainson's Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.; Wood, D. S., Leberman, R. C. and Weyer, D. 1986. Checklist of the birds of Belize. Carnegie Museum of Natural History. Pittsburgh.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Mauricio, G. N. and Dias, R. A. 2000. New distributional information for birds in southern Rio Grande do Sul, Brazil, and the first record of the Rufous Gnateater \u003Ci\u003EConopophaga lineata\u003C/i\u003E for Uruguay. Bulletin of the British Ornithologists' Club: 120: 230-237.; Sick, H. 1979. Notes on some Brazilian birds. Bulletin of the British Ornithologists' Club: 99: 115-120.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Willis, E. O. and Oniki, Y. 1993. New and reconfirmed birds from the state of Sao Paulo, Brazil, with notes on disappearing species. Bulletin of the British Ornithologists' Club: 113: 23-34.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Marín, M. 2000. El aguilucho langostero \u003Ci\u003EButeo swainsoni\u003C/i\u003E una nueva especie que se debe agregar a la lista de aves Chilenas. Boletín Chileno de Ornitología: 7: 26.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Bradshaw, C. G., Kirwan, G. M. and Williams, R. S. R. 1997. First record of Swainson's Hawk \u003Ci\u003EButeo swainsoni\u003C/i\u003E for the West Indies. Bulletin of the British Ornithologists' Club: 117: 315-316.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Andres, B., Haag, W. and Andres, S. 1991. Recent records of Swainson's Hawk in Trinidad and Tobago. Journal of the Trinidad and Tobago Field Naturalists Club 1991-1992: 45.; ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.; Hayes, F. E. 2001. First sight records of Swainson's Hawk (\u003Ci\u003EButeo swainsoni\u003C/i\u003E) for Trinidad and Chacachacare Island, with comments on its status and trans-Caribbean migration. El Pitirre: 14: 63-65.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66167,"full_name":"Buteo albonotatus","author_year":"Kaup, 1847","common_names":[{"lang":"English","names":"Zone-tailed Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fraga, R. M. and Clark, R. 1999. Notes on the avifauna of the upper Bermejo River (Argentina and Bolivia) with a new species for Argentina. Cotinga: 12: 77-78.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Silveira, L. F., Develey, P. F., Pacheco, J. F. and Whitney, B. M. 2005. Avifauna of the Serra das Lontras-Javi montane complex, Bahia, Brazil. Cotinga: 24: 45-54.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Pearman, M. 1993. Some range extensions and five species new to Colombia, with notes on some scarce or little known species. Bulletin of the British Ornithologists' Club: 113: 66-75.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Beavers, R. A., Delaney, D. J., Leahy, C. W. and Oatman, G. F. 1991. New and noteworthy bird records from Petén, Guatemala, including Tikal National Park. Bulletin of the British Ornithologists' Club: 111: 77-90.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66169,"full_name":"Buteo jamaicensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Red-tailed Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"extinct","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Castaño R., A. M. and Colorado Z., G. J. 2002. First records of Red-tailed Hawk \u003Ci\u003EButeo jamaicensis\u003C/i\u003E in Colombia. Cotinga: 18: 102.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Komar, O. 2002. Birds of Montecristo National Park, El Salvador. Ornitologia Neotropical: 13: 167-193.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66172,"full_name":"Buteo regalis","author_year":"(Gray, 1844)","common_names":[{"lang":"English","names":"Ferruginous Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66183,"full_name":"Hieraaetus ayresii","author_year":"Gurney, 1862","common_names":[{"lang":"English","names":"Ayres's Hawk-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Demey, R. 1999. Recent reports. Bulletin of the African Bird Club: 6(2): 152-157; Demey, R. 2000. Recent reports. Bulletin of the African Bird Club: 7(2): 144-151; Demey, R. 2004. Recent reports. Bulletin of the African Bird Club: 11(2): 168-182; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 2000. New species and amendments to the avifauna of Cameroon. Bulletin of the British Ornithologists' Club: 120: 179-185.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Ash, J. S. 1981. Ayres' Hawk Eagle \u003Ci\u003EHieraaetus dubius\u003C/i\u003E in Ethiopia and Somalia. Scopus : 5: 54-56.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Demey, R., Dowsett-Lemaire, F. and Dowsett, R. J. 2003. Notable bird observations from Nigeria, including the first records of Spot-breasted Ibis \u003Ci\u003EBostrychia rara\u003C/i\u003E and Yellow Longbill \u003Ci\u003EMacrosphenus flavicans\u003C/i\u003E. Malimbus: 25: 85-93","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Ash, J. S. 1981. Ayres' Hawk Eagle \u003Ci\u003EHieraaetus dubius\u003C/i\u003E in Ethiopia and Somalia. Scopus : 5: 54-56.; Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Stresemann, E. 1924. Über \u003Ci\u003EHieraaëtus ayresii\u003C/i\u003E und \u003Ci\u003ESpizaëtus africanus\u003C/i\u003E. Novitates Zoologicae: 31: 214-216.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66195,"full_name":"Butastur teesa","author_year":"(Franklin, 1831)","common_names":[{"lang":"English","names":"White-eyed Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Butastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66196,"full_name":"Circus cinereus","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Cinereous Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Anon. 2004. Lista Nacional das Espécies da Fauna Brasileira Ameaçadas de Extinção. http://www.mma.gov.br/port/sbf/fauna/lista.html . ; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Marin A., M., Kiff, L. F. and Peña G., L. 1989. Notes on Chilean birds, with descriptions of two new subspecies. Bulletin of the British Ornithologists' Club: 109: 66-82.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Lowen, J. C. et al. 1997. New and noteworthy observations on the Paraguayan avifauna. Bulletin of the British Ornithologists' Club: 117: 275-293.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66197,"full_name":"Circus assimilis","author_year":"Jardine \u0026 Selby, 1828","common_names":[{"lang":"English","names":"Spotted Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66198,"full_name":"Circus buffoni","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Long-winged Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Helme, N. A. 1996. New departmental records for Dpto. La Paz, Bolivia, from the Pampas del Heath. Bulletin of the British Ornithologists' Club: 116: 175-177.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Tobias, J. A. and Seddon, N. 2007. Nine bird species new to Bolivia and notes on other significant records. Bulletin of the British Ornithologists' Club: 127: 49-84.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Whittaker, A. 2004. Noteworthy ornithological records from Rondônia, Brazil, including a first country record, comments on austral migration, life history, taxonomy and distribution, with relevant data from neighbouring states, and a first record for Bolivia. Bulletin of the British Ornithologists's Club: 124: 239-271.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66200,"full_name":"Circus approximans","author_year":"Peale, 1848","common_names":[{"lang":"English","names":"Swamp Harrier, Australasian Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Beecher, W. J. 1945. A bird collection from the Solomon Islands. Fieldiana, Zoology: 31: 31-37.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66202,"full_name":"Circaetus cinerascens","author_year":"von Müller, 1851","common_names":[{"lang":"English","names":"Western Banded Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Brown, C. J. and Hines, C. J. H. 1987. Western Banded Snake Eagles in Namibia. Gabar: 2: 40-42.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Brown, L. H., Urban, E. K. and Newman, K. 1982. The birds of Africa, 1. Academic Press. London and New York.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Cheke, R. A., Walsh, J. F. and Sowah, S. A. 1986. Records of birds seen in the Republic of Togo during 1984-1986. Malimbus: 8: 51-72.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66203,"full_name":"Circaetus cinereus","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Brown Snake-eagle","convention_language":true,"id":null},{"lang":"French","names":"Circaète brun","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Germain, M. and Cornet, J.-P. 1994. Oiseaux nouveaux pour la République Centrafricaine ou dont les notifications de ce pays sont peu nombreuses. Malimbus: 16: 30-51.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1984. Further bird records from the Republic of Togo. Malimbus: 6: 15-22.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66204,"full_name":"Circaetus fasciolatus","author_year":"Kaup, 1850","common_names":[{"lang":"English","names":"Southern Banded Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66205,"full_name":"Circaetus pectoralis","author_year":"A. Smith, 1829","common_names":[{"lang":"English","names":"Black-chested Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66206,"full_name":"Gyps coprotheres","author_year":"(Forster, 1798)","common_names":[{"lang":"English","names":"Cape Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bamford, A.J., Diekmann, M., Monadjem, A. and Mendelsohn, J. 2007. Ranging behaviour of Cape Vultures \u003Ci\u003EGyps coprotheres\u003C/i\u003E from an endangered population in Namibia. Bird Conservation International: 17: 331-339.; Brown, C. J. 1985. The status and conservation of the Cape Vulture in SWA/Namibia. Vulture News: 14: 4-15.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Boshoff, A. F. and Robertson, A. S. 1985. A conservation plan for the Cape Vulture colony at Potberg, de Hoop Nature Reserve, southwestern Cape Province. Bontebok: 4: 25-31.; Boshoff, A. F. and Vernon, C. J. 1987. The Cape Vulture colonies at Karnmelkspruit 1984-1986 and Balloch 1978- 1986, north-eastern Cape Province. Vulture News: 17: 31-36.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Piper, S. E. and Ruddle, P. 1986. An initial evaluation of the Cape Vulture colonies at Mkambati, Transkei. Vulture News: 15: 7-12.; Robertson, A. and February, E. 1986. Towards an historical perspective of Cape Vultures and domestic stock: a view from the southwestern Cape. Vulture News: 15: 4-6.; Vernon, C. J. and Piper, S. E. 1986. The Cape Vulture colony at Colleywobbles, Transkei, in 1984 and 1985. Vulture News: 15: 27-28.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. 1979. Recent additions to the Zambian list. Bulletin of the British Ornithologists' Club: 99: 94-98.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66207,"full_name":"Gyps himalayensis","author_year":"Hume, 1869","common_names":[{"lang":"English","names":"Himalayan Griffon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ; Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Acharya, R., Cuthbert, R., Baral, H.S. and Shah, K.B. 2009. Rapid population declines of Himalayan Griffon \u003Ci\u003EGyps himalayensis\u003C/i\u003E in Upper Mustang, Nepal. Bird Conservation International: 19: 99-107.; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Abdusalyamov, I. A. 1977. [Fauna of the Tadjik Soviet Socialistic Republic: birds.]. Donish. Dushanbe.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Katzner, T., Gavashelishvili, A., Sklyarenko, S., McGrady, M., Shergalin, J. and Bildstein, K. 2004. Population and conservation status of griffon vultures in the former Soviet Union. Pp. 235-240 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66209,"full_name":"Gyps indicus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Indian Vulture, Long-billed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66210,"full_name":"Gyps bengalensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"White-rumped Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Bishop, K. D. 1999. Preliminary notes on some birds in Bhutan. Forktail: 15: 87-91.; Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Baral, H. S., Giri, J. B. and Virani, M. Z. 2004. On the decline of Oriental White-backed Vultures \u003Ci\u003EGyps bengalensis\u003C/i\u003E in lowland Nepal. Pp. 215-219 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Gilbert, M., Oaks, J. L., Virani, M. Z., Watson, R. T., Ahmed, S., Chaudhry, M. J. I., Arshad, M., Mahmood, S., Ali, A., Khattak, R. M. and Khan, A. A 2004. The status and decline of vultures in the provinces of Punjab and Sind, Pakistan: a 2003 update. Pp. 221-234 in R. D. Chancellor \u0026 B.-U. Meyburg, eds., Raptors worldwide. Proceedings of the VI World Conference on Birds of Prey and Owls, Budapest 18-23 May 2003 WWGBP \u0026 MME/BirdLife Hungary. Berlin \u0026 Budapest. ; Gilbert, M., Virani, M. Z., Watson, R. T., Oaks, J. L., Benson, P. C., Khan, A. A., Ahmed, S., Chaudhry, J., Arshad, M., Mahmood, S. and Shah, Q. A. 2002. Breeding and mortality of Oriental White-backed Vulture \u003Ci\u003EGyps bengalensis\u003C/i\u003E in Punjab Province, Pakistan. Bird Conserv. Internatn.: 12: 311-326.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66211,"full_name":"Gyps africanus","author_year":"Salvadori, 1865","common_names":[{"lang":"English","names":"White-backed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A., De Vree, F. and Van der Straeten, E. 1972. Contribution à l'ornithologie de la République du Togo. 4. Oiseaux récoltés par la troisième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines : 86: 374-384.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":null,"cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66212,"full_name":"Haliaeetus leucocephalus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Bald Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"Counsell, D. 1988. The RAFOS expedition to Belize Feb- Mar 1986. Royal Air Force Ornithological Society Journal: 18: 17-63.; Jones, H. L. 2002. Erroneous and unconfirmed bird records from Belize: setting the record straight. Bulletin of the British Ornithologists' Club: 122: 201-216.; Miller, B. W. and Miller, C. M. 1998. Ornithology in Belize since 1960. Wilson Bulletin: 110: 544-558.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliaeetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66222,"full_name":"Falco sparverius","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"American Kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Boal, C.W., Sibley, F.C., Estabrook, T.S. and Lazell, J. 2006. Insular and migrant species, longevity records, and new species records on Guana Islands, British Virgin Islands. \u003Ci\u003EThe Wilson Journal of Ornithology\u003C/i\u003E 118(2): 218-224","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Stockton de Dod, A. 1987. Aves de la Republica Dominicana. 2nd edition. Museo Nacional de Historia Natural. Santo Domingo.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wetmore, A. and Swales, B. H. 1931. The birds of Haiti and the Dominican Republic. Bulletin of the United States National Museum: 155: .","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Rojer, A. 1997. Biological inventory of St. Maarten. http://www.mina.vomil.an/Pubs/RojerSXMsurvey.html . ","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Angehr, G. 1997. The Fieldeditor's report. El Tucan: 23: 4-5.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66223,"full_name":"Falco rupicoloides","author_year":"Smith, 1829","common_names":[{"lang":"English","names":"Greater Kestrel","convention_language":true,"id":null},{"lang":"French","names":"Crécerelle aux yeux blancs","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66225,"full_name":"Falco rufigularis","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Bat Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Davis, S. E., Rocha O., O., Sarmiento, J. and Hanagarth, W. 1994. New departmental records and notes for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 73-85.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Whitney, B. M., Rowlett, J. L. and Rowlett, R. A. 1994. Distributional and other noteworthy records for some Bolivian birds. Bulletin of the British Ornithologists' Club: 114: 149-162.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.; Teixeira, D. M., Nacinovic, J. B. and Pontual, F. B. 1987. Notes on some birds of northeastern Brazil (2). Bulletin of the British Ornithologists' Club: 107: 151-157.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66227,"full_name":"Phoenicopterus chilensis","author_year":"Molina, 1782","common_names":[{"lang":"English","names":"Chilean Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Flamenco Chileno","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Valqui, M., Caziani, S. M., Rocha O., O. and Rodriguez, R., E. 2000. Abundance and distribution of the South American altiplano flamingos. Waterbirds (Special Publication): 23: 110-113.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicopterus","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66230,"full_name":"Coscoroba coscoroba","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Coscoroba Swan","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Tobias, J. A. and Seddon, N. 2007. Ornithological notes from southern Bolivia. Bulletin of the British Ornithologists' Club: 127: 293-300.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"extinct","country_references":"Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Hayes, F. E., Goodman, S. M. and López, N. E. 1990. New or noteworthy bird records from the Matogrosense region of Paraguay. Bulletin of the British Ornithologists' Club: 110: 94-103.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Coscoroba","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66234,"full_name":"Phalcoboenus australis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Striated Caracara","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"Procter, D. and Fleming, L. V (eds.) 1999. Biodiversity: the UK Overseas Territories. Joint Nature Conservation Committee. Peterborough. ; Woods, R. W. 1988. Guide to the birds of the Falkland Islands. Anthony Nelson. Oswestry, U.K.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Phalcoboenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66294,"full_name":"Buteogallus meridionalis","author_year":"(Latham, 1790)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Vellinga, W.-P., Flanagan, J. N. M. and Mark, T. R. 2004. New and interesting records of birds from Ayabaca province, Piura, north-west Peru. Bulletin of the British Ornithologists' Club: 124: 124-142.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteogallus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66297,"full_name":"Buteogallus anthracinus","author_year":"(Depp, 1830)","common_names":[{"lang":"English","names":"Common Black Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Keith, A. R. 1997. The birds of St Lucia: an annotated checklist. BOU Checklist No. 15. British Ornithologists' Union. Tring.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteogallus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66318,"full_name":"Melierax canorus","author_year":"(Rislachi, 1799)","common_names":[{"lang":"English","names":"Pale Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66319,"full_name":"Melierax metabates","author_year":"Heuglin, 1861","common_names":[{"lang":"English","names":"Dark Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Millet-Horsin. 1923. Contribution à l'etude de la faune ornithologique du Bas-Togo. Bulletin Comité d'Etudes Hist. et Sci. de l'Afrique Occidentale Française: Jan.-Mar. 1923: 1-27.; Reichenow, A. 1899. Zur Tierverbreitung in Afrika. Ornithologische Monatsberichte: 7: 189-190.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66320,"full_name":"Melierax poliopterus","author_year":"Cabanis, 1869","common_names":[{"lang":"English","names":"Eastern Chanting-goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Melierax","name_status":"A","nomenclature_note_en":null,"cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66322,"full_name":"Kaupifalco monogrammicus","author_year":"(Temminck, 1824)","common_names":[{"lang":"English","names":"Lizard Buzzard","convention_language":true,"id":null},{"lang":"French","names":"Buse unibande","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Brunel, J. 1958. Observations sur les oiseaux du bas-Dahomey. L'Oiseau et R.f.O.: 28: 1-38.; Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ; van den Akker, M. 2003. Birds of Niaouli forest, southern Benin. Bulletin of the African Bird Club: 10: 16-22.; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Quantrill, B. and Quantrill, R. 1998. The birds of the Parcours Vita, Yaoundé, Cameroon. Malimbus: 20: 1-14.; Robertson, I. 1992. New information on birds in Cameroon. Bulletin of the British Ornithologists' Club: 112: 36-42.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.; Helsens, T. 1996. New information on birds in Ghana, April 1991 to October 1993. Malimbus: 18: 1-9.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Bannerman, D. A. 1931. Account of the birds collected (i) by Mr. G. L. Bates on behalf of the British Museum in Sierra Leone and French Guinea; (ii) by Lt. Col. G. J. Houghton, R. A. M. C. in Sierra Leone, recently acquired by the British Museum. Ibis: 13(1-2): 661-697, 217-261.; Berlioz, J. and Roche, J. 1960. Étude d'une collection d'oiseaux de Guinée. Bulletin du Muséum National d'Histoire Naturelle: 32: 272-283.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Brosset, A. 1984. Oiseaux migrateurs Européens hivernant dans la partie Guinéenne du Mont Nimba. Alauda: 52(1): 81-101.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A. 1970. Contribution à l'ornithologie de la République du Togo. 2. Oiseaux récoltés par M. C. Veronese. Revue de Zoologie et de Botanique Africaines: 81: 163-172.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Kaupifalco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66335,"full_name":"Spilornis cheela","author_year":"(Latham, 1790)","common_names":[{"lang":"English","names":"Crested Serpent-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Rappole, J.H., Aung, T., Rasmussen, P.C. and Renner, S.C. 2011. Ornithological exploration in the Southeastern Sub-Himalayan region of Myanmar. Ornithological Monographs: 70: 10-29.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Woo, Y.-T. and Lee, J.-N. 1996. Newly recorded birds of 6 species and subspecies in Korea. Korean Journal of Ornithology: 3: 59-61.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Cox, C. R., Vu Van Dung, Pham Mong Giao and Le Xuan Canh. 1994. A managemant feasibility study of the proposed Na Hang (Tonkin Snub-nosed Monkey) Nature Reserve, Tuyen Quang Province, Vietnam. IUCN Species Survival Programme. Gland (Switzerland) and Cambridge (UK). 57; Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. 1995. Endemic birds and protected area development on the Da Lat Plateau, Vietnam. Bird Conservation International: 5: 491-523; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Eve, R. 1996. Birdlist of Bach Ma National Park, Hai Van Pass, Bana. Bach Ma National Park Project. Bach Ma (Viet Nam). 57 pp.; Furey, N., Le Xuan Canh and Fanning, E (eds.) 2002. Cat Ba National Park biodiversity survey 1999. Frontier Vietnam. Hanoi. 51; Kalyakin, M. V. and Korzun, L. P. 1998. [Ornithological observations in Fan Si Pan summit area, northern Vietnam, in winter 1996/97]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre . Moscow and Hanoi.; Kalyakin, M. V., Korzun, L. P. and Trunov, V. L. 1997. [The characteristics of bird communities of the lowland \u003Ci\u003EDipterocarpus\u003C/i\u003E forest Ma Da (Dong Nai Province, South Vietnam). [Collected articles for the 10th Anniversary of the foundation of the Tropical Centre] Joint Russian-Vietnamese Tropical Scientific Centre, Russian Academy of Sciences and Vietnamese Ministry of Science, Technology and Environment. Moscow/Hanoi. 1: 74-113.; Lambert, F. R., Eames, J. C. and Nguyen Cu. 1994. Surveys for endemic pheasants in the Annamese Lowlads of Vietnam, June-July, 1994. IUCN Species Survival Commission. Cambridge (UK) and Gland (Switzerland). 49; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Trang Trai, Le Manh Hung, Ha Van Tue, Trinh Viet Cuong, Nguyen Truong Son, Pham Duc Tien and Bui Xuan Phuong. 2004. A biodiversity survey of the proposed \"Francois' Langur species and habitat conservation area\", Tuyen Quang Province, northern Viet Nam. BirdLife International in Indochina (unpublished). Ha Noi. 81; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Robson, C. R., Eames, J. C., Nguyen CU and Truong Van La. 1993. Birds recorded during the third BirdLife/Forest Birds Working Group expedition in Viet Nam. Forktail: 9: 89-120; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Robson, C. R., Eames, J. C., Wolstencroft, J. A., Nguyen Cu and Truong Van La. 1989. Recent records of birds from Viet Nam. Forktail: 5: 71-98; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.; Tordoff, A., Fanning, E. and Grindley, M (eds.) 2000. Ben En National Park. Frontier Vietnam. Hanoi. 99","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Spilornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66337,"full_name":"Terathopius ecaudatus","author_year":"(Daudin, 1800)","common_names":[{"lang":"English","names":"Bateleur","convention_language":true,"id":null},{"lang":"French","names":"Aigle bateleur","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Elleström, O., Engelbrecht, C., Grandin, B., Erling, J., Kjellen, N. Nordin, J., Sjölinder, B.-E., Stemme, S. and Zetterström, D. 2003. Cameroon 2003. Accessed at \u003Cwww.pheromone.ekol.lu.se/Cameroon03.pdf\u003E, 09/2005 Unpublished. ; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, J. M. 1955. The first occurrence of the Bateleur and Red Kite in Iraq. Bulletin of the British Ornithologists' Club: 75: 59-60.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Ottosson, U. 1993. An observation of Bateleur \u003Ci\u003ETerathopius ecaudatus\u003C/i\u003E in northern Tunisia. Bulletin of the British Ornithologists' Club: 113: 62-63.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Terathopius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66339,"full_name":"Sarcogyps calvus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Red-headed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Goes, F. 1999. Notes on selected bird species in Cambodia. Forktail: 15: 25-27.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; Round, P. D. 1988. Resident forest birds in Thailand: their status and conservation. International Council for Bird Preservation (Monograph No. 2). Cambridge, U.K.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Sarcogyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66341,"full_name":"Trigonoceps occipitalis","author_year":"(Burchell, 1824)","common_names":[{"lang":"English","names":"White-headed Vulture","convention_language":true,"id":null},{"lang":"French","names":"Vautour à tête blanche","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Borrow, N. and Demey, R. 2004. Field guide to the birds of western Africa. Christopher Helm. London, United Kingdom.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mackworth-Praed, C.W. and Grant, C.C.H.B. 1970. African handbook of birds, Series III, Volume I: Birds of west central and western Africa. Longman. London, United Kingdom.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. 1982. More bird records from the Republic of Togo. Malimbus: 4: 55-56.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Trigonoceps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66345,"full_name":"Necrosyrtes monachus","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Hooded Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Holyoak, D. T. and Seddon, M. B. 1990. Distributional notes on the birds of Benin. Malimbus: 11: 128-134.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Holyoak, D. T. and Seddon, M. B. 1989. Distributional notes on the birds of Burkina Faso. Bulletin of the British Ornithologists' Club: 109: 205-216.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Mahé, E. 1988. Contribution à la liste des oiseaux de Parc National de la Bénoué Nord, Cameroun. Malimbus: 10: 218-221; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1965. A third contribution to the ecology of the British Cameroons. Ibis: 107: 60-94, 230-246; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Louette, M. 1988. Additions and corrections to the avifauna of Zaire (2). Bulletin of the British Ornithologists' Club: 108: 43-50.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bournonville, D. de. 1967. Notes d'ornithologie guineenne. Gerfaut: 57: 145-158.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hollom, P. A. D., Porter, R. F., Christensen, S. and Willis, I. 1988. Birds of the Middle East and North Africa. T. and A. D. Poyser. Calton.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; De Roo, A., De Vree, F. and Verheyen, W. 1969. Contribution à l'ornithologie de la République du Togo. Revue de Zoologie et de Botanique Africaines: 89: 200-207.; De Roo, A., Hulselmans, J. and Verheyen, W. 1971. Contribution à l'ornithologie de la République du Togo. 3. Oiseaux récoltés par la deuxième Mission zoologique belge. Revue de Zoologie et de Botanique Africaines: 83: 84-94.; Douaud, J. 1955. Les oiseaux du Dahomey et du Niger. Notes de voyage. L'Oiseau et R.f.O.: 25: 295-307.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1891. Bericht über die October-Sitzung. Journal für Ornithologie: 39: 434-437.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Necrosyrtes","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":66350,"full_name":"Ictinia plumbea","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Plumbeous Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Stiles, F. G., Rosselli, L. and Bohórquez, C. I. 1999. New and noteworthy records of birds from the middle Magdalena valley of Colombia. Bulletin of the British Ornithologists' Club: 119: 113-129.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66351,"full_name":"Ictinia mississippiensis","author_year":"(Wilson, 1811)","common_names":[{"lang":"English","names":"Mississippi Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Jones, H. L., Balderamos, P., Caulfield, J., Caulfield, A., Crawford, G., Donegan, T. M., McRae, E., Meadows, M., Muschamp, M., Saqui, P. et al. 2002. Fourteen new bird species for Belize. Cotinga: 17: 33-42.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wingate, D. B. 2002. Mississippi Kite - new record for Bermuda. Bermuda Audubon Soc. Newsletter: 13: 2-3.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.; Shaw, D. and Maxwell, T. C. 1988. First record of the Mississippi Kite for Bolivia. Journal of Raptor Research: 22: 90.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Kirwan, G. M., Mazar Barnett, J., Vasconcelos, M. F., Raposo, M. A., D'Angelo Neto, S. and Roesler, I. 2004. Further comments on the avifauna of the middle São Francisco Valley, Minas Gerais, Brazil. Bulletin of the British Ornithologists' Club: 124: 207-220.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Burke, P., Kirkconnell, A. and Whitehouse, S. M. 2000. Franklin's Gull \u003Ci\u003ELarus pipixcan\u003C/i\u003E and Mississippi Kite \u003Ci\u003EIctinia mississippiensis\u003C/i\u003E new to Cuba. Cotinga: 14: 101-102.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Ruelas Inzunza, E., Goodrich, L.J., Hoffman, S.W. 2010. North American population estimates of waterbirds, vulvures and hawks from migration counts in Veracruz, México. Bird Conservation International: 20: 124-133.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Wiedenfeld, D. A., Morales M., J. and Lezama L., M. 2001. Sight records of new species for Nicaragua and noteworthy records on range and occurrence. Cotinga: 15: 53-57.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66353,"full_name":"Harpagus diodon","author_year":"(Temminck, 1823)","common_names":[{"lang":"English","names":"Rufous-thighed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Meyer de Schauensee, R. 1982. A guide to the birds of South America. Academy of Natural Sciences. Philadelphia.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 2003. Birds of Venezuela. Christopher Helm. London.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Harpagus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66360,"full_name":"Elanus leucurus","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-tailed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Sarasola, J.H., Santillan, M.A. and Galmes, M.A. 2007. Comparison of food habits and prey selection of the white-tailed kite, \u003Ci\u003EElanus leucurus\u003C/i\u003E, between natural and disturbed areas in central Argentina. Studies on Neotropical Fauna and Environment: 42: 85-91.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Voous, K. H. 1983. Birds of the Netherlands Antilles. De Walburg Pers. Zutphen.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Eduardo, C., Carvalho, A. and Marini, M.A. 2007. Distribution patterns of diurnal raptors in open and forested habitats in south-eastern Brazil and the effects of urbanization. Bird Conservation International: 17: 367-380.; Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.; Smith, D. W. and Ireland, J. 1992. First record of the Black-shouldered Kite for Canada. Western Birds: 23: 177-178.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; Howell, S. N. G. and Webb, S. 1995. Noteworthy bird observations from Chile. Bulletin of the British Ornithologists' Club: 115: 57-66.; Jaksic, F. M. and Jimenez, J. E. 1986. Conservation status of raptors in Chile. Birds of Prey Bulletin: 3: 95-104.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Salaman, P., Donegan, T. M. and Cuervo, A. M. 2002. New distributional bird records from Serrania de San Lucas and adjacent Central Cordillera of Colombia. Bulletin of the British Ornithologists' Club: 122: 285-303.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R. S. and Greenfield, P. J. 2001. The birds of Ecuador, status, distribution and taxonomy. Christopher Helm. London.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Wendelken, P. W. and Martin, R. F. 1989. Recent data on the distribution of birds in Guatemala, 2. Bulletin of the British Ornithologists' Club: 109: 31-36.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1992. New and noteworthy bird records from Guatemala and Honduras. Bulletin of the British Ornithologists' Club: 112: 42-49.; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1994. Additional information on the birds of Guerrero, Mexico. Bulletin of the British Ornithologists' Club: 114: 232-243.; Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.; Urbina-Torres, F. 2000. New distributional information of birds from the State of Morelos, Mexico. Bulletin of the British Ornithologists's Club: 120: 8-15.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Elanus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66368,"full_name":"Elanoides forficatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Swallow-tailed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2004. First records of Little Egret, Green-winged Teal, Swallow-tailed Kite, Tennessee Warbler, and Red-breasted Blackbird from Aruba. North American Birds: 57: 559-561.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.; Strewe, R. and Navarro, C. 2004. New and noteworthy records of birds from the Sierra Nevada de Santa Marta region, north-eastern Colombia. Bulletin of the British Ornithologists' Club: 124: 38-51.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.; Tebb, G. 2008. The birds of La Gamba. Stapfia: 88: 353-380.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Downer, A. and Sutton, R. 1990. Birds of Jamaica: a photographic field guide. Cambridge University Press. Cambridge.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Capper, D. R., Clay, R. P., Madroño N., A., Barnett, J. M., Burfield, I. J., Esquivel, E. Z., Kennedy, C. P., Perrens, M. and Pople, R. G. 2001. First records, noteworthy observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 121: 23-37.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"Etcheberry, R. 1982. Les oiseaux de Saint-Pierre et Miquelon. ONC. Paris.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"Arballo, E. and Cravino, J. L. 1999. Aves del Uruguay. Manual Ornitológico/Handbook of the birds of Uruguay, Vol. 1. Editorial Hemisterio sur, S.R.L. Montevideo.; Claramunt, S. and Cuello, J. P. 2004. Diversidad de la biota Uruguaya. Anales Museo Nacional de Historia Natural y Antropologia: 10(6): 1-31.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.; Willard, D. E., Foster, M. S., Barrowclough, G. F., Dickerman, R. W., Cannell, P. F., Coats, S. L., Cracraft, J. L. and O'Neill, J. P. 1991. The birds of Cerro de la Neblina, Territorio Federal Amazonas, Venezuela. Fieldiana Zoology: 66: 80.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Elanoides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66377,"full_name":"Chondrohierax uncinatus","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Hook-billed Kite","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Herzog, S. K., Fjeldsa, J., Kessler, M. and Balderrama, J. A. 1999. Ornithological surveys in the Cordillera Cocapata, depto. Cochabamba, Bolivia, a transition zone between humid and dry intermontane Andean habitats. Bulletin of the British Ornithologists' Club: 119: 162-177.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Hilty, S. and Brown, W. L. 1986. A guide to the birds of Colombia. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Garrido, O. H. and Kirkconnell, A. 2000. Birds of Cuba. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Tostain, O., Dujardin, J. L., Erard, C. and Thiollay, J.-M. 1992. Les oiseaux de Guyane.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Raffaele, H., Wiley, J., Garrido, O., Keith, A. and Raffaele, J. 1998. Birds of the West Indies.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Braun, M. J., Finch, D. W., Robbins, M. B. and Schmidt, B. K. 2000. A field checklist of the birds of Guyana. Publication 41 of the Biological Diversity of the Guianas Program. Smithonian Institution. Washington, D. C.; Snyder, D. E. 1966. The birds of Guyana. Peabody Museum. Salem.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Monroe, B. L. Jr. 1968. A distributional survey of the birds of Honduras. Ornithological Monographs: 7: 457 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Howell, T.R. 2010. Thomas R. Howell's check-list of the birds of Nicaragua as of 1993. Ornithological Monographs: 68: 1-108.; Martínez-Sánchez, J. C. 2007. Lista patrón de las aves de Nicaragua; Con información de nuevos registros, distribución y localidades donde observar aves. Alianza para las Areas Silvestres. Granada, Nicaragua.; Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Ridgely, R. S. and Gwynne, J. A. 1989. A guide to the birds of Panama with Costa Rica, Nicaragua, and Honduras. 2nd edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Ericson, P. G. P. and Amarillo, L. A. 1997. First observations and new distributional data for birds in Paraguay. Bulletin of the British Ornithologists' Club: 117: 60-67.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.; Madroño N., A. and Esquivel, E. Z. 1997. Noteworthy records and range extensions of some birds from the Reserva Natural del Bosque Mbaracayú (Mbaracayú Forest Nature Reserve), Departamento de Canindeyú, Paraguay. Bulletin of the British Ornithologists' Club: 117: 166-176.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.; Walker, B. 2002. Observations from the Tumbes Reserved Zone, dpto. Tumbes, with notes on some new taxa for Peru and a checklist of the area. Cotinga: 18: 37-43.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Haverschmidt, F. and Mees, G. F. 1995. The birds of Suriname. Second edition.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"ffrench, R. and Kenefick, M. 2003. Verification of rare bird records from Trinidad and Tobago. Cotinga: 19: 75-79.; ffrench, R. P. 1991. A guide to the birds of Trinidad and Tobago. 4th edition. Livingston Publishing. Wynnewood, Pennsylvania.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Hilty, S. L. 1999. Three bird species new to Venezuela and notes on the behaviour and distribution of other poorly known species. Bulletin of the British Ornithologists' Club: 119: 220-235.; Meyer de Schauensee, R. and Phelps, W. H. 1978. A guide to the birds of Venezuela. Princeton University Press. Princeton, New Jersey.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Chondrohierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66381,"full_name":"Gypohierax angolensis","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Palm-nut Vulture","convention_language":true,"id":null},{"lang":"French","names":"Vautour palmiste","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Langeveld, M. J. 2001. Birds of the central western Atacora, north west Benin. Unpublished. ; Waltert, M. and Mühlenberg, M. 1999. Notes on the avifauna of the Noyau Central, Forêt Classée de la Lama, Republic of Benin. Malimbus: 21: 82-92.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bowden, C. G. R. 2001. The birds of Mount Kupe, southwest Cameroon. Malimbus: 23: 13-44.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Zoological survey of small mammals, birds, frogs and butterflies in the Bakossi and Kupe Mountains, Cameroon. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Survey of birds and amphibians on Mt Mananguba, Mt Nlonako, north Bakossi and around Kupe in 1998-99. Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fishpool, L. D. C. and Evans, M. I (eds.) 2001. Important bird areas in Africa and associated islands: priority sites for conservation. Conservation Series No. 11 UK Pisces Publication and BirdLife International. Newbury and Cambridge.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Languy, M. and Motombe, F. N. 2003. Birds of Takamanda Forest Reserve, Cameroon. Pp. 95-110 in: Comiskey, J. A., Sunderland, T. C. H. and Sunderland-Groves, J. L. (eds.) Takamanda: the biodiversity of an African rainforest Charter Printing. Alexandria (VA).; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Rodewald, P. G., Dejaifve, P.-A. and Green, A. A. 1994. The birds of Korup National Park and Korup Project Area, Southwest Province, Cameroon. Bird Conservation International: 4: 1-68.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Serle, W. 1950. A contribution to the ornithology of the British Cameroons. Ibis: 92: 343-376, 602-638.; Serle, W. 1954. A second contribution to the ornithology of the British Cameroons. Ibis: 96: 47-80; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Smith, T. B., Rasmussen, K. K., Whitney, K. D. and Fogiel, M. K. 1996. A preliminary survey of birds from the Lac Lobeke Reserve, south-eastern Cameroon. Bird Conservation International: 6: 167-174.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Georgiev, A. 2003. Democratic Republic of the Congo, November 24th 2002 - June 26th 2003. http://www.birdtours.co.uk . ; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Reichenow, A. 1910. Uber eine Vogelsammlung vom Rio Benito in Spanischen Guinea. Mitteilungen aus dem Zoologischen Museum in Berlin: 5: 71-87.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Bouet, G. 1955. Oiseaux de'l Afrique tropicale. Faune de'l Union Française XVI-XVIII ORSTOM. Paris.; Demey, R. and Rainey, H. J. 2004. The birds of Pic de Fon Forest Reserve, Guinea: a preliminary survey. Bulletin of the African Bird Club: 11: 126-138.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Hayman, P. V., Prangley, M., Barnett, A. and Diawara, D. 1995. The birds of the Kounounkan Massif, Guinea. Malimbus: 17: 53-62.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1980. Bird records from the Republic of Togo. Malimbus: 2: 112-120.; Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Reichenow, A. 1892. Zur vogelfauna von Togoland. Journal für Ornithologie: 40: 233-236.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gypohierax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66387,"full_name":"Haliastur indus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Brahminy Kite","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Duckworth, J. W. and Hedges, S. 1998. Bird records from Cambodia in 1997, including records of sixteen species new for the country. Forktail: 14: 29-36.; Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Smythies, B. E. 1981. The birds of Borneo. 3rd edition. The Sabah Society and the Malayan Nature Society. Malaysia.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.; Kratter, A. W., Steadman, D. W., Smith, C. E., Filardi, C. E. and Webb, H. P. 2001. Avifauna of a lowland forest site on Isabel, Solomon Islands. Auk: 118: 472-483.; Olsen, J. 1997. Notes on Sanford's sea eagle \u003Ci\u003EHaliaeetus\u003C/i\u003Esanfordi_ and other raptors in the Solomon Islands. Australian Bird Watcher: 17: 81-85.; Rothschild, W. and Hartert, E. 1908. The birds of Vella Lavella, Solomon Islands. Novitates Zoology: XV: 351-358.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.; Thiollay, J.-M. 1998. Distribution patterns and insular biogeography of south Asian raptors. Journal of Biogeography: 25: 57-72.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Mayr, E. 1944. The birds of Timor and Sumba. Bulletin of the American Museum of Natural History: 83: 127-194.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Dymond, J. N. 1998. Birds in Vietnam in December 1993 and December 1994. Forktail: 13: 7-12.; Eames, J. C. and Ericson, P. G. P. 1996. The Björkegren expeditions to French Indochina: a collection of birds from Vietnam and Cambodia. Natural History Bulletin of the Siam Society: 44: 75-111; Eames, J. C. and Robson, C. R. 1992. Vietnam Forest Project forest bird surveys 1991. International Council for Bird Preservation. Cambridge (UK). 69; Le Xuan Canh, Pham Trong Anh, Duckworth, J. W., Vu Ngoc Thanh and Vuthy, L. 1997. A survey of large mammals in Dak Lak Province, Vietnam. Large Mammal Conservation in Vietnam - A collaborative project between WWF and IUCN. Hanoi. 104; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.; Robson, C. R., Eames, J. C., Nguyen Cu and Truong Van La. 1993. Further records of birds from Viet Nam. Forktail: 8: 25-54; Scott, D. A. 1988. Bird observations in Vietnam: 7-21 March 1988. Unpublished. 38-41","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Haliastur","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66494,"full_name":"Kobus kob","author_year":"(Erxleben, 1777)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Kobus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66497,"full_name":"Eudorcas rufifrons","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Red-fronted Gazelle","convention_language":true,"id":null},{"lang":"French","names":"Gazelle à front roux","convention_language":true,"id":null},{"lang":"Spanish","names":"Gacela de frente roja","convention_language":true,"id":null}],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Eudorcas","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66499,"full_name":"Cardellina canadensis","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Canada Warbler","convention_language":true,"id":null},{"lang":"Spanish","names":"Reinita Canadiense","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Cardellina","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66502,"full_name":"Alopias superciliosus","author_year":"Lowe, 1841","common_names":[{"lang":"English","names":"Bigeye Thresher","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Bard, F., Josse, E. and Stein, A. 1998. \u003Ci\u003EBigeye tuna (Thunnus obesus) and the tuna fisheries of French Polynesia. California, United States: Inter-american Tropical Tuna Commission\u003C/i\u003E, 1-171.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Megalofonou, P., Damalas, D. and Yannopoulos, C. (2005). Composition and abundance of pelagic shark by-catch in the eastern Mediterranean Sea. \u003Ci\u003ECybium\u003C/i\u003E, 29(2): 135-140.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Trejo, T. 2005. \u003Ci\u003EGlobal phylogeography of thresher sharks (Alopias spp.) inferred from mitochondrial DNA control region sequences\u003C/i\u003E. Masters in Marine Science, California State University Monterey Bay. United States.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Kleitou, P., Antoniou, C., Giovos, I. and Kletou, D. 2017. How accurately are we describing the longline bycatch? The case of the ‘rare’ shark \u003Ci\u003EAlopias superciliosus\u003Ci\u003E in eastern Mediterranean. \u003Ci\u003EInternational Journal of Fisheries and Aquatic Studies\u003C/i\u003E 2017, 5(3): 375-378.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Cao, D., Song, L., Zhang, Y., Lv, K. and Hu, Z. 2011. Environmental preferences of \u003Ci\u003EAlopias superciliosus\u003C/i\u003E and \u003Ci\u003EAlopias vulpinus\u003C/i\u003E in waters near Marshall Islands. \u003Ci\u003ENew Zealand Journal of Marine and Freshwater Research\u003C/i\u003E, 45(1): 103-119.; Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kabasakal, H. and Karhan, S. 2008. On the occurrence of the bigeye thresher shark, Alopias superciliosus (Chondrichthyes: Alopiidae), in Turkish waters. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E1: 1-3.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66503,"full_name":"Alopias vulpinus","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"English","names":"Common Thresher","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Fischer, W. and Bianchi, G. 1984. \u003Ci\u003EFAO species identification sheets for fishery purposes. Western Indian Ocean (Fishing Area 51)\u003C/i\u003E. Food and Agricultural Organization of the United Nations, Rome.; Fischer, W. and Bianchi, G. 1984. \u003Ci\u003EFAO species identification sheets for fishery purposes. Western Indian Ocean (Fishing Area 51)\u003C/i\u003E. Food and Agricultural Organization of the United Nations, Rome.; NOAA. 2015. Endangered and threatened wildlife 90-day finding on a petition to list the common thresher shark as threatened or endangered under the endangered species act. \u003Ci\u003EFederal Register\u003C/i\u003E, 80(41): 46–53.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.; NOAA. 2015. Endangered and threatened wildlife 90-day finding on a petition to list the common thresher shark as threatened or endangered under the endangered species act. \u003Ci\u003EFederal Register\u003C/i\u003E, 80(41): 46–53.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Gonzalez-Pestana, A., Kouri J., C. and Velez-Zuazo, X. 2014. Shark fisheries in the Southeast Pacific: A 61-year analysis from Peru. \u003Ci\u003EF1000Research\u003C/i\u003E, 3:1–16.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66504,"full_name":"Alopias pelagicus","author_year":"Nakamura, 1935","common_names":[{"lang":"English","names":"Pelagic Thresher Shark","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Rojas, J., Campos, M., Segura, A., Mug, M. and Rodríguez, O. 2000. Shark fisheries in Central America a review and update. \u003Ci\u003EUniciencia\u003C/i\u003E, 17(1): 49-56.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Khalaf, M. and Zajonz, U. 2007. \u003Ci\u003EFourteen additional fish species recorded from below 150 m depth in the Gulf of Aqaba, including Liopropoma lunulatum (Pisces: Serranidae), new record for the Red Sea\u003C/i\u003E. Fauna of Arabia, 23: 421–433.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R.C., Adam, M.S. and Saleem, M.R. 2011. Shark Longline Fishery in the Northern Maldives. \u003Ci\u003EIOTC Proceedings 2011\u003C/i\u003E, 27(7): 1–24.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 2001. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Volume 2. Bullhead, mackerel and carpet sharks (Heterodontformes, Lamniformes and Orectolobiformes). FAO Species Catalogue for Fishery Purposes. No. 1, Vol. 2. Rome: FAO.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Cornejo, R., Velez-Zuazo, X., Gonzalez-Pestana, A., Kouri, C. and Mucientes, G.R. 2015. An updated checklist of Chondrichthyes from the southeast Pacific off Peru. Check List, 11(6): 1–7.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Purivirojkul, W., Chaidee, P. and Thapanand-Chaidee, T. 2009. Parasites of deep-sea sharks from the Andaman sea with six new records of parasites in Thailand. \u003Ci\u003EKasetsart Journal - Natural Science\u003C/i\u003E, 43(5): 93–99.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Lamniformes","class_name":"Elasmobranchii","family_name":"Alopiidae","genus_name":"Alopias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66508,"full_name":"Carcharhinus falciformis","author_year":"(Müller \u0026 Henle, 1839)","common_names":[{"lang":"English","names":"Silky Shark","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Bonfil, R. 2008. The biology and ecology of the silky shark, \u003Ci\u003ECarcharhinus falciformis\u003C/i\u003E. In: Camhi, M., Pikitch, E. and Babcock, E. (Eds.). Sharks of the Open Ocean, Biology, Fisheries and Conservation. Blackwell Publishing Ltd., Oxford, UK. 114–127.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66511,"full_name":"Mobula mobular","author_year":"(Bonnaterre, 1788)","common_names":[{"lang":"English","names":"Giant Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hanel, R. and John, H.C. 2015. A revised checklist of Cape Verde Islands sea fishes. \u003Ci\u003EJournal of Applied Ichthology\u003C/i\u003E, 31: 135–169.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Migdalski, E.C. and Fichter, G.S. 1989. \u003Ci\u003EThe Fresh and Saltwater Fishes of the World\u003C/i\u003E. Greenwich House, Hong Kong. 316 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V, Bineesh, K.K., Gopalakrishnan, A., Jena, J.K., Basheer, V.S. and Pillai, N.G.K. 2014. Checklist of Chondrichthyans in Indian waters. \u003Ci\u003EJournal of the Marine Biological Association of India\u003C/i\u003E, 56(1): 109–120.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"UNEP-MAP-RAC/SPA 2014. \u003Ci\u003EStatus and Conservation of Cetaceans in the Adriatic Sea. By D. Holcer, C.M. Fortuna \u0026 P. C. Mackelworth. Draft internal report for the purposes of the Mediterranean Regional Workshop to Facilitate the Description of Ecologically or Biologically Significant Marine Areas.\u003C/i\u003E Malaga, Spain. 70 pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Akyol, O., Erdem, M., Unal, V. and Ceyhan, T. 2005. Investigations on Drift-Net Fishery for Swordfish (\u003Ci\u003EXiphias gladius L.\u003C/i\u003E) in the Aegean Sea. \u003Ci\u003ETurkish Journal of Veterinary and Animal Sciences\u003C/i\u003E, 29: 1225–1231.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Raja diabolus","author_year":"Shaw, 1804"},{"full_name":"Raja giorna","author_year":"Lacépède, 1802"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula diabolus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula diabolus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66512,"full_name":"Mobula japanica","author_year":"(Müller \u0026 Henle, 1841)","common_names":[{"lang":"English","names":"Spinetail Mobula, Spinetail Devil Ray, Japanese Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Manta Aguillat","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta De Espina, Mante De Aguijón","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula rancureli\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EMobula rancureli\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66513,"full_name":"Mobula thurstoni","author_year":"(Lloyd, 1908)","common_names":[{"lang":"English","names":"Bentfin Devil Ray, Lesser Devil Ray, Smoothtail Devil Ray, Smoothtail Mobula, Thurton’s Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante Vampire","convention_language":true,"id":null},{"lang":"Spanish","names":"Chupasangre, Chupa Sangre, Diablo, Diablo Chupasangre, Diablo Manta, Manta, Manta Diablo, Manta Raya, Muciélago","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Navia, A.F., Mejía-falla, P.A. and Hleap, J.S. 2016. Zoogeography of Elasmobranchs in the Colombian Pacific Ocean and Caribbean Sea. \u003Ci\u003ENeotropical Ichthyology\u003C/i\u003E, 14(2): 1–11.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Notarbartolo Di Sciara, G. 1987. A revisionary study of the genus \u003Ci\u003EMobula\u003C/i\u003E (Rafinesque, 1810) (\u003Ci\u003EChondrichthyes: Mobulidae\u003C/i\u003E) with the description of a new species of \u003Ci\u003EMobulidae\u003Ci/\u003E. \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E, 91: 1–91.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bustamante, C., Couturier, L.I.E. and Bennett, M.B. 2012. First record of \u003Ci\u003EMobula japanica (Rajiformes: Myliobatidae\u003C/i\u003E) from the south-eastern Pacific Ocean. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E, 5(48): 57–60.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Migdalski, E.C. and Fichter, G.S. 1989. \u003Ci\u003EThe Fresh and Saltwater Fishes of the World\u003C/i\u003E. Greenwich House, Hong Kong. 316 pp.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.; Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66514,"full_name":"Mobula tarapacana","author_year":"(Philippi, 1892)","common_names":[{"lang":"English","names":"Box Ray, Chilean Devil Ray, Devil Ray, Greater Guinean Mobula, Sicklefin Devil Ray, Spiny Mobula","convention_language":true,"id":null},{"lang":"French","names":"Diable Géant De Guinée, Mante Chilienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Diabolo Gigante De Guinea, Manta Cornuada, Manta Cornuda, Manta Raya, Raya Cornuda, Vaquetilla","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Bonfil, R. and Abdallah, M. 2004. \u003Ci\u003EField Identification Guide to the Sharks and Rays of the Red Sea and Gulf of Aden\u003C/i\u003E. FAO, Rome. 71 pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Bonfil, R. and Abdallah, M. 2004. \u003Ci\u003EField Identification Guide to the Sharks and Rays of the Red Sea and Gulf of Aden\u003C/i\u003E. FAO, Rome. 71 pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.; Lawson, J.M., Walls, R.H.L., Fordham, S. V, Heupel, R., Stevens, G., Fernando, D., Budziak, A., Simpfendorfer, C.A., Davidson, L.N.K., Ender, I. et al. 2016. \u003Ci\u003ESympathy for the devil : A conservation strategy for devil and manta rays\u003C/i\u003E. PeerJ PrePrints, 1–41.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Notarbartolo di Sciara, G., Fernando, D., Adnet, S., Cappetta, H. and Jabado, R. 2016. Devil rays (\u003Ci\u003EChondrichthyes: Mobula\u003C/i\u003E) of the Arabian Seas, with a redescription of \u003Ci\u003EMobula kuhlii\u003C/i\u003E (Valenciennes in Müller and Henle, 1841). \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E, 23.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Bustamante, C., Couturier, L.I.E. and Bennett, M.B. 2012. First record of \u003Ci\u003EMobula japanica (Rajiformes: Myliobatidae\u003C/i\u003E) from the south-eastern Pacific Ocean. \u003Ci\u003EMarine Biodiversity Records\u003C/i\u003E, 5(48): 57–60.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"de Boer, M.N., Saulino, J.T., Lewis, T.P. and Notarbartolo-di-Sciara, G. 2015. New records of whale shark (\u003Ci\u003ERhincodon typus\u003C/i\u003E), giant manta ray (\u003Ci\u003EManta birostris\u003C/i\u003E) and Chilean devil ray (\u003Ci\u003EMobula tarapacana\u003C/i\u003E) for Suriname.\u003Ci\u003E Marine Biodiversity Records\u003C/i\u003E, 8(10): 1–8.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66515,"full_name":"Mobula eregoodootenkee","author_year":"(Bleeker, 1859)","common_names":[{"lang":"English","names":"Pygmy Devil Ray, Longhorned Devil Ray","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66516,"full_name":"Mobula kuhlii","author_year":"(Müller \u0026 Henle, 1841)","common_names":[{"lang":"English","names":"Shortfin Devil Ray, Lesser Devil Ray, Pygmy Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Petit Diable","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66517,"full_name":"Mobula hypostoma","author_year":"(Bancroft, 1831)","common_names":[{"lang":"English","names":"Atlantic Devil Ray, Lesser Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Diable Géant","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta del Golfo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66518,"full_name":"Mobula rochebrunei","author_year":"(Vaillant, 1879)","common_names":[{"lang":"English","names":"Lesser Guinean Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Petit Diable de Guinée","convention_language":true,"id":null},{"lang":"Spanish","names":"Diablito de Guinea","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66519,"full_name":"Mobula munkiana","author_year":"(Notarbartolo-di-Sciara, 1987)","common_names":[{"lang":"English","names":"Smoothtail Mobula, Pygmy Devil Ray, Munk’s Devil Ray","convention_language":true,"id":null},{"lang":"French","names":"Mante De Munk","convention_language":true,"id":null},{"lang":"Spanish","names":"Manta Raya, Diabolo Manta, Tortilla, Manta Violácea","convention_language":true,"id":null}],"distributions":[{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Mobula","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66522,"full_name":"Ursus maritimus","author_year":"Phipps, 1774","common_names":[{"lang":"English","names":"Polar Bear","convention_language":true,"id":null},{"lang":"French","names":"Ours blanc","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Taylor, M.K., Laake, J., McLoughlin, P.D., Cluff, H.D. and Messier, F. 2009. Demography and population viability of polar bears in the Gulf of Boothia, Nunavut. Marine Mammal Science: 25: 778-796.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"Born, E. W. and Rosing Asuid, A. 1989. Isbjornen (\u003Ci\u003EUrsus maritimus\u003C/i\u003E) i Gronland: en oversigt. Gronlands Hjemmestyre Miljo-og Naturforvaltring Technical Report . 126 pp.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Aars, J., Marques, T.A., Buckland, S.T., Anderson, M., Belikov, S., Boltunov, A. and Wiig, . 2009. Estimating the Barents Sea polar bear subpopulation size. Marine Mammal Science: 25: 35-52.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Aars, J., Marques, T.A., Buckland, S.T., Anderson, M., Belikov, S., Boltunov, A. and Wiig, . 2009. Estimating the Barents Sea polar bear subpopulation size. Marine Mammal Science: 25: 35-52.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Spiridonov, V.A., Gavrilo, M.V. and Belikov, S.E. 2011. Species diversity of vertebrate animals. In: Spiridonov, V.A., Gavrilo, M.V., Krasnova, E.D. \u0026 Nikolaeva, N.G. (Eds.) Atlas of marine coastal biological diversity of the Russian Arctic. WWF Russia. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Ursidae","genus_name":"Ursus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66526,"full_name":"Anguilla anguilla","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Weed eel, Common eel, River eel, European eel","convention_language":true,"id":null},{"lang":"French","names":"Civelle, Leptocéphale, Anguille européenne, Angèle, Anguille d'Europe, Anguille jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Anguila europea, Anguila","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Has-Schn, E. Bogut, I. Rajkovi?, V. Bogut, S. ?a?i?, M. and Horvati?, J. 2008. Heavy metal distribution in tissues of six fish species included in human diet, inhabiting freshwaters of the Nature Park “Hutovo Blato” (Bosnia and Herzegovina). \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 54: 75-83; Has-Schön, E. Bogut, I. Rajković, V. Bogut, S. Cacić, M. and Horvatić, J. 2008. Heavy metal distribution in tissues of six fish species included in human diet, inhabiting freshwaters of the Nature Park “Hutovo Blato” (Bosnia and Herzegovina). \u003Ci\u003EArchives of Environmental Contamination and Toxicology\u003C/i\u003E: 54: 75–83","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Dikov, T. and Zivkov, M. 2004. Abundance and biomass of fishes in the Veleka River, Bulgaria. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 81-86.; Dikov, T. and Zivkov, M. 2004. Abundance and biomass of fishes in the Veleka River, Bulgaria. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 53: 81–86.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Zogaris, S. Chatzinikolaou, Y. Koutsikos, N. Economou, A. N. Oikonomou, E. Michaelides, G. and Ferreira, M. T. 2012. Freshwater fish assemblages in Cyprus with emphasis on the effects of dams. \u003Ci\u003EActa Ichthyologica et Piscatoria\u003C/i\u003E42: 165-175.; Zogaris, S. Chatzinikolaou, Y. Koutsikos, N. Economou, A. N. Oikonomou, E. Michaelides, G. and Ferreira, M. T. 2012. Freshwater fish assemblages in Cyprus with emphasis on the effects of dams. \u003Ci\u003EActa Ichthyologica et Piscatoria\u003C/i\u003E42: 165–175.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Baruš, V. Moravec, F. an Prokeš, M. 1999. Anguillicolosis of the European eel (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E) in the Czech Republic. \u003Ci\u003ECzech Journal of Animal Science\u003C/i\u003E: 44: 423–431.; Baru, V. Moravec, F. and Proke, M. 1999. Anguillicolosis of the European eel (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E) in the Czech Republic. \u003Ci\u003ECzech Journal of Animal Science\u003C/i\u003E: 44: 423-431.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Pujolar, J.M., Jacobsen, M.W., Als, T.D., Frydenberg, J., Magnussen, E., Jnsson, B., Jiang, X., Cheng, L., Bekkevold, D., Maes, G.E. and Bernatchez, L., 2014. Assessing patterns of hybridization between North Atlantic eels using diagnostic single-nucleotide polymorphisms. \u003Ci\u003EHeredity\u003C/i\u003E, 112(6): 627.; Pujolar, J.M., Jacobsen, M.W., Als, T.D., Frydenberg, J., Magnussen, E., Jónsson, B., Jiang, X., Cheng, L., Bekkevold, D., Maes, G.E. and Bernatchez, L., 2014. Assessing patterns of hybridization between North Atlantic eels using diagnostic single-nucleotide polymorphisms. \u003Ci\u003EHeredity\u003C/i\u003E, 112(6): 627.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Tulonen, J. and Vuorinenb, P. J. 1996. Concentrations of PCBs and other organochlorine compounds in eels (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E, L.) of the Vanajavesi watercourse in southern Finland. \u003Ci\u003EThe Science of the Total Environment\u003C/i\u003E: 187: 11-18.; Tulonen, J. and Vuorinenb, P. J. 1996. Concentrations of PCBs and other organochlorine compounds in eels (\u003Ci\u003EAnguilla anguilla\u003C/i\u003E, L.) of the Vanajavesi watercourse in southern Finland. \u003Ci\u003EThe Science of the Total Environment\u003C/i\u003E: 187: 11–18.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Imbert, H., de Lavergne, S., Gayou, F., Rigaud, C. and Lambert, P. 2008. Evaluation of relative distance as new descriptor of yellow European eel spatial distribution. Ecology of Freshwater Fish: 17: 520-527.; Lasne,E. Acou, A., Vila-Gispert, A. and Laffaille, P. 2008. European eel distribution and body condition in a river floodplain: effect of longitudinal and lateral connectivity. Ecology of Freshwater Fish: 17: 567-576.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Ninua, N. and Japoshvili, B. 2008. Check list of fishes of Georgia. \u003Ci\u003EProceedings of the Institute of Zoology\u003C/i\u003E: 23: 163-176.; Ninua, N. and Japoshvili, B. 2008. Check list of fishes of Georgia. \u003Ci\u003EProceedings of the Institute of Zoology\u003C/i\u003E: 23: 163–176.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgoländer Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.; Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgoländer Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.; Tesch, F.W., 1998. Age and growth rates of North Atlantic eel larvae (\u003Ci\u003EAnguilla\u003C/i\u003E spp.), based on published length data. \u003Ci\u003EHelgolnder Meeresuntersuchungen\u003C/i\u003E, 52(1): 75.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Kristmundsson, A. and Helgason, S. 2007. Parasite communities of eels \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in freshwater and marine habitats in Iceland in comparison with other parasite communities of eels in Europe. \u003Ci\u003EFolia Parasitologica\u003C/i\u003E: 54: 141-53.; Kristmundsson, A. and Helgason, S. 2007. Parasite communities of eels \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in freshwater and marine habitats in Iceland in comparison with other parasite communities of eels in Europe. \u003Ci\u003EFolia Parasitologica\u003C/i\u003E: 54: 141–53.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"introduced","country_references":"Coad, B. W. 1980. Environmental change and its impact on the freshwater fishes of Iran. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 19: 51-80.; Coad, B. W. 1980. Environmental change and its impact on the freshwater fishes of Iran. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 19: 51–80.; Holčík, J. and Razavi, B.A. 1992. On some new or little known fishes from the Iranian coast of the Caspian Sea. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 41: 271–280.; Hol?k, J. and Razavi, B.A. 1992. On some new or little known fishes from the Iranian coast of the Caspian Sea. \u003Ci\u003EFolia Zoologica\u003C/i\u003E: 41: 271-280.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Yokouchi, K., Aoyama, J., Miller, M.J., McCarthy, T.K. and Tsukamoto, K. 2009. Depth distribution and biological characteristics of the European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E in Lough Ennell, Ireland. Journal of Fish Biology: 74: 857-871.","id":null},{"name":"Isle of Man (United Kingdom)","country":"Isle of Man (United Kingdom)","tags_list":"","country_references":"Barry, J., McHarg, K., Dodd, J.A. and Adams, C.E., 2015. Local scale, coastal currents influence recruitment to freshwater populations in the European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E: a case study from the Isle of Man. \u003Ci\u003EJournal of Fish Biology\u003C/i\u003E, 86(6): 1873-1880.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1-9.; Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1–9.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813-824.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813–824.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Ciccotti, E. Busilacchi, S. and Cataudella, S. 2000. Eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E (L.), in Italy: recruitment, fisheries and aquaculture. \u003Ci\u003EDana\u003C/i\u003E: 12: 7-15.; Ciccotti, E. Busilacchi, S. and Cataudella, S. 2000. Eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E (L.), in Italy: recruitment, fisheries and aquaculture. \u003Ci\u003EDana\u003C/i\u003E: 12: 7–15.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Japan","country":"Japan","tags_list":"introduced","country_references":"Ishikawa, T. and Tachihara, K., 2014. Introduction history of non-native freshwater fish in Okinawa-jima Island: ornamental aquarium fish pose the greatest risk for future invasions. \u003Ci\u003EIchthyological Research\u003C/i\u003E, 61(1): 17-26.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"introduced","country_references":"Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1-9.; Goren, M. and Ortal, R. 1999. Biogeography, diversity and conservation of the inland water fish communities in Israel. \u003Ci\u003EBiological Conservation\u003C/i\u003E: 89: 1–9.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813-824.; Roll, U. Dayan, T. Simberloff, D. and Goren, M. 2007. Characteristics of the introduced fish fauna of Israel.\u003Ci\u003EBiological Invasions\u003C/i\u003E: 9: 813–824.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"introduced","country_references":"Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Genc, E., Sangun, M.K., Dural, M., Can, M.F. and Altunhan, C. 2008. Element concentrations in the swimbladder parasite \u003Ci\u003EAnguillicola crassus\u003C/i\u003E (nematoda) and its host the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from Asi River (Hatay-Turkey).\u003Ci\u003EEnvironmental monitoring and assessment\u003C/i\u003E,141(1-3): 59-65.; Genc, E., Sangun, M.K., Dural, M., Can, M.F. and Altunhan, C. 2008. Element concentrations in the swimbladder parasite \u003Ci\u003EAnguillicola crassus\u003C/i\u003E (nematoda) and its host the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from Asi River (Hatay-Turkey). \u003Ci\u003EEnvironmental monitoring and assessment\u003C/i\u003E, 141(1-3): 59-65.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Al-Hassan, L.A. and El-Silini, O.A., 1999. Check-list of bony fishes collected from the Mediterranean coast of Benghazi, Libya. \u003Ci\u003ERevista de Biologia Marina y Oceanografia\u003C/i\u003E, 34(2): 291-301.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Lin, Y.-J., Loys, L., Shiao, J.-C., Iizuka, Y. and Tzeng, W.-N. 2007. Growth differences between naturally recruited and stocked European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from different habitats in Lithuania. Journal of Fish Biology: 71: 1773-1787.; Lin, Y.-J., Ložys, L., Shiao, J.-C., Iizuka, Y. and Tzeng, W.-N. 2007. Growth differences between naturally recruited and stocked European eel \u003Ci\u003EAnguilla anguilla\u003C/i\u003E from different habitats in Lithuania. Journal of Fish Biology: 71: 1773-1787.; Shiao, J.C., Loyzs, L., Iizuka, Y. andTzeng, W. N. 2006. Migratory patterns and contribution of stocking to the population of European eel in Lithuanian waters as indicated by otolith Sr:Ca ratios. Journal of Fish Biology: 69: 749.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Nijman, V., 2017. North Africa as a source for European eel following the 2010 EU CITES eel trade ban. \u003Ci\u003EMarine Policy\u003C/i\u003E, 85: 133-137.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Hegedis, A., Mickovic, B., Nikcevic, M., Damjanovic, I. and Andjus, R.K. 1998. Eels and mullets in coastal waters of Montenegro: basic ecological data. Iugoslav Physiology Pharmacology Acta: 34: 417-428.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"Silfvergrip, A. 2015. \u003Ci\u003Epers. comm.\u003C/i\u003E to UNEP-WCMC, 18 October 2015.; Simonovic, P.D. and Nikolic, V.P. 1996. Freshwater fish of Serbia: an annotated check list with some faunistic and zoogeographical considerations. \u003Ci\u003EBios\u003C/i\u003E, 4: 137-157.; Simonovic, P.D. and Nikolic, V.P. 1996. Freshwater fish of Serbia: an annotated check list with some faunistic and zoogeographical considerations. \u003Ci\u003EBios\u003C/i\u003E, 4: 137–157.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"introduced","country_references":"Horvth, J. Pekrik, L. Hajd, J. and Tome?ek, J. 2012. Fish diversity of the lowland stretches of Morava and Vh rivers (Danube drainage, Slovakia). \u003Ci\u003EPisces Hungarici\u003C/i\u003E: 6: 95-100.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Pov, M. 1996. The Red Data List of freshwater lampreys (Cyclostomata) and fish (Pisces) of Slovenia. In A. Kirchhofer \u0026 D. Hefti (Eds.), Conservation Of Endangered Freshwater Fish In Europe (pp. 63-72). Basel: Birkhuser.; Povž, M. 1996. The Red Data List of freshwater lampreys (Cyclostomata) and fish (Pisces) of Slovenia. In A. Kirchhofer \u0026 D. Hefti (Eds.), Conservation Of Endangered Freshwater Fish In Europe (pp. 63–72). Basel: Birkhäuser.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Saad, A. 2005. Checklist of bony fish collected from the coast of Syria. \u003Ci\u003ETurkish Journal of Fisheries and Aquatic Sciences\u003Ci\u003E: 5: 99-106.; Saad, A. 2005. Checklist of bony fish collected from the coast of Syria. \u003Ci\u003ETurkish Journal of Fisheries and Aquatic Sciences\u003Ci\u003E: 5: 99–106.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Akin, S. Buhan, E. Winemiller, K. O. and Yilmaz, H. 2005. Fish assemblage structure of Koycegiz Lagoon-Estuary, Turkey: spatial and temporal distribution patterns in relation to environmental variation. \u003Ci\u003EEstuarine, Coastal and Shelf Science\u003C/i\u003E: 64: 671-684.; Akin, S. Buhan, E. Winemiller, K. O. and Yilmaz, H. 2005. Fish assemblage structure of Koycegiz Lagoon–Estuary, Turkey: spatial and temporal distribution patterns in relation to environmental variation. \u003Ci\u003EEstuarine, Coastal and Shelf Science\u003C/i\u003E: 64: 671–684.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"introduced","country_references":"Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.; Hickley, P., Muchiri, M., Britton, J.R. and Boar, R.R., 2008. Economic gain versus ecological damage from the introduction of non-native freshwater fish: case studies from Kenya. \u003Ci\u003EThe Open Fish Science Journal\u003C/i\u003E, 1: 36-46.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.; Pavlov, P.I. 1980. Ribi. Fauna Ukrainy. Naukova Dumka. Kiiv.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365-376.; Dekker, W. 2003. Did lack of spawners cause the collapse of the European eel, \u003Ci\u003EAnguilla anguilla\u003C/i\u003E? \u003Ci\u003EFisheries Management and Ecology\u003C/i\u003E: 10: 365–376.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anguilliformes","class_name":"Actinopterygii","family_name":"Anguillidae","genus_name":"Anguilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":66529,"full_name":"Anoxypristis cuspidata","author_year":"(Latham, 1794)","common_names":[{"lang":"English","names":"Narrow Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Manjaji, B. M. 2002. Elasmobranchs recorded from rivers and estuaries in Sabah. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 194-198.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taniuchi, T. 2002. Outline of field surveys for freshwater elasmobranchs conducted by a Japanese research team. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 181-184.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Harrison, L.R. and Dulvy, N.K. (eds). 2014. Sawfish: A global strategy for conservation. IUCN Species Survival Commission's Shark Specialist Group. Vancouver, Canada.; Harrison, L.R. and Dulvy, N.K. (eds). 2014. Sawfish: A global strategy for conservation. IUCN Species Survival Commission’s Shark Specialist Group. Vancouver, Canada.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. and Last, P. R. 1999. Order Pristiformes, Pristidae, Sawfishes. In: FAO identification guide for fishery purposes. The Living Marine Resources of the Western Central Pacific. Rome: FAO.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Anoxypristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66531,"full_name":"Pristis clavata","author_year":"Garman, 1906","common_names":[{"lang":"English","names":"Dwarf Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.; Taniuchi, T. 2002. Outline of field surveys for freshwater elasmobranchs conducted by a Japanese research team. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 181-184.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66532,"full_name":"Pristis pectinata","author_year":"Latham, 1794","common_names":[{"lang":"English","names":"Smalltooth Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"extinct (?)","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Feldheim, K. Chapman, D. Simpfendorfer, C. Richards, V. Shivji, M. Wiley, T. Sagarese, S. 2010. Genetic tools to support the conservation of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E. \u003Ci\u003EConservation Genetics Resources\u003C/i\u003E: 2: 105-113.; Feldheim, K. Chapman, D. Simpfendorfer, C. Richards, V. Shivji, M. Wiley, T. Sagarese, S. 2010. Genetic tools to support the conservation of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E. \u003Ci\u003EConservation Genetics Resources\u003C/i\u003E: 2: 105–113.; Jennings, D. E., DiBattista, J. D., Stump, K. L., Hussey, N. E., Franks, B. R., Grubbs, R. D. and Gruber, S. H. 2012. Assessment of the aquatic biodiversity of a threatened coastal lagoon at Bimini, Bahamas. Journal of Coastal Conservation: 16: 405-428.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and López, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and Lpez, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Pina-Amargs, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernndez de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de vila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Matamoros, W. A., Schaeffer, J. F. And Kreiser, B. R. 2009. Annotated checklist of the freshwater fishes of continental and insular Honduras. Zootaxa: 2307: 1-38.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"extinct","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ; Wood, A. D., Brouwer, S. L., Cowley, P. D. and Harrison, T. D. 2000. An updated check list of the ichthyofaunal species assemblage of the Tsitsikamma National Park, South Africa. Koedoe: 43(1): 83-95.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Simpfendorfer, C. A. 2005. Threatened fishes of the world: \u003Ci\u003EPristis pectinata\u003C/i\u003E Latham, 1794 (Pristidae). \u003Ci\u003EEnvironmental Biology of Fishes\u003C/i\u003E: 73: 20. ","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Chapman, D. D., Simpfendorfer, C. A., Wiley, T. R., Poulakis, G. R., Curtis, C., Tringali, M., Carlson, J. K. and Feldheim, K. A. 2011. Genetic diversity despite population collapse in a critically endangered marine fish: the smalltooth sawfish (\u003Ci\u003EPristis pectinata\u003C/i\u003E). Journal of Heredity: 102(6): 643-652.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Poulakis, G. R., Stevens, P. W., Timmers, A. A., Wiley, T. R. and Simpfendorfer, C. A. 2011. Abiotic affinities and spatiotemporal distribution of the endangered smalltooth sawfish, \u003Ci\u003EPristis pectinata\u003C/i\u003E, in a south-western Florida nursery. Marine and Freshwater Research: 62: 1165-1177.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66533,"full_name":"Pristis zijsron","author_year":"Bleeker, 1851","common_names":[{"lang":"English","names":"Green Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Field, I. C., Tillett, B. J., Charters, R., Johnson, G. J., Buckworth, R. C., Meekan, M. G. and Bradshaw, C. J. A. 2013. Distribution, relative abundance and risks from fisheries to threatened \u003Ci\u003EGlyphis\u003C/i\u003E sharks and sawfishes in northern Australia. Endangered Species Research: 21: 171-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Peverell, S.C. 2005. Distribution of sawfishes (Pristidae) in the Queensland Gulf of Carpentaria, Australia, with notes on sawfish ecology. Environmental Biology of Fishes: 73: 391-402.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Smith, J., Uy Ching and Valbo-Jorgensen, J. 2001. Fish of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"Duffy, C. Seeto, J. and Trnski, T. 2011. Review of records of sawfishes (Chondrichthyes: Pristidae) from Fiji, with deletion of \u003Ci\u003EPristis zijsron\u003C/i\u003E Bleeker, 1851 and \u003Ci\u003EPristis\u003C/i\u003E sp. from the fauna. \u003Ci\u003EZootaxa\u003C/i\u003E 67: 65-67.; Duffy, C. Seeto, J. and Trnski, T. 2011. Review of records of sawfishes (Chondrichthyes: Pristidae) from Fiji, with deletion of \u003Ci\u003EPristis zijsron\u003C/i\u003E Bleeker, 1851 and \u003Ci\u003EPristis\u003C/i\u003E sp. from the fauna. \u003Ci\u003EZootaxa\u003C/i\u003E 67: 65–67.; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Leeney, R.H. 2017. Are sawfishes still present in Mozambique? A baseline ecological study. \u003Ci\u003EPeerJ\u003C/i\u003E, 5: e2950.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Moazzam, M. and Osmany, H.B. 2014. Occurrence of sawfish (family: Pristidae) in Pakistan. \u003Ci\u003EInt. J. Biol. Biotech.\u003C/i\u003E, 11(1): 97-102.; Moazzam, M. and Osmany, H.B. 2014. Occurrence of sawfish (family: Pristidae) in Pakistan. \u003Ci\u003EInt. J. Biol. Biotech.\u003C/i\u003E, 11(1): 97–102.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Taxonomic Checklist of all CITES listed Shark and Fish species (Elasmobranchii and Actinoperygii, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E), information extracted from Eschmeyer, W.N. and Fricke, R. (eds.): Catalog of Fishes, an online reference (http://research.calacademy.org/redirect?url=http://researcharchive.calacademy.org/research/ Ichthyology/catalog/fishcatmain.asp), version downloaded 30 November 2011.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 2002. Freshwater and estuarine elasmobranch surveys in the Indo-Pacific region: Threats, distribution and speciation. In: Fowler, S.L., Reed, T.M. \u0026 Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 168-180.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66534,"full_name":"Pristis pristis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Largetooth Sawfish","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"extinct (?)","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and López, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Angulo, A., Garita-Alvarado, C. A., Bussing, W. A. and Lpez, M. I. 2013. Annotated checklist of the freshwater fishes of continental and insular Costa Rica: additions and nomenclatural revisions. Check List: 9(5): 987-1019.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"extinct (?)","country_references":"Barriga, R.S. 2011. Lista de peces de agua dulce e intermareales del Ecuador. Revista Politcnica 30(3): 83-119.; Barriga, R.S. 2011. Lista de peces de agua dulce e intermareales del Ecuador. Revista Politécnica 30(3): 83-119.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guinea","country":"Guinea","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Mexico","country":"Mexico","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Peru","country":"Peru","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394; Fowler, S.L., Cavanagh, R.D., Camhi, M., Burgess, G.H., Cailliet, G.M., Fordham, S.V., Simpfendorfer, C.A. and Musick, J.A. (comps and eds). 2005. Sharks, Rays and Chimaeras: The Status of the Chondrichthyan Fishes. Status Survey. pp. x + 461. IUCN/SSC Shark Specialist Group, IUCN, Gland, Switzerland and Cambridge, UK.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"extinct (?)","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.; Fernandez-Carvalho, J. Imhoff, J. L. Faria, V. V. Carlson, J. K. and Burgess, G. H. 2013. Status and the potential for extinction of the largetooth sawfish \u003Ci\u003EPristis pristis\u003C/i\u003E in the Atlantic Ocean. \u003Ci\u003EAquatic Conservation: Marine and Freshwater Ecosystems\u003C/i\u003E: DOI:1002/aqc.2394","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136-164.; Faria, V. V. McDavitt, M. T. Charvet, P. Wiley, T. R. Simpfendorfer, C. and Naylor, G. J. P. 2013. Species delineation and global population structure of Critically Endangered sawfishes (Pristidae). \u003Ci\u003EZoological Journal of the Linnean Society\u003C/i\u003E 167: 136–164.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134-153.; Dulvy, N.K., Davidson, L.N.K., Kyne, P.M., Simpfendorfer, C.A., Harrison, L.R., Carlson, J.K. and Fordham, S. V 2016. Ghosts of the coast: global extinction risk and conservation of sawfishes. \u003Ci\u003EAquatic Conserv: Mar. Freshw. Ecosyst.\u003C/i\u003E, 26: 134–153.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Pristidae","genus_name":"Pristis","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EPristis microdon\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":"This includes \u003Ci\u003EPristis microdon\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66537,"full_name":"Sphyrna lewini","author_year":"(Griffith \u0026 Smith, 1834)","common_names":[{"lang":"English","names":"Scalloped hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Requin-marteau halicorne","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón martillo común","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Quéro, J.-C. 1984. Sphyrnidae. In: Fishes of the north-eastern Atlantic and the Mediterranean. Vol. 1.(Eds.) P. Whitehead M.-L. Bauchot J.-C. Hureau J. Nielsen and E. Tortonese (pp. 122–125). Paris: UNESCO.; Quro, J.-C. 1984. Sphyrnidae. In: Fishes of the north-eastern Atlantic and the Mediterranean. Vol. 1.(Eds.) P. Whitehead M.-L. Bauchot J.-C. Hureau J. Nielsen and E. Tortonese (pp. 122-125). Paris: UNESCO.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Wass, R. 1984. An annotated checklist of the fishes of Samoa. National Oceanic and Atmospheric Administration. National Marine Fishes Service, Special Scientific Report - Fisheries. Washington, DC. ","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Bianchi, G. 1986. Fichas FAO de identifacao de espcies para propsitos comerciais. Guia de campo para as espcies comerciais marinhas e de guas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.; Bianchi, G. 1986. Fichas FAO de identifacao de espécies para propósitos comerciais. Guia de campo para as espécies comerciais marinhas e de águas salobras de Angola. Preparado com o apoio da NORAD e da FAO (FIRM) Programa Regular. FAO. Rome.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) 2002. Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK. 258 pp.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Noriega, R., Werry, J. M., Sumpton, W., Mayer, D. and Lee, S. Y. 2011. Trends in annual CPUE and evidence of sex and size segregation of \u003Ci\u003ESphyrna lewini\u003C/i\u003E: Management implications in coastal waters of northeastern Australia. Fisheries Research: 110(3): 472-477.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Kotas, J. E., Mastrochirico, V. and Petrere Junior, M. 2011. Age and growth of the scalloped hammerhead shark, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith and Smith, 1984), from the southern Brazilian coast. Brazilian Journal of Biology: 71(3): 755-761.; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"Wirtz, P., Brito, A., Falcn, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"Hobbs, J.A., Newman, S.J., Mitsopoulos, G.E.A., Travers, M.J., Craig, L., Gilligan, J.J., Allen, G.R., Choat, H.J. and Ayling, A.M. 2014. Checklist and new records of Christmas Island fishes: the influence of isolation , biogeography and habitat availability on species abundance and community composition. \u003Ci\u003ERaffles Bulletin of Zoology\u003C/i\u003E, 30: 184-202.; Hobbs, J.A., Newman, S.J., Mitsopoulos, G.E.A., Travers, M.J., Craig, L., Gilligan, J.J., Allen, G.R., Choat, H.J. and Ayling, A.M. 2014. Checklist and new records of Christmas Island fishes: the influence of isolation , biogeography and habitat availability on species abundance and community composition. \u003Ci\u003ERaffles Bulletin of Zoology\u003C/i\u003E, 30: 184–202.","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Robertson, D. R. and Allen, G. R. Zoogeography of the shorefish fauna of Clipperton Atoll. Coral Reefs: 15: 121-131.; Robertson, D. R. and Allen, G. R. Zoogeography of the shorefish fauna of Clipperton Atoll. Coral Reefs: 15: 121-131.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaños, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.; Friedlander, A. M., Zgliczynski, B. J., Ballesteros, E., Aburto-Oropeza, O., Bolaos, A. and Sala, E. 2012. The shallow-water fish assemblage of Isla Del Coco National Park, Costa Rica: structure and patterns in an isolated, predator-dominated ecosystem. International Journal of Tropical Biology: 60(3): 321-338.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Bessudo, S., Soler, G. A., Klimley, A. P., Ketchum, J. T., Hearn, A. and Arauz, R. 2011. Residency of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) at Malpelo Island and evidence of migration to other islands in the Eastern Tropical Pacific. Envionmental Biology of Fishes: 91(2): 165-176; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Hearn, A., Ketchum, J., Klimley, A. P., Espinoza, E. and Pennaherrera, C. 2010. Hotspots within hotspots? Hammerhead shark movements around Wolf Island, Galapagos Marine Reserve. Marine Biology: 157(9): 1899-1915.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galpagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jimnez-Uzctegui, G., Ruiz, D., Guzou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ; WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservación en Centroamérica y México. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Borrell, A., Cardona, L., Kumarran, R. P. and Aguilar, A. 2011. Trophic ecology of elasmobranchs caught off Gujarat, India, as inferred from stable isotopes. ICES Journal of Marine Science: 68(3): 547-554; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Adrim, M. 2003. Coral reef fishes of Indonesia. Zoological Studies: 42: 1-72.; Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf; White, W. T., Bartron, C. and Potter, I. C. 2008. Catch composition and reproductive biology of \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith \u0026 Smith) (Carcharhiniformes, Sphyrnidae) in Indonesian waters. Journal of Fish Biology: 72(7): 1675-1689.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Motomura, H., Kuriiwa, K., Katayama, E., Senou, H., Ogihara, G., Meguro, M., Matsunuma, M., Takata, Y., Yoshida, T., Yamashita, M., Kimura, S., Endo, H., Murase, A., Iwatsuki. Y., Sakurai, Y., Harazaki, S., Hidaka, K., Izumi, H and Matsuura, K. 2010. Annotated checklist of marine and estuarine fishes of Yaku-shima Island, Kagoshima, southern Japan. In: Motomura, H. \u0026 Matsuura, K. (Eds.), Fishes of Yaku-shima Island National Museum of Nature and Science. Tokyo, Japan.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taniuchi, T. 1974. Three species of hammerhead sharks in the southwestern waters of Japan. Japanese Journal of Ichthyology: 21(3): 145-152.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Khalaf, M. 2004. Fish fauna of the Jordanian coast, Gulf of Aqaba, Red Sea. Journal of King Abdulaziz University: Marine Sciences: 15(1): 23-50.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Gillibrand, C. J., Harris, A. R. and Mara, E. 2007. Inventory and spatial assemblage study of reef fish in the area of Andavadoaka, south-west Madagascar (Western Indian Ocean). Western Indian Journal of Marine Science: 6(2): 183-197.; McKenna, S. A. and Allen, G. R. 2005. A rapid marine biodiversity assessment of the coral reefs of northwest Madagascar. RAP Bulletin of Biological Assessment: 31: 124.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Anislado-Tolentino, V., Gallardo-Cabello, M., Amezcua-Linares, F. and Robinson-Mendoza, C. 2008. Age and growth of the scalloped hammerhead shark, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Griffith \u0026 Smith, 1834) from the Southern coast of Sinaloa, Mexico. Hidrobiologica: 18(1): 31-40.; Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bizzarro, J. J., Smith, W. D., Márquez-Farías, J. F., Tyminski, J. and Hueter, R. E. 2009. Temporal variation in the artisanal elasmobranch fishery of Sonora, Mexico. Fisheries Research: 97: 103-117.; Bizzarro, J. J., Smith, W. D., Mrquez-Faras, J. F., Tyminski, J. and Hueter, R. E. 2009. Temporal variation in the artisanal elasmobranch fishery of Sonora, Mexico. Fisheries Research: 97: 103-117.; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Torres-Rojas, Y. E., Hernández-Herrera, A., Galván-Magaña, F. And Alatorre-Ramírez, V. G. 2010. Stomach content analysis of juvenile, scalloped hammerhead shark \u003Ci\u003ESphyrna lewini\u003C/i\u003E captured off the coast of Mazatlan, Mexico. Aquatic Ecology: 44: 301-308.; Torres-Rojas, Y. E., Hernndez-Herrera, A., Galvn-Magaa, F. And Alatorre-Ramrez, V. G. 2010. Stomach content analysis of juvenile, scalloped hammerhead shark \u003Ci\u003ESphyrna lewini\u003C/i\u003E captured off the coast of Mazatlan, Mexico. Aquatic Ecology: 44: 301-308.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S., Al-Sheile, S. and Al-Abri, N. 2009. Size distributions and sex ratios of sharks caught by Oman's artisanal fishery. African Journal of Marine Science: 31(2): 233-239.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S. and Al-Sheili, S. 2007. The Sultanate of Oman shark fishery: Species composition, seasonality and diversity. Fisheries Research: 86: 159-168.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Afonso, P., Porteiro, F. M., Santos, R. S., Barreiros, J. P., Worms, J. and Wirtz, P. 1999. Coastal marine fishes of So Tom Island (Gulf of Guinea). Arquiplago: 17A: 65-92.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Capape, C., Diop, M., and N'Dao, M. 1998. Record of four pregnant females of the scalloped hammerhead, \u003Ci\u003ESphyrna lewini\u003C/i\u003E (Sphyrnidae) in Senegalese waters. Cybium: 22(1): 89-93.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Diemer, K. M., Mann, B. Q. and Hussey, N. E. 2011. Distribution and movement of scalloped hammerhead \u003Ci\u003ESphyrna lewini\u003C/i\u003E and smooth hammerhead \u003Ci\u003ESphyrna zygaena\u003C/i\u003E sharks along the east coast of southern Africa. African Journal of Marine Science: 33(2): 229-238.; Dudley, S. F. J. and Simpfendorfer, C. A. 2006. Population status of 14 shark species caught in the protective gillnets off KwaZulu-Natal beaches, South Africa, 1978-2003. Marine and Freshwater Research: 57(2): 225-240.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Sudan [prior to secession of South Sudan]","country":"Sudan [prior to secession of South Sudan]","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Chen, C. T., Leu, T. C., Joung, S. J. and Lo, N. C. H. 1990. Age and growth of the scalloped hammerhead, \u003Ci\u003ESphyrna lewini\u003C/i\u003E, in northeastern Taiwan waters. Pacific Science: 44(2): 156-170.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Séret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Sret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Adams, D. H. and Paperno, R. 2005. Preliminary assessment of a nearshore nursery ground for the scalloped hammerhead off the Atlantic coast of Florida. American Fisheries Society Symposium: 50: 165-174.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Duncan, K. M. and Holland, K. M. 2006. Habitat use, growth rates and dispersal patterns of juvenile scalloped hammerhead sharks \u003Ci\u003ESphyrna lewini\u003C/i\u003E in a nursery habitat. Marine Ecology Progress Series: 312: 211-221.; Duncan, K. M., Martin, A. P., Bowen, B. W. and De Couet, H. G. 2006. Global phylogeography of the scalloped hammerhead shark (\u003Ci\u003ESphyrna lewini\u003C/i\u003E). Molecular Ecology: 15: 2239-2251.; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Lowe, C. G. 2002. Bioenergetics of free-ranging juvenile scalloped hammerhead sharks (\u003Ci\u003ESphyrna lewini\u003C/i\u003E) in Kane'ohe Bay, O'ahu, HI. Journal of experimental marine biology and ecology: 278: 141-156.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Yegres, H., Ali, J. J., Marcano, L.A. and Marcano, J.S. 1996. Anlisis preliminar de la pesquera y biologa de tiburones en Venezuela. Collective Volume of Scientific Papers: 45(3): 309-315.; Yegres, H., Alió, J. J., Marcano, L.A. and Marcano, J.S. 1996. Análisis preliminar de la pesquería y biología de tiburones en Venezuela. Collective Volume of Scientific Papers: 45(3): 309-315.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Ebert, D., Compagno, L. and Fowler, S. 2013. Sharks of the World: a fully illustrated guide. Wild Nature Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66538,"full_name":"Sphyrna mokarran","author_year":"(Rüppell, 1837)","common_names":[{"lang":"English","names":"Great hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Grand requin-marteau","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón martillo gigante","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) 2002. Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK. 258 pp.; Harry, A. V., Tobin, A. J., Simpfendorfer, C. A., Welch, D. J., Mapleston, A., White, J., Williams, A. J. and Stapley, J. 2011. Evaluating catch and mitigating risk in a multispecies, tropical, inshore shark fishery within the Great Barrier Reef World Heritage Area. Marine and Freshwater Research: 62: 710-721.; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Brooks, E. J., Sloman, K. A., Sims, D. W. And Danylchuk, A. J. 2011. Validating the use of baited remote underwater video surveys for assessing the diversity, distribution and abundance of sharks in the Bahamas. Endangered Species Research: 13: 213-243.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ; Pikitch, E. K., Chapman, D. D., Babcock, E. A. and Shivji, M. S. 2005. Habitat use and demographic population structure of elasmobranchs at a Caribbean atoll (Glover's Reef, Belize). Marine Ecology Progress Series: 302: 187-197.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de So Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcn, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ; Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mantilla, L. A. 1998. Lista de especies elasmobranquias de Colombia. Revista de Fenologia y Anatomia: 1; Meja-Falla, P. A., Navia, A. F., Meja-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletn de Investigaciones Marinas y Costeras: 36: 111-149.; Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Pina-Amargós, F., Salvat Torres, H. and López-Fernández, N. 2012. Ictiofauna del archipiélago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargós, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernández de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de Ávila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.; Pina-Amargs, F., Salvat Torres, H. and Lpez-Fernndez, N. 2012. Ictiofauna del archipilago Jardines de la Reina, Cuba. Revista de Investigaciones Marinas: 32(2): 54-65.; Pina-Amargs, F., Salvat Torres, H. M., Acosta de la Red, W. and Fernndez de la Vega, E. 2013. Inventario de la ictiofauna de la costa norte de Ciego de vila, Cuba. Revista de Investigaciones Marinas: 33(1): 31-38.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galápagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; McCosker, J. E. and Rosenblatt, R. H. 2010. The fishes of the Galpagos Archipelago: an update. Proceedings of the California Academy of Sciences: 61(11): 167-195.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.; Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jimnez-Uzctegui, G., Ruiz, D., Guzou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ; WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservación en Centroamérica y México. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Meja, T.M. and House, P.R (eds.) 2008. Especies de preocupacin especial en Honduras. Secretara de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ; Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Akhilesh, K. V., Ganga, U., Pillai, N. G. K., Vivekanandan, E., Bineesh, K. K., Shanis, C. P. R. and Hashim, M. 2011. Deep-sea fishing for chondrichthyan resources and sustainability concerns - a case study from southwest coast of India. Indian Journal of Geo-Marine Sciences: 40(3): 347-355.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.; Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.; Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Allen, G. R. and Adrim, M. 2003. Coral reef fishes of Indonesia. Zoological Studies: 42: 1-72.; Allen, G. R. and Erdmann, M. V. 2009. Reef fishes of the Bird's Head Peninsula, West Papua, Indonesia. Check List: 5(3): 587-628.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Ali, A. H. 2013. First record of six shark species in the territorial marine waters of Iraq with a review of cartilaginous fishes of Iraq. Mesopotamian Journal of Marine Science: 28(1): 1-16","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Taniuchi, T. 1974. Three species of hammerhead sharks in the southwestern waters of Japan. Japanese Journal of Ichthyology: 21(3): 145-152.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Manjaji, B. M. 2002. New records of elasmobranch species from Sabah. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 70-77.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro Garca-Madrigal, M., Rosas-Alquicira, E. F., Lpez-Prez, R. A., Bentez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Mrquez, A. and Barrientes-Lujn, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.; González Gándara, C., De La Cruz Francisco, V., Salas Pérez, J. J. and Domínguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, México. Revista Científíca UDO Agricola: 12(3): 675-689.; Gonzlez Gndara, C., De La Cruz Francisco, V., Salas Prez, J. J. and Domnguez Barradas, C. 2012. Lista de los peces de Tuxpan, Veracruz, Mxico. Revista Cientfca UDO Agricola: 12(3): 675-689.; Schmitter-Soto, J. J., Vásquez-Yeomans, L., Aguilar-Perera, A., Curiel-Mondragón, C. and Caballero-Vazquez, J. A. 2000. Lista de peces marinos del Caribe mexicano. Anales del Instituto de Biología Universidad Nacional Autónoma de México, Serie Zooogía 71(2): 143-177.; Schmitter-Soto, J. J., Vsquez-Yeomans, L., Aguilar-Perera, A., Curiel-Mondragn, C. and Caballero-Vazquez, J. A. 2000. Lista de peces marinos del Caribe mexicano. Anales del Instituto de Biologa Universidad Nacional Autnoma de Mxico, Serie Zoooga 71(2): 143-177.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.; Henderson, A. C., McIlwain, J. L., Al-Oufi, H. S. and Al-Sheili, S. 2007. The Sultanate of Oman shark fishery: Species composition, seasonality and diversity. Fisheries Research: 86: 159-168.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.; Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Runion, including a Red List of threatened and declining species. Stuttgarter Beitrge zur Naturkunde A, Neue Serie 2: 1-168.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Cliff, G. 1995. Sharks caught in the protective gill nets off KwaZulu-Natal, South Africa. 8. The great hammerhead shark \u003Ci\u003ESphyrna mokarran\u003C/i\u003E (Rppell). South African Journal of Marine Science: 15(1): 105-114.; Cliff, G. 1995. Sharks caught in the protective gill nets off KwaZulu-Natal, South Africa. 8. The great hammerhead shark \u003Ci\u003ESphyrna mokarran\u003C/i\u003E (Rüppell). South African Journal of Marine Science: 15(1): 105-114.; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Dudley, S. F. J. and Simpfendorfer, C. A. 2006. Population status of 14 shark species caught in the protective gillnets off KwaZulu-Natal beaches, South Africa, 1978-2003. Marine and Freshwater Research: 57(2): 225-240.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Séret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.; Ebert, D. A., White, W. T., Ho, H., Last, P. R., Nakaya, K., Sret, B., Straube, N., Naylor, G. J. P. and De Carvalho, M. R. 2013. An annotated checklist of the chondrichthyans of Taiwan. Zootaxa: 3752(1): 279-386.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Vidthayanon, C. 2005. Thailand Red Data: Fishes. Office of Natural Resources and Environmental Policy and Planning. Bangkok, Thailand.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Shing, C. C. A. 2005. Sharks: overview of the fisheries in Trinidad and Tobago. Proceedings of the Gulf and Caribbean Fisheries Institute: 47: 318-336","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Shehe, M. A. and Jiddawi, N. S. 2002. The status of shark fisheries in Zanzibar. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 158-161.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Mundy, B. C., Wass, R., Demartini, E., Greene, B., Zgliczynski, B., Schroeder, R. E. and Musberger, C. 2010. Inshore fishes of Howland Island, Baker Island, Jarvis Island, Palmyra Atoll and Kingman Reef. Atoll Research Bulletin: 585: 1-130.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":66539,"full_name":"Manta alfredi","author_year":"Krefft 1868","common_names":[{"lang":"English","names":"Reef Manta Ray","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Couturier, L. I. E., Jaine, F. R. A., Townsend, K. A., Weeks, S. J., Richardson, A. J. and Bennett, M. B. 2011. Distribution, site affinity and regional movements of the manta ray, \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868), along the east coast of Australia. Marine and Freshwater Research: 62: 628-637.; Jaine, F. R. A., Couturier, L. I. E., Weeks, S. J., Townsend, K. A., Bennett, M. B., Fiora, K. and Richardson, A. J. 2012. When giants turn up: sighting trends, environmental influences and habitat use of the manta ray \u003Ci\u003EManta alfredi\u003C/i\u003E at a coral reef. PlosOne: 7(10): e46170.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Mourier, J. 2012. Manta rays in the Marquesas Islands: first records of \u003Ci\u003EManta birostris\u003C/i\u003E in French Polynesia and most easterly location of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Pacific Ocean, with notes on their distribution. Journal of Fish Biology: 81(6): 2053-2058.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Hartup, J. A., Marshell, A. Kottermair, M. and Carlson, P. 2013. \u003Ci\u003EManta alfredi\u003C/i\u003E target multispecies surgeonfish spawning aggregations. Coral Reefs 32: 367.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C., Adam, M. S. and Goes, J. I. 2011. From monsoons to mantas: seasonal distribution of \u003Ci\u003EManta alfredi\u003C/i\u003E in the Maldives. Fisheries Oceanograhy: 20(2): 104-113.; Kitchen-Wheeler, A., Ari, C. and Edwards, A. J. 2012. Population estimates of Alfred mantas (\u003Ci\u003EManta alfredi\u003C/i\u003E) in central Maldives atolls: North Male, Ari and Baa. Environmental Biology of Fishes: 93(4): 557-575.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n; Rohner, C.A., Pierce, S. J., Marshall, A.D., Weeks, S. J., Bennett, M. B. and Richardson, A. J. 2013. Trends in sightings and environmental influences on a coastal aggregation of manta rays and whale sharks. Marine Ecology Progress Series: 482: 153-168.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.; Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beitrge zur Naturkunde A, Neue Serie: 4: 341-463.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Deakos, M. H. 2012. The reproductive ecology of resident manta rays (\u003Ci\u003EManta alfredi\u003C/i\u003E) off Maui, Hawaii, with an emphasis on body size. Environmental Biology of Fishes: 94: 443-456.; Marshall, A. D., Compagno, L. J. V. and Bennett, M. B. 2009. Redescription of the genus \u003Ci\u003EManta\u003C/i\u003E with resurrection of \u003Ci\u003EManta alfredi\u003C/i\u003E (Krefft, 1868) (Chondrichthyes: Myliobatoidei: Mobulidae). Zootaxa: 2301: 1-28.; Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Proposal to include the genus \u003Ci\u003EManta\u003C/i\u003E (including \u003Ci\u003EManta birostris\u003C/i\u003E, \u003Ci\u003EManta alfredi\u003C/i\u003E and any other possible species of \u003Ci\u003EManta\u003C/i\u003E) in Appendix II of CITES. CoP16 Prop. 46.\r\n","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rajiformes","class_name":"Elasmobranchii","family_name":"Mobulidae","genus_name":"Manta","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"08/02/2015","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"19/02/2016","name":"Sharks"}]},{"id":94451,"full_name":"Pan troglodytes","author_year":"(Blumenbach, 1775)","common_names":[{"lang":"English","names":"Chimpanzee","convention_language":true,"id":null},{"lang":"French","names":"Chimpanzé","convention_language":true,"id":null},{"lang":"Spanish","names":"Chimpancé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Huntley, B. J. 1974. Outlines of wildlife conservation in Angola. Journal of the Southern African Wildlife Management Association: 4: 157-166.","id":null},{"name":"Benin","country":"Benin","tags_list":"extinct (?)","country_references":"Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bénin. Folia Primatologica, 79(1): 15–30.; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bnin. Folia Primatologica, 79(1): 15-30.; Inskipp, T. 2005. Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"extinct (?)","country_references":"Ginn, L. and Nekaris, K. 2014. The first survey of the conservation status of primates in southern Burkina Faso, West Africa. Primate Conservation, 28: 129-138.; Ginn, L. and Nekaris, K. 2014. The first survey of the conservation status of primates in southern Burkina Faso, West Africa. Primate Conservation, 28: 129–138.; Ginn, L., Robison, J., Redmond, I. and Nekaris, K. 2013. Strong evidence that the West African chimpanzee is extirpated from Burkina Faso. Oryx, 47: 325-326.; Ginn, L., Robison, J., Redmond, I. and Nekaris, K. 2013. Strong evidence that the West African chimpanzee is extirpated from Burkina Faso. Oryx, 47: 325–326.; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Anon. 2004. Donnes statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Verschuren, J. 1978. Burundi and wildlife. Problems of an overcrowded country. Oryx: 14: 237-240.; Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Verschuren, J. 1978. Les gonads mammifres du Burundi. Mammalia: 42: 209-224.; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bowden, C. G. R. 1986. Records of other species of mammal from western Cameroon. In: Stuart, S. N. (ed.) Conservation of Cameroon montane forests International Council for Bird Preservation. Cambridge (UK).; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Lige (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. First survey of the birds and mammals of the Yabassi area, south-west Cameroon. Tauraco Press, for WWF-Cameroon. Lige (Belgium). ; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; Inskipp, T. 2005. Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E). In Caldecott, J. and Miles, L. (eds.) World atlas of great apes and their conservation. University of California Press. Berkeley.; IUCN. 1996. African Primates. Status Survey and Conservation Action Plan. Revised edition. IUCN. Gland, Switzerland.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Mitani, M. 1990. A note on the present situation of the primate fauna found from south-eastern Cameroon to northern Congo. Primates: 31: 625-634.; Nembot, T. and Tchanou, Z. 1998. La gestion des cosystmes forestiers du Cameroun l'Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaound (Cameroon).; Nembot, T. and Tchanou, Z. 1998. La gestion des ècosystémes forestiers du Cameroun a'l Aube de l'an 2000. Vol. 2, Monographies des sites critiques et annexes. IUCN. Yaoundé (Cameroon).; Perret, J.-L. and Aellen, V. 1956. Mammifères du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Perret, J.-L. and Aellen, V. 1956. Mammifres du Cameroun de la collection J.-L. Perret. Revue Suisse de Zoologie: 63: 395-450.; Poulsen, J. R., Clark, C. J., Smith, T. B. 2001. Seed dispersal by a diurnal primate community in the Dja Reserve, Cameroon. Journal of Tropical Ecology: 17: 787-808; Prescott, H. J., Rapley, W. A., Mengang Mewondo, J. 1994. Status and conservation of Chimpanzees and Gorillas in Cameroon. Report of the Jardin Zoologique du Quebec and Metro Toronto Zoo Joint Expedition . ; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Waltert, M., Lien, Faber, K. and Mhlenberg, M. 2002. Further declines of threatened primates in the Korup Project Area, south-west Cameroon. Oryx: 36: 257-265.; Waltert, M., Lien, Faber, K. and Mühlenberg, M. 2002. Further declines of threatened primates in the Korup Project Area, south-west Cameroon. Oryx: 36: 257-265.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Carroll, R. W. 1986. Status of the Lowland Gorilla and other wildlife in the Dzanga-Sangha region of southwestern Central African Republic. Primate Conservation: 7: 38-41.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complémentaires sur quelques grands mammifères dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett-Lemaire, F. and Dowsett, R. J. 1991. Observations complmentaires sur quelques grands mammifres dans le bassin du Kouilou au Congo. Tauraco Res. Rep.: 4: 291-296.; Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Mitani, M. 1990. A note on the present situation of the primate fauna found from south-eastern Cameroon to northern Congo. Primates: 31: 625-634.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Colyn, M., Dudu, A. and Mbaelele, M. M. 1987. Exploitation du petit et moyen gibier des forts ombrophiles du Zaire. 1. Consommation qualitative dans le milieu rural. 2. Analyse de la commercialisation du giber Kisangani (Haut-Zaire). Nature et Faune: 3: 22-39.; Hart, J. A. and Thomas, S. 1986. The Ituri Forest of Zaire: primate diversity and prospects for conservation. Primate Conservation: 7: 42-44.; Kingdon, J. 1997. The Kingdon field guide to African mammals. Academic Press. London.; Rahm, U. 1966. Les mammifères de la forêt équatoriale du l'est du Congo. Annales du Musée Royale de l'Afrique Centrale, Série in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Rahm, U. 1966. Les mammifres de la fort quatoriale du l'est du Congo. Annales du Muse Royale de l'Afrique Centrale, Srie in 8 vols. Tervuren Sciences Zoologiques: 149: 39-121.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Fa, J. E. and Garca Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Tutin, C. E. G. and Fernandez, M. 1984. Nationwide census of Gorilla (\u003Ci\u003EGorilla g. gorilla\u003C/i\u003E) and Chimpanzee (\u003Ci\u003EPan troglodytes\u003C/i\u003E) populations in Gabon. American Journal of Primatology: 6: 313-336.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"reintroduced","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Jirk?, M., Votpka, J., Petrelkov, K., Jirk?-Pomajbkov, K., Kriegov, E., Vodi?ka, R., Lankester, F., Leendertz, S., Wittig, R., Boesch, C. et al. 2015. Wild chimpanzees are infected by \u003Ci\u003ETrypanosoma brucei\u003C/i\u003E. International Journal for parasitology: Parasites and Wildlife, 4: 277-282.; Marsden, S. 1983. Rehabilitating Chimpanzees in Gambia. Fund for Animals (Australia) Newsletter: 3: 14-15.; Marsden, S., Marsden, D. and Thompson, M. 2006. Demographic and female life history parameters of free-ranging chimpanzees at the Chimpanzee Rehabilitation Project, River Gambia National Park. International Journal of Primatology, 27: 391-410.; Marsden, S., Marsden, D. and Thompson, M. 2006. Demographic and female life history parameters of free-ranging chimpanzees at the Chimpanzee Rehabilitation Project, River Gambia National Park. International Journal of Primatology, 27: 391–410.; Thompson, M. 2013. Reproductive ecology of female chimpanzees. American Journal of Primatology, 75(3): 222-237.; Thompson, M. 2013. Reproductive ecology of female chimpanzees. American Journal of Primatology, 75(3): 222–237.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; McCullough, J. 2004. A rapid biological assessment of the Forêt Classée du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; McCullough, J. 2004. A rapid biological assessment of the Fort Classe du Pic de Fon, Simandou Range, South-eastern Republic of Guinea. RAP Bulletin of Biological Assessment . ; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Gippoliti, S. and Dell'Omo, G. 1996. Primates of the Cantanhez Forest and the Cacine Basin, Guinea-Bissau. Oryx: 30: 74-80.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Allen, G. M. and Coolidge, H. J. 1930. Mammals of Liberia. In: Strong, R. P. The African Republic of Liberia and the Belgian Congo. Harvard University Press. Cambridge, Mass.; Anon. 1984. Liberia's Sapo National Park. Oryx: 18: 48.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. 1971. Statut actuel des primates au Sénégal. Bulletin de l'Institut Fondamental de l'Afrique Noire 33(1-2): 467-478: 33: 467-478.; Dupuy, A. R. 1971. Statut actuel des primates au Sngal. Bulletin de l'Institut Fondamental de l'Afrique Noire 33(1-2): 467-478: 33: 467-478.; McGrew, W. C., Baldwin, P. J. and Tutin, C. E. G. 1981. Chimpanzees in a hot, dry and open habitat: Mt. Assirik, Senegal, West Africa. Journal of Human Evolution: 10: 227-244.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Harding, R. S. O. 1984. Primates of the Kilimi area, Sierra Leone. IUCN/SSC Primate Specialist Group Newsletter: 4: 32-34.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69-77.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69–77.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Happold, D.C.D. 1967. Additional information on the mammanlian fauna of the Sudan. Mammalia: 31: 605-609.; Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Anon. 1978. Report of special consulting committee (Members: J. S. Gartlan, C. J. Jones, A. Kortlandt, T. T. Struhsaker) convened by the Interagency Primate Steering Committee of the National Institutes of the Health, Washington, D.C., March 1978. International Primate Protection League Newsletter: 5: 14.; Anon. 1999. African Mammals Databank. www.gisbau.uniroma1.it/amd/ Instituto di Ecologia Applicata. Rome. ; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bénin. Folia Primatologica, 79(1): 15–30.; Campbell, G., Teichroeb, J. and Paterson, J.D. 2008. Distribution of diurnal primate species in Togo and Bnin. Folia Primatologica, 79(1): 15-30.; Kormos, R., Boesch, C., Bakarr, M. and Butynski, T. 2003. West African chimpanzees: status survey and conservation action plan. IUCN/SSC Primate Specialist Group. ; Mittermeier, R.A., Rylands, A.B. and Wilson, D.E. (eds.) 2013. \u003Ci\u003EHandbook of the mammals of the world. Vol. 3. Primates\u003C/i\u003E. Lynx Edicions, Barcelona.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Albrecht, H. 1976. Chimpanzees in Uganda. Oryx: 13: 357-361.; Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ; Tweheyo, M. and Obua, J. 2001. Feeding habits of chimpanzees (\u003Ci\u003EPan troglodytes\u003C/i\u003E), red-tail monkeys (\u003Ci\u003ECercopithecus mitis stuhlmanii\u003C/i\u003E) on figs in Budongo Forest Reserve, Uganda. : 39: 133-139.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Anne E. Pusey, Lilian Pintea, Michael L. Wilson, Shadrack Kamenya, Jane Goodall. 2007. The Contribution of Long-Term Research at Gombe National Park to Chimpanzee Conservation. Conservation Biology : 21: 623-634.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Teleki, G. and Baldwin, L. 1979. Known and estimated distributions of extant chimpanzee populations (\u003Ci\u003EPan troglodytes\u003C/i\u003E and \u003Ci\u003EPan paniscus\u003C/i\u003E) in Equatorial Africa. Special report for IUCN/SSC Primate Specialist Group, June 1979. Unpublished . ","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Primates","class_name":"Mammalia","family_name":"Hominidae","genus_name":"Pan","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94453,"full_name":"Lasiurus cinereus","author_year":"(Palisot de Beauvois, 1796)","common_names":[{"lang":"English","names":"Hoary Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris cendrée","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago ceniciento o Murciélago gris","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94454,"full_name":"Lasiurus borealis","author_year":"(Müller, 1776)","common_names":[{"lang":"English","names":"Eastern Red Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris rousse","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago colorado","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94455,"full_name":"Lasiurus ega","author_year":"(Gervais, 1856)","common_names":[{"lang":"English","names":"Southern Yellow Bat","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago amarillo o Murciélago leonado","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Eisenberg, J.F. and Redford, K.H. 2000. Mammals of the Neotropics. Volume 3: The central Neotropics - Ecuador, Peru, Bolivia, Brazil. University of Chicago Press. 609 pp","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Eisenberg, J.F. and Redford, K.H. 2000. Mammals of the Neotropics. Volume 3: The central Neotropics - Ecuador, Peru, Bolivia, Brazil. University of Chicago Press. 609 pp","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94457,"full_name":"Panthera leo","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Lion","convention_language":true,"id":null},{"lang":"French","names":"Lion","convention_language":true,"id":null},{"lang":"Spanish","names":"León","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Hill, J. E. and Carter, T. D. 1941. The mammals of Angola, Africa. Bulletin of the American Museum of Natural History: 78: 1-211.; Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.; Sinsin, B., Tehou, A. C., Daouda, I. and Saidou, A. 2002. Abundance and species richness of larger mammals in Pendjari National Park in Benin. Mammalia: 66: 369-380.; Sogbohossou, E.A., de Iongh, H.H., Sinsin, B., de Snoo, G.R. and Funston, P.J. 2011. Human-carnivore conflict around Pendjari Biosphere Reserve, northern Benin. Oryx: 45: 569-578.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Verschuren, J. 1978. Les gonads mammifères du Burundi. Mammalia: 42: 209-224.; Verschuren, J. 1978. Les gonads mammifres du Burundi. Mammalia: 42: 209-224.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bnou et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Lige (Belgium). ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; IUCN. 2004. 2004 IUCN Red List of Threatened Species. Downloaded from \u003Cwww.redlist.org\u003E on 20 September 2005 IUCN. Gland (Switzerland). ; Nowell, K. and Jackson, P. 1994. Wild cats status report and conservation action plan. Cat News: 21: 20-21.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Tumenta, P., Kok, J., van Rijssel, J., Buij, R., Croes, B., Funston, P., de Iongh, H. and de Haes, H. 2010. Threat of rapid extermination of the lion (\u003Ci\u003EPanthera leo leo\u003C/i\u003E) in Waza National Park, Northern Cameroon. African Journal of Ecology: 48: 888-894.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Malbrant, R. 1952. Faune du Centre Africain Franais (mammifres et oiseaux). Lechevalier. Paris.; Malbrant, R. 1952. Faune du Centre Africain Français (mammifères et oiseaux). Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Newby, J. 1970. The ecological resources of the Ouadi Rimé - Ouadi Achim Faunal Reserve, Chad. UNDP/FAO Wildlife Conservation and Management Project CHD/69/004. Unpublished . ; Newby, J. 1970. The ecological resources of the Ouadi Rim - Ouadi Achim Faunal Reserve, Chad. UNDP/FAO Wildlife Conservation and Management Project CHD/69/004. Unpublished . ; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Congo","country":"Congo","tags_list":"extinct","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Franais. Vol. 2, mammifres. Encyclopdie Biologique 36. Lechevalier. Paris.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"extinct (?)","country_references":"Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifères. Annales du Musée Royale du Congo Belge, Série in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Schouteden, H. 1948. Faune du Congo Belge et de Ruanda-Urundi, I - mammifres. Annales du Muse Royale du Congo Belge, Srie in 8 vols, Tervuren Sciences Zoologiques: 1: 331 pp.; Treves, A., Plumptre, A.J., Hunter, L.T.B. and Ziwa, J. 2009. Identifying a potential lion \u003Ci\u003EPanthera leo\u003C/i\u003E stronghold in Queen Elizabeth National Park, Uganda, and Parc National des Virunga, Democratic Republic of Congo. Oryx: 43: 60-66.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"extinct","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Gebresenbet, F., Bauer, H., Hunter, L. and Gebretensae, K. 2009. Proceedings of the national lion conservation workshop, Addis Ababa, 12 June 2009. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Franais. Vol. 2, mammifres. Encyclopdie Biologique 36. Lechevalier. Paris.; Malbrant, R. and Maclatchy, A. 1949. Faune de l'equateur Africain Français. Vol. 2, mammifères. Encyclopédie Biologique 36. Lechevalier. Paris.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"extinct","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"extinct (?)","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Henschel, P., Azani, D., Burton, C., Malanda, G., Saidu, Y., Sam, M. and Hunter, L. 2010. Lions status updates from five range countries in West and Central Africa. Cat News, 52, Spring 2010.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"extinct","country_references":"Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct","country_references":"Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Smithers, R. H. N. 1966. The mammals of Rhodesia, Zambia and Malawi. Collins. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Sayer, J. 1977. Conservation of large mammals in the Republic of Mali. Biological Conservation: 12: 245-263.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"extinct","country_references":"Padial, J.M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia 69(2): 239-243; Padial, J.M. and Ibez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia 69(2): 239-243; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Chardonnet, P., Mésochina, P., Renaud, P.-C., Bento, C., Conjo, D., Fusari, A., Begg, C., Foloma, M. and Pariela, F. 2009. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Mozambique. SCI Foundation, Campfire Association, DNAC/MITUR \u0026 IGF Foundation. ; Chardonnet, P., Msochina, P., Renaud, P.-C., Bento, C., Conjo, D., Fusari, A., Begg, C., Foloma, M. and Pariela, F. 2009. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Mozambique. SCI Foundation, Campfire Association, DNAC/MITUR \u0026 IGF Foundation. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Stander, P. 1990. Lions \u003Ci\u003EPanthera leo\u003C/i\u003E in Etosha National Park, Namibia. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14: : 41095.; Stander, P. 2000. Conservation of lions and other large carnivores in the Kunene Region, Namibia. Ministry of Environment and Tourism, Quarterly Report, May 2000. Namibia. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Koster, S. 1981. A survey of the vegetation and large mammals of Park W, Niger. M.Sc. Thesis, Michigan State University, Michigan . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"extinct","country_references":"Roberts, T. J. 1977. The mammals of Pakistan. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"extinct","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. and Verschuren, J. 1977. Wildlife and parks in Senegal. Oryx: 14: 36-46.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"extinct","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; IUCN 2006. Conservation strategy for the lion in West and Central Africa. Yaounde, Cameroon.; Rosevear, D. R. 1974. The carnivores of West Africa. British Museum (Natural History). London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Hayward, M.W. and Hayward, G.J. 2007. Activity patterns of reintroduced lion \u003Ci\u003EPanthera leo\u003C/i\u003E and spotted hyaena \u003Ci\u003ECrocuta crocuta\u003C/i\u003E in the Addo Elephant National Park, South Africa. African Journal of Ecology: 45: 135-141.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Wilson, R. T. 1980. Wildlife in northern Darfur, Sudan: a review of its distribution and status in the recent past and at present. Biological Conservation: 17: 85-101.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"extinct (?)","country_references":"Bauer, H., Chardonnet, P. and Nowell, K. 2005. Status and distribution of the lion (Panthera leo) in east and southern Africa. Background paper for the East and Southern African Lion Conservation Workshop January 2006, Johannesburg, South Africa. Cambridge, UK.; Nowell, K. and Jackson, P. 1996. Wild cats: status survey and conservation action plan. IUCN/SSC Cat Specialist Group IUCN. Switzerland.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"extinct","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Treves, A., Plumptre, A.J., Hunter, L.T.B. and Ziwa, J. 2009. Identifying a potential lion \u003Ci\u003EPanthera leo\u003C/i\u003E stronghold in Queen Elizabeth National Park, Uganda, and Parc National des Virunga, Democratic Republic of Congo. Oryx: 43: 60-66.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Borgerhoff Mulder, M., Caro, T. and Msago, O.A. 2007. The role of research in evaluating conservation strategies in Tanzania: the case of the Katavi-Rukwa ecosystem. Conservation Biology.: 21: 647-658.; Caro, T. 2007. Behavior and conservation: a bridge too far? Trends in Ecology and Evolution.: 22: 394-400.; Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Creel, S. and Creel, N.M. 1997. Lion density and population structure in the Selous Game Reserve: evaluation of hunting quotas and offtake. African Journal of Ecology.: 35: 83-93.; Dinesen, L., Lehmberg, T., Rahner, M.C. and Fjelds, J. 2001. Conservation priorities for the forests of the Udzungwa Mountains, Tanzania, based on primates, duikers and birds. Biological Conservation: 99: 223-236.; Estes, R.D., Atwood, J.L. and Estes, A.B. 2006. Downward trends in Ngorongoro Crater ungulate populations 1986-2005: conservation concerns and the need for ecological research. Biological Conservation: 131: 106-120.; Frank, L., Hemson, G., Kushnir, H. and Packer, C. 2006. Lions, Conflict and Conservation in Eastern and Southern Africa. Background paper for the eastern and southern African lion conservation workshop, Johannesburg, South Africa. ; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Homewood, K.M. and Rodgers, W.A. 1999. Maasailand Ecology. Pastoralist development and wildlife conservation in Ngorongoro, Tanzania. Cambridge University Press. Cambridge, UK.; Kiffer, C., Meyer, B., Muhlenberg, M. and Waltert, M. 2009. Plenty of prey, few predators: what limits lions \u003Ci\u003EPanthera leo\u003C/i\u003E in Katav National Park, western Tanzania. Oryx: 43: 52-59.; Kissui, B.M. and Packer, C. 2004. Top-down population regulation of a top predator: lions in the Ngorongoro Crater. Proceedings of the Royal Society of London B.: 271: 1867-1874.; Lindsey, P.A., Frank, L.G., Alexander, R., Mathieson, A. and Romanach, S.S. 2006. Trophy hunting and conservation in Africa: problems and one potential solution. Conservation Biology: 21: 880-883.; Mésochina, P., Mbangwa, O., Chardonnet, P., Mosha, R., Mtui, B., Drouet, N., Crosmary, W. and Kissui, B. 2010. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Tanzania. SCI Foundation, MNRT-WD, TAWISA, IGF Foundation. Paris, France. ; Msochina, P., Mbangwa, O., Chardonnet, P., Mosha, R., Mtui, B., Drouet, N., Crosmary, W. and Kissui, B. 2010. Conservation status of the lion (\u003Ci\u003EPanthera leo\u003C/i\u003E Linnaeus, 1758) in Tanzania. SCI Foundation, MNRT-WD, TAWISA, IGF Foundation. Paris, France. ; Packer, C. 2006. Best practices for trophy hunting of African lions. Proceedings of the first Tanzania lion and leopard conservation action plan workshop Tanzania Carnivore Unit, TAWIRI. Arusha, Tanzania. 7-15.; Packer, C., Altizer, S., Appel, M., Brown, E., Martenson, J., O'Brien, S.J., Roelke-Parker, M., Hofmann-Lehmann, R. and Lutz, H. 1999. Viruses of the Serengeti: patterns of infection and mortality in African lions. Journal of Animal Ecology: 68: 1161-1178.; Packer, C., Brink, H., Kissui, B., Maliti, H., Kushnir, H. and Caro, T. 2011. Effects of trophy hunting on lion and leopard populations in Tanzania. Conservation Biology: 25: 142-153.; Packer, C., Ikanda, D., Kissui, B. and Kushnir, H. 2005. Conservation biology: Lion attacks on humans in Tanzania. Nature: 436: 927-928.; Ray, J.C., Hunter, L., and Zigouris, J. 2005. Setting Conservation and Research Priorities for Larger African Carnivores. WCS Working Paper No. 24 Wildlife Conservation Society. New York.; Sinclair, A.R.E., Mduma, S.A.R, Hopcraft, J.G.C., Fryxell, J.M., Hilborn, R. and Thirgood, S. 2007. Long-term ecosystem dynamics in the Serengeti: lessons for conservation. Conservation Biology: 21: 580-590.; Whitman, K.L., Starfield, A.M., Quadling, H. and Packer, C. 2007. Modeling the effects of trophy selection and environmental disturbance on a simulated population of African lions. Conservation Biology: 21: 591-601.; Whitman, K., Starfield, A.M., Quadling, H.S. and Packer, C. 2004. Sustainable trophy hunting of African lions. Nature: 428: 175-178.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Chardonnet, Ph. (ed.) 2002. Conservation of the African Lion : Contribution to a Status Survey. France \u0026 USA International Foundation for the Conservation of Wildlife \u0026 Conservation Force.; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bauer, H. and Van Der Merwe, S. 2004. Inventory of free-ranging lions in Africa. Oryx: 38: 26-31.; Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Haas, S.K., Hayssen, V. and Krausman, P.R. 2005. \u003Ci\u003EPanthera leo\u003C/i\u003E. Mammalian Species: 762: 1-11.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94458,"full_name":"Panthera pardus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Leopard","convention_language":true,"id":null},{"lang":"French","names":"Léopard","convention_language":true,"id":null},{"lang":"Spanish","names":"Leopardo","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Busby, G.B.J., Gottelli, D., Wacher, T., Marker, L., Belbachir, F., De Smet, K., Belbachir-Bazi, A. and Fellous, A. 2009. Genetic analysis of scat reveals leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in southern Algeria. Oryx: 43: 412-415.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Horsten, F. 1982. Os parques nacionais e os outras zones de protecao da natureza de Angola. Ministerio da Agricultura, Direcao Nacional da Conservacao da Natureza. Luanda. ; Horsten, F. 1982. Os parques nacionais e os outras zones de protecçao da natureza de Angola. Ministerio da Agricultura, Direcçao Nacional da Conservacçao da Natureza. Luanda. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Khan, M. A. R. 1984. Endangered mammals of Bangladesh. Oryx: 18: 152-156.; Khan, M. A. R. 1985. Mammals of Bangladesh. Nazma Reza. Dhaka.; Sarker, S. U. and Sarker, N. J. 1984. Mammals of Bangladesh - their status, distribution and habitat. Tigerpaper: 11: 8-13.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Sayer, J. A. and Green, A. A. 1984. The distribution and status of large mammals in Benin. Mammal Review: 14: 37-50.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Chakraborty, S. 1975. On a collection of mammals from Bhutan. Records of the Zoological Survey of India: 68: 1-20.; Wikramanayake, E. D. and Wangchuk, S. 1993. An assessment of biodiversity in the proposed Royal Manas-Black Mountains National Park complex. Prepared for Nature Conservation Division, Department of Forests, Royal Government of Bhutan and WWF Bhutan Program. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Roure, G. 1968. Petit atlas de classification, de morphologie, de repartition et de determination des animaux sauvages de Haute Volta et des pays voisins. Direction des eaux et forets, Ministere de l'Agriculture. Ouagadougou, Haute-Volta.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Anon. 2004. Données statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Anon. 2004. Donnes statistiques des produits forestiers non-ligneux du Burundi. http://www.fao.org/Docrep/003/X6698F/X6698F04.htm FAO. ; Wilson, V. J. 1990. Preliminary survey of the duikers and other large mammals of Burundi, East Africa. Chipangali Wildlife Trust. Bulawayo, Zimbabwe. ","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Walston, J. 2001. Mammals of Cambodia. In M. C. Baltzer, Nguyen Thi Dao and R. G. Shore (eds.) Towards a vision for biodiversity conservation in the forests of the Lower Mekong Ecoregion Complex WWF Indochina Program. Hanoi.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bauer, H. and Kari, S. 2001. Assessment of the people-predator conflict through thematic PRA in the surroundings of Waza National Park, Cameroon. PLA Notes: 41: 9-13.; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bnou et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Lige (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Lige (Belgium). 1-45.; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2001. Birds and mammals on Mt Cameroon: an update of the state of knowledge and further fieldwork around Mann's Spring. Tauraco Press. Lige (Belgium). ; Faucher, I. 1999. Preliminary zoological survey of the Bakossi Mountains with special reference to large and medium-size mammals and birds. unpublished. 1-23.; King, S. 1994. Utilisation of wildlife in Bakossiland, west Cameroon. TRAFFIC Bulletin; 14: 63-73; Sunderland-Groves, J. L. and Maisels, F. 2003. Large mammals of Takamanda Forest Reserve, Cameroon. In: Comiskey, J. A. and Sunderland, T. C. H. (eds.) Takamanda: the biodiversity of an African Rainforest. SI/MAB Series Smithonian Institution. Washington, D. C. 8: 111-127.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Keith, J. O. and Plowes, D. C. H. 1997. Considerations of wildlife resources and land use in Chad. Productive Sector Growth and Environment Division, Office of Sustainable Development, Bureau for Africa, U.S. Agency for International Development. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Jackson, P. 1984. The plight of cats. A summary report on the Cat Specialist Group workshop, Kanha National Park, India, 9-12. April 1984. Cat News 1: 1-15.; Lau, M.W.-N., Fellowes, J.R. and Chan, B.P.L. 2010. Carnivores (Mammalia: Carnivora) in South China: a status review with notes on the commercial trade. Mammal Review: 40: 247-292.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zeng Z, Song Y, Ma Y, Wang X, Wu X, Xie Z., Shao J and Li C. 2007. Fauna characteristics and ecological distribution of Carnivora and Artiodactyla in Niubeiliang National Nature Reserve, China. Frontiers of Biology in China: 2: 92-99.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Granjon, L. 1991. Liste préliminaire des mammifères du Congo. Tauraco Res. Rep. : 4: 297-310.; Dowsett, R. J. and Granjon, L. 1991. Liste prliminaire des mammifres du Congo. Tauraco Res. Rep. : 4: 297-310.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Wilson, V. J. and Wilson, B. L. P. 1991. La chasse traditionelle et commerciale dans le sud-ouest du Congo. In R. J. Dowsett and F. Dowsett-Lemaire (eds.) Flore et faune du bassin du Kouilou (Congo) et leur exploitation. Tauraco Research Report: 4: 279-289 .","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, V. J. 1985. Visit to Cte d'Ivoire, West Africa, September-October 1985. Chipangali Wildlife Trust, Report No. 1","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Krunkelsven, E. V., Bila-Isia, I. and Draulans, D. 2000. A survey of bonobos and other large mammals in the Salonga National Park, Democratic Republic of Congo. Oryx: 34: 180-187.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Anon. 1988. Cats in Djibouti. Cat News: 9: 19.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Osborn, D. J. and Helmy, I. 1980. The contemporary land mammals of Egypt (including Sinai). Fieldiana Zoology: 5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Basilio, A. 1962. La vida animal en la Guinea Espanola. Instituto de Estudios Africanos. Madrid.; Fa, J. E. and Garca Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52; Fa, J. E. and García Yuste, J. E. 2001. Commercial bushmeat hunting in the Monte Mitra forests, Equatorial Guinea: extent and impact. Animal Biodiversity and Conservation: 24(1): 31-52","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Kingdon, J. and Hoffmann, M. 2013. Volume V. Carnivores, pangolins, equids and rhinoceroses. In: \u003Ci\u003EMammals of Africa\u003C/i\u003E. Bloomsbury Publishing, London.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Brown, L. H. 1975. A report on the wildlife situation in Ethiopia, November 1975. Report to World Wildlife Fund . ; Corbet, G. B. and Yalden, D. W. 1972. Recent records of mammals (other than bats) from Ethiopia. Bulletin of the British Museum (Natural History) Zoology: 22: 211-252.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Tutin, C. E. G., White, L. J. T. and Mackanga-Missandzou, A. 1997. The use by rain forest mammals of natural forest fragments in an equatorial African savanna. Conservation Biology: 11: 1190-1203.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Asibey, E. O. A. 1972. The present status of wildlife conservation in Ghana. In: Happold, D. C. D. (ed.), Wildlife conservation in West Africa. IUCN New Series 22 Morges.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Barnett, A. A. and Prangley, M. L. 1997. Mammalogy in the Republic of Guinea: an overview of research from 1946 to 1996, a preliminary check-list and a summary of research recommendations for the future. Mammal Review: 27: 115-164.; Ziegler, S., Nikolaus, G. and Hutterer, R. 2002. High mammalian diversity in the newly established National Park of Upper Niger, Republic of Guinea. Oryx: 36: 73-80.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"extinct","country_references":"Marshall, P. 1967. Wild mammals of Hong Kong. Oxford University Press. Oxford.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Anon. 1981. Rare and endangered animals of India. Government of India.; Balakrishnan, M. 1984. The larger mammals and their endangered habitats in the Silent Valley forests of south India. Biological Conservation: 29: 277-286.; Balakrishnan, M. and Easa, P. S. 1986. Habitat preferences of the larger mammals in the Parambikulam Wildlife Sanctuary, Kerala, India. Biological Conservation: 37: 191-200.; Harihar, A., Pandav, B. and Goyal, S.P. 2009. Density of leopards (\u003Ci\u003EPanthera pardus\u003C/i\u003E) in the Chilla Range of Rajaji National Park, Uttarakhand, India. Mammalia: 73: 68-71.; Mondal, K., Gupta, S., Qureshi, Q. and Sankar, K. 2011. Prey selection and food habits of leopard (\u003Ci\u003EPanthera pardus fusca\u003C/i\u003E) in Sariska Tiger Reserve, Rajasthan, India. Mammalia: 75: 201-205.; Sathyakumar, S., Bashir, T., Bhattacharya, T. and Poudyal, K. 2011. Assessing mammal distribution and abundance in intricate eastern Himalayan habitats of Khangchendzonga, Sikkim, India. Mammalia: 75: 257-268.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Kiabi, B. H., Dareshouri, B. F. Ghaemi, R. A. and Jahanshahi, M. 2002. Population status of the Persian Leopard (\u003Ci\u003EPanthera pardus saxicolor\u003C/i\u003E Pocock, 1927) in Iran. Zoology in the Middle East: 26: 41-47.; Lay, D. M. 1967. A study of the mammals of Iran. Fieldiana Zoology: 54: 1-282.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Mahdi, N. and Georg, P. V. 1969. A systematic list of the vertebrates of Iraq. Iraq Natural History Museum, University of Baghdad; Publication: 26: 104 pp.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Ilany, G. 1990. Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Israel. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14.: 4-5.; Mendelssohn, H. 1989. Felids in Israel. Cat News: 10: 2-4.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Amr, Z. S. 2003. Animal biodiversity in Jordan. http://amon.nic.gov.jo/biodiversity/index.htm . ; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Qarqaz, M., and Abu Baker, M. 2006. The Leopard in Jordan. Cat News: Special Issue 1: 9-10.; Qumsiyeh, M. B., Amr, Z.S., and Shafee D. 1993. Status and conservation of carnivores in Jordan. Mammalia: 57: 55-62.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Hamilton, P. H. 1981. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E and the Cheetah \u003Ci\u003EAcinonyx jubatus\u003C/i\u003E in Kenya: ecology, status, conservation, management. Report prepared for the Office of Endangered Species. U.S. Fish and Wildlife Service. Washington, D.C. ; Ilany, G. 1990. Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Israel. In: Anon, Cat Specialist Group meeting reports. Cat News 12: 2-14.: 4-5.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. 1940. Liste provisoire de mammifères de l'Indochine française. Mammalia: 4: 20-29.; Delacour, J. 1940. Liste provisoire de mammifres de l'Indochine franaise. Mammalia: 4: 20-29.; Duckworth, J. W., Timmins, R. J., Khounboline, K., Salter, R. E. and Davidson, P. 1999. Large mammals. In Duckworth, J. W., Salter, R. E. and Khounboline, K. Wildlife in Lao PDR: 1999 Status Report. IUCN-The World Conservation Union / Wildlife Conservation Society / Centre for Protected Areas and Watershed Management. Vientiane.; Sayer, J. 1983. Nature conservation priorities in Laos. Tigerpaper: 10: 10-14.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.; Lewis, R. E., Lewis, J. H. and Atallah, S. I. 1968. A review of Lebanese mammals, Carnivora, Pinnipedia, Hyracoidea and Artiodactyla. Journal of Zoology, London: 154: 517-531.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Bene, J.K., Bitty, E.A., Bohoussou, K.H., Abedi-, M., Gamys, J. and Soribah, P.A.J. 2013. Current conservation status of large mammals in Sime Darby oil palm concession in Liberia. Global Journal of Biology, Agriculture \u0026 Health Sciences, 2(3): 93-102.; Bene, J.K., Bitty, E.A., Bohoussou, K.H., Abedi-, M., Gamys, J. and Soribah, P.A.J. 2013. Current conservation status of large mammals in Sime Darby oil palm concession in Liberia. Global Journal of Biology, Agriculture \u0026 Health Sciences, 2(3): 93–102.; Hoke, P., Demey, R. and Peal, A (eds.) 2007. A rapid biological assessment of North Lorma, Gola and Grebo National Forests, Liberia. RAP Bulletin of Biological Assessment . ; Kuhn, A. J. 1965. A provisional checklist of the mammals of Liberia. Senckenbergiana Biologica: 46: 321-340.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"extinct","country_references":"Hufnagl, E. 1972. Libyan mammals. Oleander Press. Cambridge.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Ansell, W. F. H. and Dowsett, R. J. 1988. Mammals of Malawi - an annotated checklist and atlas. Trendrine Press. St. Ives, Cornwall.; Happold, D. C. D. and Happold, M. 1989. The mammals of Zambia. Nyala: 14: 5-20.; Sweeney, R. C. H. 1959. A preliminary annotated checklist of the mammals of Nyasaland. Nyasaland Society. Blantyre.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Azlan, J.M. and Sharma, D.S. K. 2006. The diversity and activity patterns of wild felids in a secondary forest in Peninsular Malaysia. Oryx: 40: 36-41.; Kawanishi, K., Sunquist, M. E. 2004. Conservation status of tigers in a primary rainforest of Peninsular Malaysia. Biological Conservation: 120: 329-344; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Caspary, H.-U., Mertens, A. D. and Niagat, B. 1998. Possibilits d'une exploitation durable des ressources fauniques dans la Rserve de Faune du Bafing, Mali. Deutsche Gesellschaft fr Technische Zusammenarbeit. Eschborn. 130; Caspary, H.-U., Mertens, A. D. and Niagaté, B. 1998. Possibilités d'une exploitation durable des ressources fauniques dans la Réserve de Faune du Bafing, Mali. Deutsche Gesellschaft für Technische Zusammenarbeit. Eschborn. 130; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"Padial, J. M. and Ibáñez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Padial, J. M. and Ibez, C. 2005. New records and comments for the Mauritanian mammal fauna. Mammalia: 69(2): 239-243.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Cabrera, A. 1932. Los mamiferos de Marruecos. Trabajos del Museo Nacional de Ciencias Naturales, Serie Zoologica: 57: 1-361.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Smithers, R. H. N. and Tello, J. L. P. Lobao. 1976. Checklist and atlas of the mammals of Moçambique. Museum Memoir, The Trustees of the National Museum of Rhodesia: 8: 1-184.; Tello, J. 1988. Cats in Mozambique. Cat News: 8: 16-18.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Corbet, G. B. and Hill, J. E. 1992. The mammals of the Indomalayan region: a systematic review. Oxford University Press. Oxford.; Salter, R. E. 1983. Summary of currently available information on internationally threatened wildlife species in Burma. Nature Conservation and National Parks Project, Burma. Report for Food and Agriculture Organization of the United Nations . ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Mitchell, R. M. 1975. A checklist of Nepalese mammals. Säugetierkundliche Mitteilungen: 23: 152-157.; Mitchell, R. M. 1975. A checklist of Nepalese mammals. Sugetierkundliche Mitteilungen: 23: 152-157.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Poche, R. M. 1973. Niger's threatened park. Oryx: 12: 216-222.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Anadu, P. A. 1987. Progress in the conservation of Nigeria's wildlife. Biological Conservation: 41: 237-251.; Happold, D. C. D. 1987. The mammals of Nigeria. Clarendon Press. Oxford.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Rosevear, D. R. 1953. Checklist and atlas of Nigerian mammals. Government Printer. Lagos.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Nawaz, M. 1983. The endangered mammals of Pakistan. Tigerpaper: 10: 15-20.; Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Won Pyong-Oh. 1976. Checklist of the mammals of Korea. Institute of Ornithology, Kyung Hee University. Seoul.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Monfort, A. 1992. Première liste commentée des mammifères du Rwanda. Journal of African Zoology: 106: 141-151.; Monfort, A. 1992. Premire liste commente des mammifres du Rwanda. Journal of African Zoology: 106: 141-151.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Anon. 1992. Arabian Leopard survives in Saudi Arabia. Cat News: 17: 16.; Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dupuy, A. R. and Verschuren, J. 1977. Wildlife and parks in Senegal. Oryx: 14: 36-46.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Anon. 1986. New hope for the Southern Sea Otter. Endangered Species Technical Bulletin: 11: 12-14.; Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69-77.; Lindsell, J.A., Klop, E. and Siaka, A.M. 2011. The impact of civil war on forest wildlife in West Africa: mammals in Gola Forest, Sierra Leone. Oryx, 45(01): 69–77.; Teleki, G. 1980. Status report on wildlife survey project, Sierra Leone, West Africa, conducted November 1979 through May 1980. Unpublished. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"extinct","country_references":"Harrison, J. 1966. An introduction to the mammals of Singapore and Malaya. Singapore Branch, Malayan Nature Society. Singapore.; Medway, Lord. 1969. The wild mammals of Malaya and Singapore. Oxford University Press. Oxford.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Skinner, J. D., Fairall, N. and Bothma, J. du P. 1977. South African red data book - large mammals. Cooperative Scientific Programmes Council for Scientific and Industrial Research. South African National Scientific Programme Report No.; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Stuart, C. T., Macdonald, I. A. W. and Mills, M. G. L. 1985. History, current status and conservation of large mammalian predators in Cape Province, Republic of South Africa. Biological Conservation: 31: 7-19.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Hillman, J. C. 1982. Wildlife information booklet. Department of Wildlife Management, Democratic Republic of the Sudan Ministry of Wildlife Conservation and Tourism, Southern Region.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Hameed, S.M.A. and Eljack, A.O. 2003. Ramsar Information Sheet (RIS) for Dinder National Park, Sudan. Wetlands International. 40; Setzer, H. W. 1956. Mammals of the Anglo-Egyptian Sudan. Proceedings of the U.S. National Museum: 106: 447-615.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"extinct","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Verffentlichungen der Zoologischen Staatssammlung Mnchen: 18: 159-225.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) Syriens und des Libanon. Veröffentlichungen der Zoologischen Staatssammlung München: 18: 159-225.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Bain, J. R. and Humphrey, S. R. 1980. A profile of the endangered species of Thailand. Report No. 4 Office of Ecological Services, Florida State Museum.; Boonsong Lekagul and McNeely, J. A. 1977. Mammals of Thailand. Association for the Conservation of Wildlife. Bangkok.; Rabinowitz, A. 1989. The density and behaviour of large cats in a dry tropical forest mosaic in Huai Kha Khaeng Wildlife Sanctuary, Thailand. Natural History Bulletin of the Siam Society: 37: 235-251.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Grubb, P., Jones, T. S., Davies, A. G., Edberg, E., Starin, E. D. and Hill, J. E. 1998. Mammals of Ghana, Sierra Leone and The Gambia. The Trendrine Press. St Ives, Cornwall.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Baskaya, S. and Bilgili, E. 2004. Does the leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E still exist in the Eastern Karadeniz Mountains of Turkey? Oryx: 38: 228-232.; Borner, M. 1977. Leopards in western Turkey. Oryx: 14: 26-30.; Kumerloeve, H. 1975. Die saugetiere (Mammalia) der Turkei. Veroffentlichungen der Zoologischen Staatssammlung Munchen: 18: 69-158.; Turan, N. 1984. Trkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Turan, N. 1984. Türkiye'nin av ve yaban hayvanlari memeliler. Ongun Kardesler Matbaacilik Sanayii. Ankara.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Bere, R. M. 1962. The wild mammals of Uganda. Longmans. London.; Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Harrison, D. L. 1968. The mammals of Arabia, Vol. II, Carnivora, Artiodactyla and Hyracoidea. Benn. London.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Davies, G. and Vanden Berghe, E. 1994. Check-list of the mammals of East Africa. East Africa Natural History Society. Nairobi.; Kingdon, J. 1977. East African mammals. An atlas of evolution in Africa. Vol. III part A. Academic Press. London.; Moreau, R. E. and Pakenham, R. H. W. 1940. The land vertebrates at Pemba, Zanzibar and Mafia: a zoogeographical study. Proceedings of the Zoological Society of London: 110: 97-128.; Swynnerton, G. H. and Hayman, R. W. 1951. A checklist of the land mammals of the Tanganyika Territory and the Zanzibar Protectorate. Journal of the East African Natural History Society: 20: 274-392.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Brickle, N., Nguyen Cu, Ha Quy Quynh, Nguyen Thai Tu Cuong and Hoang Van San. 1998. The status and distribution of Green Peafowl \u003Ci\u003EPavo muticus\u003C/i\u003E in Dak Lak Province, Vietnam. BirdLife International - Vietnam Programme. Hanoi. 56; Cox, C. R., Vu Van Dung and Pham Mong Giao. 1992. Report of a management feasability study of the Muong Nhe Nature Researve (November/December 1991). WWF and Ministry of Forestry. Hanoi. 75; Kuznetsov, G. V. and Rozhnov, V. V. 1998. [Mammals of the mountain region of Sa Pa and Fan Si Pan: biodiversity and problems of their conservation]. In: Korzun, L. P. and Kalyakin, M. V. (eds.) [Materials of zoological and botanical studies in Fan Si Pan summit area (North Vietnam)]. Joint Russian-Vietnamese Science and Technological Tropical Centre. Moscow and Hanoi.; Laurie, A., Ha Dinh Duc and Pham Trung Anh. 1989. Survey for Kouprey (\u003Ci\u003EBos sauveli\u003C/i\u003E) in western Daklak Province, Vietnam. The Kouprey Conservation Trust. 37; Osborn, T., Fanning, E. and Grindley, M (eds.) 2000. Pu Hoat Proposed Nature Reserve. Frontier Vietnam. Hanoi. 65; Osgood, W. H. 1932. Mammals of the Kelley-Roosevelts and Delacour Asiatic expeditions. Field Museum of Natural History, Zoological Series: 18: 193-339.; Peenen, P. F. D. van, Ryan, P. and Light, R. 1969. Preliminary identification manual for mammals of South Vietnam. Smithsonian Institution. Washington.; Sokolov, V. G. et al. 1986. [Taxonomic list of the mammals of Vietnam.]. In: Sokolov, V. E. (ed.) [Mammals and birds of Vietnam and their ecology]. Nauka. Moscow.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Ansell, W. F. H. 1978. The mammals of Zambia. National Parks and Wildlife Service. Chilanga.; Myers, N. 1976. The Leopard \u003Ci\u003EPanthera pardus\u003C/i\u003E in Africa. IUCN Monograph No.5. IUCN. Morges.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Bronner, G. N., Hoffmann, M., Taylor, P. J. , Chimimba, C. T., Best, P. B., Matthee, C. A. and Robinson, T. J. 2003. A revised systematic checklist of the extant mammals of the southern African subregion. Durban Museum Novitates: 28: 56-106; Smithers, R. H. N. 1983. The mammals of the Southern African subregion. University of Pretoria. Pretoria.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94459,"full_name":"Ursus arctos","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Anon. 1981. Afghanistan. A contribution to a conservation strategy. Volume II: Appendixes. UNDP/FAO/National Parks and Wildlife Management Afghanistan. FO:DP/AFG/78/007 Technical Report, Vol. Rome.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Genov, P. and Gancev, R. 1987. Der Braunbar (\u003Ci\u003EUrsus arctos\u003C/i\u003E L., 1758) in Bulgarien - Verbreitung, Anzahl, Schaden. J. Jagdwiss.: 33: 145-152.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifères sauvages de France. Ministère de L'Environment, Société Française pour l'Etude et la Protection des Mammifères. Paris.; Fayard, A., Saint Girons, M. C. and Maurin, H (eds.) 1984. Atlas des mammifres sauvages de France. Ministre de L'Environment, Socit Franaise pour l'Etude et la Protection des Mammifres. Paris.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Blab, J. and Nowak, E. 1978. Rote liste der säugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefährdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.; Blab, J. and Nowak, E. 1978. Rote liste der sugetiere (Mammalia). In: Blab, J., Nowak, E. and Trautmann, W. (eds) Rote liste der gefhrdeten tiere und pflanzen in der Bundesrepublic Deutschland. Kilda Verlag. Germany.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Grachev, Y.A. 1976. Distribution and quantity of brown bears in Kazakhstan. Bears: thier biology and Management. A selection of papers from the third international conference on bear research and Management IUCN Publications New Series. Binghamton, New York, U.S.A. and Moscow, U.S.S.R. 299-300; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J. and Medellín, R. A. 2002. The mammals of México: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Ceballos, G., Arroyo-Cabrales, J. and Medelln, R. A. 2002. The mammals of Mxico: composition, distribution, and conservation status. Occasional Papers, Museum of Texas Tech University: 218: 27.; Hall, E. R. 1981. The mammals of North America. 2 vols. (2nd edition). Wiley. New York.; Ramírez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relación nomenclatural de los Mamíferos terrestres de México. Acta Zoológica Mexicana (n. s.): 21(1): 21-82; Ramrez-Pulido, J., Arroyo-Cabrales, J. and Castro-Campillo, A. 2005. Estado actual y relacin nomenclatural de los Mamferos terrestres de Mxico. Acta Zoolgica Mexicana (n. s.): 21(1): 21-82; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"IUCN. 2007. \u003Ci\u003EUrsus arctos\u003C/i\u003E. In: European Mammal Assessment, http://ec.europa.eu/environment/nature/conservation/species/ema/species/ursus_arctos.htm IUCN. ; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Wilson, D.E. and Mittermeier, R.A. 2009. Handbook of the mammals of the world. Vol. I. Carnivores. Lynx Edicions. Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beiträge: 51: 229-254.; Krystufek, B. and Petkovski, S. 2003. Annotated checklist of the mammals of the Republic of Macedonia. Bonner Zoologische Beitrge: 51: 229-254.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Elgmork, K. 1994. The decline of the Brown Bear \u003Ci\u003EUrsus arctos\u003C/i\u003E in central south Norway. Biological Conservation: 69: 123-129.; Kolstad, M., Mysterud, I., Kvam, T., Sfrenson, O. J. and Wikan, S. 1986. Status of the Brown Bear in Norway: distribution and population 1978-82. Biological Conservation: 38: 79-99.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Roberts, T. J. 1997. The mammals of Pakistan. Revised edition. Oxford University Press. Karachi.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Danilov, P. I. 1994. The Brown Bear of northwest Russia. International Conference on Bear Research and Management. 199-200; Swenson, J.E., Taberlet, P. and Bellemain, E. 2011. Genetics and conservation of European brown bears \u003Ci\u003EUrsus arctos\u003C/i\u003E. Mammal Review: 41: 87-98.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"Linnell, J., Salvatori, V. and Boitani, L. 2007. \u003Ci\u003EGuidelines for population level management plans for large carnivores in Europe\u003C/i\u003E. A Large Carnivore Initiative for Europe report prepared for the European Commission. Trondheim, Norway. 1-85 pp.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Sabados, K. and Simiak, M. 1981. [Distribution and management of the Brown Bear (\u003Ci\u003EUrsus arctos\u003C/i\u003E L.) in Slovakia]. Folia Venatoria: 10: 15-33.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Delibes, M. 1983. Distribution and ecology of the Iberian carnivores: a short review. XV Congr. Int. Fauna Cinegética y Silvestre. Trujillo 1981 . 359-378.; Delibes, M. 1983. Distribution and ecology of the Iberian carnivores: a short review. XV Congr. Int. Fauna Cinegtica y Silvestre. Trujillo 1981 . 359-378.; Garzon, P., Palacios, F. and Garzon, J. 1980. Situacíon actual del oso pardo (\u003Ci\u003EUrsus arctos pyrenaicus\u003C/i\u003E Fischer, 1890) en Espana y datos sobre su alimenta~íon en la Cordillera Cantábrica. I Reunión Iberoamericana de Zoólogos de Vertebrados, La Rábida 1977 . 681-683.; Garzon, P., Palacios, F. and Garzon, J. 1980. Situacon actual del oso pardo (\u003Ci\u003EUrsus arctos pyrenaicus\u003C/i\u003E Fischer, 1890) en Espana y datos sobre su alimenta~on en la Cordillera Cantbrica. I Reunin Iberoamericana de Zologos de Vertebrados, La Rbida 1977 . 681-683.; Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Mitchell-Jones, A. J., Amori, G., Bogdanowicz, W., Krystufek, B., Reijnders, P. J. H., Spitzenberger, F., Stubbe, M., Thissen, J. B. M. et al. 1999. The atlas of European mammals. T. \u0026 A. D. Poyser. London.; Swenson, J. E., Sandegren, F., Bjarvall, A., Soderberg, A., Wabakken, P. and Franzen, R. 1994. Size, trend, distribution and conservation in the Brown Bear \u003Ci\u003EUrsus arctos\u003C/i\u003E in Sweden. Biological Conservation: 70: 9-17.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Anon. 2002. List of rare and endangered species of animals, included into the Red Data Book of Tadjikistan. http://www.grida.no/enrin/biodiv/biodiv/national/tadjik/html/LISTA.HTM . 7; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian blaack bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.; Zhyriakov, V.A. and Grachev, Y.A. 1993. Central Asia and Kazakhstan. Vaisfield, M.A. \u0026 Chestin, I.E. (Eds). Bears (brown bear, polar bear, Asian black bear): distribution, ecology, use and protection Nauka Publishing House. Moscow, Russia.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Can, . E. and Togan, I. 2004. Status and management of brown bears in Turkey. Ursus: 15: 48-53.; Can, .E. and Togan, I. 2009. Camera trapping of large mammals in Yenice Forest, Turkey: local information versus camera traps. Oryx: 43: 427-430.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Peck, J. M., Pelton, M. R., Picton, H. D., Schoen, J. W. and Zager, P. 1987. Grizzly Bear conservation and management: a review. Wildlife Society Bulletin: 15: 160-169.; Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Ursidae","genus_name":"Ursus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/NC","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"populations in Mongolia and China","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94462,"full_name":"Pusa caspica","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Caspian Seal","convention_language":true,"id":null},{"lang":"French","names":"Phoque de la Caspienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Foca del Caspio","convention_language":true,"id":null}],"distributions":[{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Phocidae","genus_name":"Pusa","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94463,"full_name":"Equus africanus","author_year":"Heuglin \u0026 Fitzinger, 1866","common_names":[{"lang":"English","names":"African Wild Ass","convention_language":true,"id":null},{"lang":"French","names":"Âne sauvage d'Afrique","convention_language":true,"id":null},{"lang":"Spanish","names":"Asno Salvaje de África","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Anon. 1977. Protection, conservation and management of threatened and endangered species in Egypt. Report of US Fish and Wildlife Service National Park Study Mission, July 30, 1977 . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Kingdon, J. and Hoffmann, M. 2013. Volume V. Carnivores, pangolins, equids and rhinoceroses. In: \u003Ci\u003EMammals of Africa\u003C/i\u003E. Bloomsbury Publishing, London.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Bolton, M. 1973. Notes on the current status and distribution of some large mammals in Ethiopia (excluding Eritrea). Mammalia: 37: 562-586.; Klingel, H. 1972. Somali Wild Ass status survey in the Danakil Region, Ethiopia. Final report WWF Project 496 . ","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Fagotto, F. 1985. Larger animals of Somalia in 1984. Environmental Conservation: 12: 260-264.; Funaioli, U. and Simonetta, A. M. 1966. The mammalian fauna of the Somali Republic: status and conservation problems. Monitore Zoologico Italiano (Suppl.): 74: 285-295.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Moehlman, P.D. 2002. Equids: zebras, asses and horses. Status survey and conservation action plan. IUCN. Switzerland and Cambridge, UK.; van Bemmel, A.C.V. 1972. Some remarks on the African wild ass. Zoologische Mededelingen: 47: 261-272.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EEquus asinus\u003C/i\u003E (only wild populations)","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94467,"full_name":"Giraffa camelopardalis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Giraffe","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Giraffidae","genus_name":"Giraffa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94469,"full_name":"Anous minutus","author_year":"Boie, 1844","common_names":[],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Anous","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94471,"full_name":"Gyps tenuirostris","author_year":"Gray, 1844","common_names":[{"lang":"English","names":"Slender-billed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94472,"full_name":"Gyps rueppelli","author_year":"(Brehm, 1852)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 1995. Notes on the avifauna of the Bétérou area, Borgou Province, Republic of Benin. Malimbus: 17: 63-84.; Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Bildstein, K. L., Zalles, J., Ottinger, J. and McCarthy, K. 2000. Conservation biology of the world's migratory raptors: status and strategies. In: Chancellor, R. D. and Meyburg, B.-U. (eds.) Raptors at risk WWGP, Hancock House.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dongmo, J.-B. 2004. Ornithological survey of the Tchabal-Mbabo area. Global Environment Facility. ; Dowsett-Lemaire, F. and Dowsett, R. J. 1998. Surveys of Oku Mt and other IBAs in NW Province (Cameroon), February-March 1998. Tauraco Press. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Fotso, R. C. 2001. A contribution to the ornithology of Mount Oku forest, Cameroon. Malimbus: 23: 1-12.; Larison, B., Smith, T. B., Fotso, R., McNiven, D., Holbrook, K. and Lamperti, A. 1995. Preliminary report: surveys of selected monane and lowland areas of Cameroon. WWF (unpublished). ; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Smith, T. B. and McNiven, D. 1993. Preliminary survey of the avifauna of Mt Tchabal Mbabo, west-central Cameroon. Bird Conservation International: 3: 13-19; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Sørensen, U. G., Bech, J. and Krabbe, E. 1996. New and unusual records of birds in Cameroon. Bulletin of the British Ornithologists' Club: 116: 145-155.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Demey, R., Herroelen, P. and Pedersen, T. 2000. Additions and annotations to the avifauna of Congo-Kinshasa (ex-Zaire). Bulletin of the British Ornithologists' Club: 120: 154-172.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Borrow, N. and Demey, R. 2004. Field guide to the birds of western Africa. Christopher Helm. London, United Kingdom.; Clemmons, J. R. 2003. Status survey of the African Grey Parrot (\u003Ci\u003EPsittacus erithacus timneh\u003C/i\u003E) and development of a management program in Guinea and Guinea-Bissau. Prepared for the CITES Secretariat. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Mackworth-Praed, C.W. and Grant, C.C.H.B. 1970. African handbook of birds, Series III, Volume I: Birds of west central and western Africa. Longman. London, United Kingdom.; Maclaud, C. 1906. Notes sur les mammiferes et les oiseaux de l'Afrique Occidentale Casamance, Fouta Djalon, Guinée française et portugaise. Deuxième partie: oiseaux. G. Vilette. Paris.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Van Perlo, B. 2002. Birds of western and central Africa (Collins illustrated checklist). Harper Collins. London, United Kingdom.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Gerhard, N. 1989. Birds of South Sudan. Ornithological Sub-Committee of the EAst Africa Natural History Society. Nairobi, Kenya. 124.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pope, R., Pope, J. and Gurney, M. 1999. New to Zambia: Rüppell's Vulture \u003Ci\u003EGyps rueppellii\u003C/i\u003E. 1998 Zambia Bird Report: 85-86.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Gyps","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Gyps rueppellii","author_year":"Brehm, 1852"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94474,"full_name":"Torgos tracheliotos","author_year":"(Forster, 1791)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Thonnerieux, Y. 1988. Etat des connaissances sur la reproduction de l'avifaune du Burkina Faso (ex Haute- Volta). L'Oiseau et la Revue Française Ornithologie: 58: 120-145.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"BirdLife International. 2005. Species factsheet: \u003Ci\u003ETorgos tracheliotus\u003C/i\u003E. Accessed at \u003Cwww.birdlife.org\u003E on 02/09/2005 BirdLife International. Cambridge (UK). ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Dowsett, R. J. and Forbes-Watson, A. D. 1993. Checklist of birds of the Afrotropical and Malagasy regions. Volume 1: species limits and distribution. Tauraco Press. Liège, Belgium.; Ferguson-Lees, J. and Christie, D. A. 2001. Raptors of the world. Christopher Helm. London.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.; Snow, D. W. (ed.) 1978. An atlas of speciation in African non-passerine birds. British Museum (Natural History). London.; Thiollay, J.-M. 1978. Les plaines du Nord Cameroun, centre d`hivernage de rapaces palearctiques. Alauda: 46(4): 319-326","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.; Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.; Wallace, D. I. M. 1982. Observations on migrant birds at Azraq and north-east Jordan, up to April 1967. Sandgrouse: 4: 77-99.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Massa, B. 1999. New and less known birds from Libya. Bulletin of the British Ornithologists' Club: 119: 129-133.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Crisler, T., Jameson, C. and Brouwer, J. 2003. An updated overview of the birds of W National Park, southwest Niger. Malimbus: 25: 4-30.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.; Gallagher, M. 1982. Nesting of the Lappet-faced Vulture \u003Ci\u003ETorgos tracheliotus\u003C/i\u003E in Oman. Bulletin of the British Ornithologists' Club: 102: 135-139.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dickinson, E.C. and Remsen, J.V. Jr (Eds). 2013.\u003Ci\u003E The Howard and Moore complete checklist of the birds of the World\u003C/i\u003E. 4th Edition, Vol. 1, Aves Press, Eastbourne, UK.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Porter, R. F., Christensen S. and Schiermacker-Hansen, P. 1996. Field guide to the birds of the Middle East. T. \u0026 A. D. Poyser. London.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Torgos","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Torgos tracheliotus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94476,"full_name":"Emberiza sulphurata","author_year":"Temminck \u0026 Schlegel, 1848","common_names":[{"lang":"English","names":"Yellow Bunting, Japanese Yellow Bunting","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Emberizidae","genus_name":"Emberiza","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94479,"full_name":"Lanius excubitor","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Laniidae","genus_name":"Lanius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94481,"full_name":"Lanius minor","author_year":"Gmelin, 1788","common_names":[{"lang":"English","names":"Lesser Grey Shrike","convention_language":true,"id":null},{"lang":"French","names":"Pie-grièche à poitrine rose","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Laniidae","genus_name":"Lanius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"European population","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94485,"full_name":"Squatina squatina","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Angelshark, Monkfish","convention_language":true,"id":null},{"lang":"French","names":"Ange de mer commun ou angelot","convention_language":true,"id":null},{"lang":"Spanish","names":"Angelote, Peje angel o Tiburón angel","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Proposal for the inclusion of the angelshark \u003Ci\u003E(Squatina squatina)\u003C/i\u003E on Appendix I and II of the Convention. COP12/DOC.25.1.23","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Squatiniformes","class_name":"Elasmobranchii","family_name":"Squatinidae","genus_name":"Squatina","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94489,"full_name":"Rhinobatos rhinobatos","author_year":"Linnaeus 1758","common_names":[{"lang":"English","names":"Common Guitarfish","convention_language":true,"id":null},{"lang":"French","names":"Guitare de mer commune","convention_language":true,"id":null},{"lang":"Spanish","names":"Guitarra comùn","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinobatidae","genus_name":"Rhinobatos","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Only Mediterranean population.","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94492,"full_name":"Rhynchobatus australiae","author_year":"Whitley, 1939","common_names":[{"lang":"English","names":"White-spotted Wedgefish, Bottlenose Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Last, P.R., White, W.T., de Carvalho, M.R., Seret, B., Stehmann, M.F.., Naylor, G.J.P. and Marshall, L. 2016. Rays of the World. CSIRO Publishing, Australia. 790 pp.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94496,"full_name":"Carcharhinus obscurus","author_year":"(LeSueur, 1818)","common_names":[{"lang":"English","names":"Dusky Shark","convention_language":true,"id":null},{"lang":"French","names":"Requin requiem de sable","convention_language":true,"id":null},{"lang":"Spanish","names":"Cazón","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":94498,"full_name":"Prionace glauca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Blue Shark","convention_language":true,"id":null},{"lang":"French","names":"Peau bleue","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburón azul","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2. Carchariniformes. FAO Fish. Synop., (125) Vol. 4, Pt. 2: 251-655.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Prionace","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94499,"full_name":"Lasiurus blossevillii","author_year":"(Lesson and Garnot, 1826)","common_names":[{"lang":"English","names":"Desert Red Bat","convention_language":true,"id":null},{"lang":"French","names":"Chauve-souris rousse de l'Oues","convention_language":true,"id":null},{"lang":"Spanish","names":"Murciélago rojo del desierto o murciélago rojo del oeste","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Rodrguez-Herrera, B., Chinchilla, F.A., May-Collado, L. and J. 2002. Lista de especies, endemismo y conservacin de los de mamferos de Costa Rica. Revista Mexicana de Mastozoologia, 6: 1941","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Owen, J. and Girn, L. 2012. Revised checklist and distributions of land mammals of El Salvador. \u003Ci\u003EMuseum of Texas Tech University\u003C/i\u003E, (310): 32.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Ceballos, G., Arroyo-Cabrales, J., Medelln, R.A. and Domnguez-Castellanos, Y. 2005. Lista actualizada de los mamferos de Mexico. Revista Mexicana de Mastozoologia, 9: 2171.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Reid, F. 2009. A field guide to the mammals of Central America and Southeast Mexico. Second. Oxford University Press, USA, New York, NY. 384 pp.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Wilson, D.E. and Reeder, D.M. (Eds.). 2005. \u003Ci\u003EMammal species of the world, a taxonomic and geographic reference\u003C/i\u003E. 3rd Edition, The Johns Hopkins University Press, Baltimore, Maryland. 2, 142pp.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Lasiurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94601,"full_name":"Equus ferus","author_year":"Boddaert 1785","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Perissodactyla","class_name":"Mammalia","family_name":"Equidae","genus_name":"Equus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EEquus caballus przewalskii\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94611,"full_name":"Calidris pygmaea","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Spoonbill Sandpiper, Spoon-billed Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau spatule","convention_language":true,"id":null},{"lang":"Russian","names":"Kulik-lopaten","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos cuchareta","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Thompson, P. M. and Johnson, D. L. 1996. Birding in Bangladesh: a guide to birdwatching sites and a checklist of birds. Dhakar. ","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.; Tomkovich, P. S. 1992. Migration of the Spoon-billed Sandpiper \u003Ci\u003EEurynorhynchus pygmeus\u003C/i\u003E in the Far East of the Russian Federation. In: Stilt: 21: 29-33.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.; Lim, K. S. 1994. Birds to watch: threatened birds in Singapore. In: Oriental Bird Club Bull.: 19: 52-54.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.; AOU ( American Ornithologists' Union ). 1998. Checklist of North American birds.7th edition. American Ornithologists' Union. Washington D.C.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Calidris pygmea","author_year":"(Linnaeus, 1758)"},{"full_name":"Eurynorhynchus pygmeus","author_year":"Linnaeus, 1758"},{"full_name":"Platalea pygmea","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EEurynorhynchus pygmeus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94614,"full_name":"Calidris subruficollis","author_year":"(Vieillot, 1819)","common_names":[{"lang":"Danish","names":"Prærieløber","convention_language":false,"id":null},{"lang":"Dutch","names":"Blonde Ruiter","convention_language":false,"id":null},{"lang":"English","names":"Buff-breasted Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau roussâtre","convention_language":true,"id":null},{"lang":"Polish","names":"Biegus płowy","convention_language":false,"id":null},{"lang":"Russian","names":"Zheltozobik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos canelo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Tringa subruficollis","author_year":"Vieillot, 1819"},{"full_name":"Tryngites subruficollis","author_year":"Vieillot, 1819"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ETryngites subruficollis\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":94617,"full_name":"Saundersilarus saundersi","author_year":"Swinhoe, 1871","common_names":[{"lang":"English","names":"Saunders's Gull, Chinese Black-headed Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette de Saunders","convention_language":true,"id":null},{"lang":"Spanish","names":"Gaviota de Saunders","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Saundersilarus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Chroicocephalus saundersi","author_year":"Swinhoe, 1871"},{"full_name":"Larus saundersi","author_year":"Swinhoe, 1871"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ELarus saundersi\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94619,"full_name":"Sternula lorata","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Peruvian tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne du Pérou","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrancito Peruano","convention_language":true,"id":null}],"distributions":[{"name":"Chile","country":"Chile","tags_list":"","country_references":"Araya, B. and Chester, S. 1993. The birds of Chile: a field guide.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, T. A., Parker, S. A. and Plenge, M. A. 1982. An annotated checklist of Peruvian birds. Buteo Books. Vermillion, South Dakota.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Sternula","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ESterna lorata\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94620,"full_name":"Thalasseus bernsteini","author_year":"(Schlegel, 1863)","common_names":[{"lang":"English","names":"Chinese Crested Tern, Chinese Crested-tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne d'Orient","convention_language":true,"id":null},{"lang":"Spanish","names":"Charrán Chino","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Thalasseus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Sterna bernsteini","author_year":"(Schlegel, 1863)"},{"full_name":"Sterna zimmermanni","author_year":"Reichenow, 1903"},{"full_name":"Thalasseus zimmermanni","author_year":"(Reichenow, 1903)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003ESterna bernsteini\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94622,"full_name":"Clanga clanga","author_year":"Pallas, 1811","common_names":[{"lang":"Czech","names":"Orel volavý","convention_language":false,"id":null},{"lang":"Danish","names":"Stor skrigeørn","convention_language":false,"id":null},{"lang":"Dutch","names":"Bastaardarend","convention_language":false,"id":null},{"lang":"English","names":"Greater Spotted Eagle, Spotted Eagle","convention_language":true,"id":null},{"lang":"Finnish","names":"Kiljukotka","convention_language":false,"id":null},{"lang":"French","names":"Aigle criard","convention_language":true,"id":null},{"lang":"German","names":"Schelladler","convention_language":false,"id":null},{"lang":"Hungarian","names":"Fekete sas","convention_language":false,"id":null},{"lang":"Italian","names":"Aquila anatraia maggiore","convention_language":false,"id":null},{"lang":"Polish","names":"Orlik grubodzioby","convention_language":false,"id":null},{"lang":"Portuguese","names":"Águia-gritadeira","convention_language":false,"id":null},{"lang":"Russian","names":"Bolshoy Podorlik","convention_language":false,"id":null},{"lang":"Spanish","names":"Águila moteada","convention_language":true,"id":null},{"lang":"Swedish","names":"Större skrikörn","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Clanga","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Aquila clanga","author_year":"Pallas, 1811"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAquila clanga\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"Raptors"}]},{"id":94623,"full_name":"Brotogeris pyrrhoptera","author_year":"(Latham, 1801)","common_names":[],"distributions":[{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Psittaciformes","class_name":"Aves","family_name":"Psittacidae","genus_name":"Brotogeris","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Brotogeris pyrrhopterus","author_year":"(Latham, 1801)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EBrotogeris pyrrhopterus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94672,"full_name":"Setophaga kirtlandii","author_year":"Baird, 1852","common_names":[{"lang":"English","names":"Kirtland's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Paruline de Kirtland","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Setophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Dendroica kirtlandii","author_year":"Baird, 1852"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EDendroica kirtlandii\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94674,"full_name":"Setophaga cerulea","author_year":"Wilson, 1810","common_names":[{"lang":"English","names":"Cerulean Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Parulidae","genus_name":"Setophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Dendroica cerulea","author_year":"Wilson, 1810"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"05/03/2009","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EDendroica cerulea\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94677,"full_name":"Sibirionetta formosa","author_year":"Georgi, 1775","common_names":[{"lang":"Danish","names":"Sibirisk Krikand","convention_language":false,"id":null},{"lang":"Dutch","names":"Baikal-Taling, Siberische Taling","convention_language":false,"id":null},{"lang":"English","names":"Baikal Teal","convention_language":true,"id":null},{"lang":"Finnish","names":"Siperiantavi","convention_language":false,"id":null},{"lang":"French","names":"Sarcelle élégante, Sarcelle formose","convention_language":true,"id":null},{"lang":"German","names":"Pfeifente, Baikalente","convention_language":false,"id":null},{"lang":"Polish","names":"Cyranka bajkalska","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta del Baikal","convention_language":true,"id":null},{"lang":"Swedish","names":"Gulkindad kricka","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Sibirionetta","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Anas formosa","author_year":"Georgi, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAnas formosa\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94679,"full_name":"Phoenicoparrus andinus","author_year":"Philippi, 1854","common_names":[{"lang":"English","names":"Andean Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Flamenco Andino, Parina Grande","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicoparrus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Phoenicopterus andinus","author_year":"Philippi, 1854"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPhoenicopterus andinus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"High Andean Flamingos"}]},{"id":94680,"full_name":"Phoenicoparrus jamesi","author_year":"Sclater, 1886","common_names":[{"lang":"English","names":"Puna Flamingo, James's Flamingo","convention_language":true,"id":null},{"lang":"Spanish","names":"Parina Chica, Flamenco Andino Chico","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Phoenicopteriformes","class_name":"Aves","family_name":"Phoenicopteridae","genus_name":"Phoenicoparrus","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Phoenicopterus jamesi","author_year":"P. L. Sclater, 1886"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPhoenicopterus jamesi\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/11/1983","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Phoenicopteridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2008","name":"High Andean Flamingos"}]},{"id":94682,"full_name":"Antigone vipio","author_year":"(Pallas, 1811)","common_names":[{"lang":"Danish","names":"Hvidhalset trane","convention_language":false,"id":null},{"lang":"Dutch","names":"Withalskraanvogel","convention_language":false,"id":null},{"lang":"English","names":"White-necked Crane, White-naped Crane","convention_language":true,"id":null},{"lang":"Finnish","names":"Silmälasikurki","convention_language":false,"id":null},{"lang":"French","names":"Grue à cou blanc","convention_language":true,"id":null},{"lang":"German","names":"Weißnackenkranich","convention_language":false,"id":null},{"lang":"Italian","names":"Gru dal collo bianco","convention_language":false,"id":null},{"lang":"Spanish","names":"Grulla cuelliblanca","convention_language":true,"id":null},{"lang":"Swedish","names":"glasögontrana, vithalsad trana","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Grus vipio","author_year":"Pallas, 1811"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EGrus vipio\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94684,"full_name":"Ardenna creatopus","author_year":"(Coues, 1864)","common_names":[{"lang":"English","names":"Pink-footed Shearwater","convention_language":true,"id":null},{"lang":"French","names":"Puffin à pieds roses","convention_language":true,"id":null},{"lang":"Spanish","names":"Pardela blanca, Pardela de ventre blanco, Pardela patirrosa","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Procellariiformes","class_name":"Aves","family_name":"Procellariidae","genus_name":"Ardenna","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EPuffinus creatopus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"08/09/2015","name":"ACAP"}]},{"id":94685,"full_name":"Anser cygnoid","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Swan Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie cygnoïde","convention_language":true,"id":null},{"lang":"German","names":"Schwanengans","convention_language":false,"id":null},{"lang":"Spanish","names":"Ansar cisnal","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Anser cygnoides","author_year":"Linnaeus, 1758"},{"full_name":"Cygnopsis cygnoides","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAnser cygnoides\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94687,"full_name":"Geokichla guttata","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Natal Thrush, Spotted Forest Thrush, Spotted Ground-thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive tachetée","convention_language":true,"id":null}],"distributions":[{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Turdus fischeri","author_year":"Hellmayr, 1901"},{"full_name":"Zoothera guttata","author_year":"Vigors, 1831"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EZoothera guttata\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94689,"full_name":"Xanthopsar flavus","author_year":"(Gmelin, 1788)","common_names":[{"lang":"English","names":"Saffron-cowled Blackbird","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Icteridae","genus_name":"Xanthopsar","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Agelaius flavus","author_year":"Gmelin, 1788"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/02/2006","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAgelaius flavus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"14/02/2000","short_note_en":null,"full_note_en":"Formerly listed as \u003CI\u003EAgelaius flavus\u003C/I\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/01/2007","name":"Southern South American Grassland Birds"}]},{"id":94704,"full_name":"Spatula discors","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Blåvinget And","convention_language":false,"id":null},{"lang":"Dutch","names":"Blauwvleugeltaling","convention_language":false,"id":null},{"lang":"English","names":"Blue-winged Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle à ailes bleues, Sarcelle soucrourou","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta aliazul","convention_language":true,"id":null},{"lang":"Swedish","names":"blåvingad årta","convention_language":false,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas discors","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94705,"full_name":"Calidris pugnax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"Czech","names":"Jespák bojovný","convention_language":false,"id":null},{"lang":"Danish","names":"Brushane","convention_language":false,"id":null},{"lang":"Dutch","names":"Kemphaan","convention_language":false,"id":null},{"lang":"English","names":"Ruff","convention_language":true,"id":null},{"lang":"Finnish","names":"Suokukko","convention_language":false,"id":null},{"lang":"French","names":"Combattant varié, Chevalier combattant","convention_language":true,"id":null},{"lang":"German","names":"Kampfläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Pajzsoscankó","convention_language":false,"id":null},{"lang":"Italian","names":"Combattente","convention_language":false,"id":null},{"lang":"Polish","names":"Batalion","convention_language":false,"id":null},{"lang":"Portuguese","names":"Combatente","convention_language":false,"id":null},{"lang":"Russian","names":"Turukhtan","convention_language":false,"id":null},{"lang":"Spanish","names":"Combatiente","convention_language":true,"id":null},{"lang":"Swedish","names":"Brushane","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Philomachus pugnax","author_year":"(Linnaeus, 1758)"},{"full_name":"Tringa pugnax","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94706,"full_name":"Netta peposaca","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Rosy-billed Pochard","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Netta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94708,"full_name":"Spatula querquedula","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Garganey, Garganey Teal","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas querquedula","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94709,"full_name":"Mareca penelope","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Eurasian Wigeon, Wigeon","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas penelope","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94710,"full_name":"Neochen jubata","author_year":"Spix, 1825","common_names":[{"lang":"English","names":"Orinoco Goose","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Neochen","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94711,"full_name":"Mareca sibilatrix","author_year":"Poeppig, 1829","common_names":[{"lang":"English","names":"Chiloe Wigeon","convention_language":true,"id":null},{"lang":"French","names":"Canard de Chiloé","convention_language":true,"id":null},{"lang":"Spanish","names":"Silbón overo","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas sibilatrix","author_year":"Poeppig, 1829"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94712,"full_name":"Pseudocolopteryx dinelliana","author_year":"Lillo, 1905 ","common_names":[{"lang":"English","names":"Dinelli's Doradito","convention_language":true,"id":null},{"lang":"French","names":"Doradite de Dinelli","convention_language":true,"id":null},{"lang":"Spanish","names":"Doradito pardo","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Mazar Barnett, J. and Pearman, M. 2001. Lista Comentada de las Aves Argentinas/Annotated Checklist of the Birds of Argentina. Lynx Edicions. Barcelona.; Narosky T. and Yzurieta D. 1989. Birds of Argentina and Uruguay: a field guide. Second edition.; Peña, M. R. de la. 1996. Nuevos registros o aves poco citadas para las provincias de Santa Fe y Entre Rios, Argentina. El Hornero: 14: 87-89.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Ergueta S., P. and de Morales, C (eds.) 1996. Libro rojo de los vertebrados de Bolivia. CDC - Bolivia. La Paz, Bolivia.; Remsen, J. V. Jr and Traylor, M. A. 1989. An annotated list of the birds of Bolivia. Buteo Books. Vermillion, South Dakota.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.; Hayes, F. E. 1995. Status, distribution and biogeography of the birds of Paraguay. American Birding Association.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Tyrannidae","genus_name":"Pseudocolopteryx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Pseudocolopteryx dinellianus","author_year":"Lillo, 1905"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"23/12/2002","short_note_en":null,"full_note_en":"Formerly listed as \u003Ci\u003EPseudocolopteryx dinellianus\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94713,"full_name":"Melanitta deglandi","author_year":"Bonaparte, 1850","common_names":[{"lang":"English","names":"White-winged Scoter","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94714,"full_name":"Speculanas specularis","author_year":"King, 1828","common_names":[{"lang":"English","names":"Spectacled Duck","convention_language":true,"id":null},{"lang":"French","names":"Canard à lunettes","convention_language":true,"id":null},{"lang":"Spanish","names":"Anade anteojillo","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Speculanas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas specularis","author_year":"P. P. King, 1828"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94715,"full_name":"Mareca falcata","author_year":"Georgi, 1775","common_names":[{"lang":"Danish","names":"Segland","convention_language":false,"id":null},{"lang":"Dutch","names":"Bronskopeend","convention_language":false,"id":null},{"lang":"English","names":"Falcated Duck, Falcated Teal","convention_language":true,"id":null},{"lang":"French","names":"Canard à faucilles","convention_language":true,"id":null},{"lang":"Polish","names":"Czuprynka","convention_language":false,"id":null},{"lang":"Russian","names":"Kasatka","convention_language":false,"id":null},{"lang":"Spanish","names":"Cerceta de Alfanjes","convention_language":true,"id":null},{"lang":"Swedish","names":"praktand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas falcata","author_year":"Georgi, 1775"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94716,"full_name":"Falco cuvierii","author_year":"Smith, 1830","common_names":[{"lang":"English","names":"African Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":94717,"full_name":"Anas superciliosa","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Pacific Black Duck","convention_language":true,"id":null}],"distributions":[{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94718,"full_name":"Anas zonorhyncha","author_year":"Swinhoe, 1866","common_names":[{"lang":"English","names":"Chinese Spot-billed Duck","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94719,"full_name":"Mareca americana","author_year":"Gmelin, 1789 ","common_names":[{"lang":"Danish","names":"Amerikansk Pibeand","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Smient","convention_language":false,"id":null},{"lang":"English","names":"American Wigeon, Baldpate","convention_language":true,"id":null},{"lang":"French","names":"Canard à front blanc, Canard d'Amérique, Canard siffleur américain","convention_language":true,"id":null},{"lang":"Spanish","names":"Silbón Americano","convention_language":true,"id":null},{"lang":"Swedish","names":"amerikansk bläsand","convention_language":false,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas americana","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94720,"full_name":"Nettapus coromandelianus","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Cotton Pygmy-goose","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Nettapus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94721,"full_name":"Actitis hypoleucos","author_year":"Linnaeus, 1758 ","common_names":[{"lang":"Danish","names":"Mudderklire","convention_language":false,"id":null},{"lang":"English","names":"Common Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier guignette","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos chico","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Actitis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Tringa hypoleucos","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94722,"full_name":"Sarcoramphus papa","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"King Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Sarcoramphus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94723,"full_name":"Heteronetta atricapilla","author_year":"Merrem, 1841","common_names":[{"lang":"English","names":"Black-headed Duck","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Heteronetta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94724,"full_name":"Hieraaetus wahlbergi","author_year":"Sundevall, 1851","common_names":[{"lang":"English","names":"Wahlberg's Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Hieraaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aquila wahlbergi","author_year":"Sundevall, 1851"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94725,"full_name":"Melanitta stejnegeri","author_year":"Ridgway, 1887","common_names":[{"lang":"English","names":"Siberian Scoter","convention_language":true,"id":null}],"distributions":[{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94726,"full_name":"Spatula versicolor","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Silver Teal","convention_language":true,"id":null}],"distributions":[{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94727,"full_name":"Nisaetus nipalensis","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Mountain Hawk-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Nisaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Spizaetus nipalensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94728,"full_name":"Anas bahamensis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"White-cheeked Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94729,"full_name":"Xenus cinereus","author_year":"(Güldenstädt, 1775)","common_names":[{"lang":"English","names":"Terek Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier bargette","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos del Terek","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Xenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Scolopax cinerea","author_year":"Güldenstädt, 1775"},{"full_name":"Tringa cinerea","author_year":"(Güldenstädt, 1775)"},{"full_name":"Tringa terek","author_year":"(Latham, 1790)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94730,"full_name":"Mareca strepera","author_year":"Linnaeus, 1758","common_names":[{"lang":"Danish","names":"Knarand","convention_language":false,"id":null},{"lang":"English","names":"Gadwall","convention_language":true,"id":null},{"lang":"Finnish","names":"Harmaasorsa","convention_language":false,"id":null},{"lang":"French","names":"Canard chipeau","convention_language":true,"id":null},{"lang":"German","names":"Schnatterente","convention_language":false,"id":null},{"lang":"Hungarian","names":"Kendermagos réce","convention_language":false,"id":null},{"lang":"Italian","names":"Canapiglia","convention_language":false,"id":null},{"lang":"Polish","names":"Krakwa","convention_language":false,"id":null},{"lang":"Portuguese","names":"Frisada","convention_language":false,"id":null},{"lang":"Spanish","names":"Anade friso","convention_language":true,"id":null},{"lang":"Swedish","names":"Snatterand","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Mareca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas strepera","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94731,"full_name":"Melanitta americana","author_year":"Swainson, 1832","common_names":[{"lang":"English","names":"Black Scoter","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Melanitta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94732,"full_name":"Vultur gryphus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Andean Condor","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Vultur","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":94733,"full_name":"Dendrocygna autumnalis","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Black-bellied Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94734,"full_name":"Anas georgica","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Yellow-billed Pintail","convention_language":true,"id":null}],"distributions":[{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94735,"full_name":"Spatula puna","author_year":"Tschudi, 1844","common_names":[{"lang":"English","names":"Puna Teal","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94736,"full_name":"Spatula cyanoptera","author_year":"Vieillot, 1816","common_names":[{"lang":"Dutch","names":"Kaneeltaling","convention_language":false,"id":null},{"lang":"English","names":"Cinnamon Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle cannelle","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta colorada","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas cyanoptera","author_year":"Vieillot, 1816"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94737,"full_name":"Anser canagicus","author_year":"(Sevastianov, 1802)","common_names":[{"lang":"English","names":"Emperor Goose","convention_language":true,"id":null},{"lang":"French","names":"Oie empereur","convention_language":true,"id":null},{"lang":"Spanish","names":"Ansar emperador","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Anser","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas canagica","author_year":"Sevastianov, 1802"},{"full_name":"Anser canagica","author_year":"(Sevastianov, 1802)"},{"full_name":"Chen canagica","author_year":"(Sevastianov, 1802)"},{"full_name":"Philacte canagica","author_year":"(Sevastionov, 1802)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94738,"full_name":"Alopochen aegyptiaca","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Egyptian Goose","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain,introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. 1994. A complete checklist of species and subspecies of the Chinese birds. Science Press. Beijing.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Denmark","country":"Denmark","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"France","country":"France","tags_list":"introduced,introduced (?)","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Israel","country":"Israel","tags_list":"extinct,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Malta","country":"Malta","tags_list":"introduced,distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"introduced (?),introduced","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Spain","country":"Spain","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Del Hoyo, J., Elliott, A., Sargatal, J., Christie, D.A. and de Juana, E. (eds.) 2014. Handbook of the Birds of the World Alive. Lynx Edicions, Barcelona.; Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Mackworth-Praed, C. W. and Grant, C. H. B. 1957. Birds of eastern and north-eastern Africa. Volume 1. Longmans. London.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Reichenow, A. 1902. Die Vögel des deutschen Schutzgebietes Togo. Journal für Ornithologie: 50: 9-43.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"introduced,introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Richardson, C. 1990. The birds of the United Arab Emirates. Hobby Publications. Dubai and Werrington, U.K.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"introduced (?),introduced","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.; del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Sutherland, W. J. and Allport, G. 1991. The distribution and ecology of naturalised Egyptian Geese \u003Ci\u003EAlopochen aegyptiacus\u003C/i\u003E in Britain. Bird Study: 38: 128-134.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Alopochen","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Alopochen aegyptiacus","author_year":"(Linnaeus, 1766)"},{"full_name":"Anas aegyptiaca","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94739,"full_name":"Spatula smithii","author_year":"(Hartert, 1891) ","common_names":[{"lang":"English","names":"Cape Shoveler","convention_language":true,"id":null},{"lang":"French","names":"Canard de Smith","convention_language":true,"id":null},{"lang":"Spanish","names":"Cuchara del Cabo","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas smithii","author_year":"(Hartert, 1891)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94740,"full_name":"Anseranas semipalmata","author_year":"(Latham, 1798)","common_names":[{"lang":"English","names":"Magpie Goose","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anseranatidae","genus_name":"Anseranas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Anatidae","auto_note":"FAMILY ADDITION Anseranatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94741,"full_name":"Spatula clypeata","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Northern Shoveler, Shoveler","convention_language":true,"id":null},{"lang":"French","names":"Canard souchet","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas clypeata","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94742,"full_name":"Dendrocygna javanica","author_year":"Horsfield, 1821","common_names":[{"lang":"English","names":"Lesser Whistling-duck","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Dendrocygna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94743,"full_name":"Chlamydotis macqueenii","author_year":"J.E. Gray, 1832","common_names":[{"lang":"English","names":"Asian Houbara","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Chlamydotis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EChlamydotis undulata\u003C/i\u003E","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94744,"full_name":"Spatula platalea","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Red Shoveler","convention_language":true,"id":null}],"distributions":[{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94745,"full_name":"Calidris falcinellus","author_year":"(Pontoppidan, 1763)","common_names":[{"lang":"Dutch","names":"Breedbekstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Broad-billed Sandpiper","convention_language":true,"id":null},{"lang":"Finnish","names":"Jänkäsirriäinen","convention_language":false,"id":null},{"lang":"French","names":"Bécasseau falcinelle","convention_language":true,"id":null},{"lang":"German","names":"Sumpfläufer","convention_language":false,"id":null},{"lang":"Hungarian","names":"Sárjáró","convention_language":false,"id":null},{"lang":"Italian","names":"Gambecchio frullino","convention_language":false,"id":null},{"lang":"Norwegian","names":"Fjellmyrløper","convention_language":false,"id":null},{"lang":"Portuguese","names":"Pilrito-falcinelo","convention_language":false,"id":null},{"lang":"Russian","names":"Gryazovik","convention_language":false,"id":null},{"lang":"Spanish","names":"Correlimos Falcinelo","convention_language":true,"id":null},{"lang":"Swedish","names":"Myrsnäppa","convention_language":false,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Limicola falcinellus","author_year":"(Pontoppidan, 1763)"},{"full_name":"Scolopax falcinellus","author_year":"Pontopiddan, 1763"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94746,"full_name":"Cygnus melancoryphus","author_year":"(Molina, 1782)","common_names":[{"lang":"English","names":"Black-necked Swan","convention_language":true,"id":null}],"distributions":[{"name":"Antarctica","country":"Antarctica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Cygnus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cygnus melanocorypha","author_year":"(Molina) 1782"},{"full_name":"Cygnus melanocoryphus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94747,"full_name":"Clanga pomarina","author_year":"(Brehm, 1831)","common_names":[{"lang":"English","names":"Lesser Spotted Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Clanga","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aquila pomarina","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":94748,"full_name":"Spatula hottentota","author_year":"(Eyton, 1838)","common_names":[{"lang":"English","names":"Hottentot Teal, Spotted Teal","convention_language":true,"id":null},{"lang":"French","names":"Sarcelle hottentote","convention_language":true,"id":null},{"lang":"Spanish","names":"Cerceta hotentote","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Spatula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Anas hottentota","author_year":"(Eyton, 1838)"},{"full_name":"Anas punctata","author_year":"Burchell, 1822"},{"full_name":"Querquedula hottentota","author_year":"Eyton, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":94749,"full_name":"Branta hutchinsii","author_year":"(Richardson, 1832)","common_names":[{"lang":"English","names":"Cackling Goose","convention_language":true,"id":null}],"distributions":[{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Branta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94871,"full_name":"Acrocephalus orinus","author_year":"Oberholser, 1905","common_names":[{"lang":"English","names":"Large-billed Reed-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Acrocephalus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94872,"full_name":"Locustella pryeri","author_year":"Seebohm, 1884","common_names":[{"lang":"English","names":"Marsh Grassbird","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Megalurus pryeri","author_year":"Seebohm, 1884"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94875,"full_name":"Calidris himantopus","author_year":"(Bonaparte, 1826)","common_names":[{"lang":"Danish","names":"Langbenet Ryle","convention_language":false,"id":null},{"lang":"Dutch","names":"Steltstrandloper","convention_language":false,"id":null},{"lang":"English","names":"Stilt Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau à échasses","convention_language":true,"id":null},{"lang":"Spanish","names":"Correlimos zancolín","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Micropalama himantopus","author_year":"(Bonaparte, 1826)"},{"full_name":"Tringa himantopus","author_year":"Bonaparte, 1826"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94876,"full_name":"Eumyias thalassinus","author_year":"Swainson, 1838","common_names":[{"lang":"English","names":"Verditer Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Eumyias","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Eumyias thalassina","author_year":"Swainson, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94877,"full_name":"Ficedula albicilla","author_year":"Pallas, 1811","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94878,"full_name":"Phoenicurus erythronotus","author_year":"Eversmann, 1841","common_names":[{"lang":"English","names":"Eversmann’s Redstart","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phoenicurus erythronota","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94879,"full_name":"Phylloscopus claudiae","author_year":"(La Touche, 1922)","common_names":[{"lang":"English","names":"Claudia's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94880,"full_name":"Phylloscopus humei","author_year":"(Brooks, 1878)","common_names":[{"lang":"English","names":"Hume's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94881,"full_name":"Turdus eunomus","author_year":"Temminck, 1831","common_names":[{"lang":"English","names":"Dusky Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94882,"full_name":"Saxicola torquatus","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Common Stonechat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Saxicola torquata","author_year":"(Linnaeus, 1766)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94883,"full_name":"Saxicola ferreus","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Grey Bushchat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Saxicola ferrea","author_year":"Gray, 1846"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94884,"full_name":"Regulus ignicapilla","author_year":"Temminck, 1820","common_names":[{"lang":"English","names":"Common Firecrest","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Regulidae","genus_name":"Regulus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Regulus ignicapillus","author_year":"(Temminck, 1820)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Regulidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94885,"full_name":"Phylloscopus yunnanensis","author_year":"La Touche, 1922","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Phylloscopus sichuanensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":94886,"full_name":"Phylloscopus xanthoschistos","author_year":"G. E. Gray \u0026 G. R. Gray, 1847","common_names":[{"lang":"English","names":"Grey-hooded Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus xanthoschistos","author_year":"(Gray, 1846)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95073,"full_name":"Anthus hoeschi","author_year":"Stresemann, 1938","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95074,"full_name":"Anthus pratensis","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95075,"full_name":"Antigone antigone","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Sarus Crane","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Grus antigone","author_year":"(Linnaeus) 1758 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95076,"full_name":"Asarcornis scutulata","author_year":"(S. Müller, 1842)","common_names":[{"lang":"English","names":"White-winged Duck, White-winged Wood Duck","convention_language":true,"id":null},{"lang":"Spanish","names":"Pato Almizclero Aliblanco, Pato de Jungla","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Anseriformes","class_name":"Aves","family_name":"Anatidae","genus_name":"Asarcornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cairina scutulata","author_year":"(Müller) 1842"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Anatidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95077,"full_name":"Brachypteryx hyperythra","author_year":"Jerdon \u0026 Blyth, 1861","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Brachypteryx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95078,"full_name":"Calliope pectardens","author_year":"David, 1871","common_names":[{"lang":"English","names":"Firethroat","convention_language":true,"id":null},{"lang":"French","names":"Rossignol de David","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus pectardens","author_year":"(David, 1871)"},{"full_name":"Luscinia pectardens","author_year":"(David, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95079,"full_name":"Catharus bicknelli","author_year":"(Ridgway, 1882)","common_names":[{"lang":"English","names":"Bicknell's Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95080,"full_name":"Chaetops aurantius","author_year":"Layard, 1867","common_names":[{"lang":"English","names":"Drakensberg Rockjumper, Orange-breasted Rock-jumper","convention_language":true,"id":null}],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Chaetopidae","genus_name":"Chaetops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Chaetopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95081,"full_name":"Chaetornis striata","author_year":"(Jerdon, 1841)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Chaetornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95082,"full_name":"Charadrius dealbatus","author_year":"(Swinhoe, 1870)","common_names":[{"lang":"English","names":"White-faced Plover","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95083,"full_name":"Charadrius nivosus","author_year":"(Cassin, 1858)","common_names":[{"lang":"English","names":"Snowy Plover","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95084,"full_name":"Circaetus beaudouini","author_year":"Verreaux and Des Murs, 1862","common_names":[{"lang":"English","names":"Beaudouin's Snake-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":95085,"full_name":"Cyanoptila cumatilis","author_year":"Thayer \u0026 Bangs, 1909","common_names":[{"lang":"English","names":"Zappey's Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanoptila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95086,"full_name":"Falco chicquera","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Red-headed Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95087,"full_name":"Gallinago stricklandii","author_year":"(Gray, 1845)","common_names":[{"lang":"English","names":"Fuegian Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95096,"full_name":"Hemimacronyx chloris","author_year":"Lichtenstein, 1842","common_names":[],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Hemimacronyx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95103,"full_name":"Hylocichla mustelina","author_year":"Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Amerikaanse Boslijster","convention_language":false,"id":null},{"lang":"English","names":"Wood Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive des bois","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Hylocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Catharus mustelinus","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95104,"full_name":"Icthyophaga humilis","author_year":"(Müller and Schlegel, 1841)","common_names":[{"lang":"English","names":"Lesser Fish-eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Icthyophaga","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ichthyophaga humilis","author_year":"Müller and Schlegel, 1841"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95105,"full_name":"Laticilla burnesii","author_year":"Blyth, 1844","common_names":[],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Pellorneidae","genus_name":"Laticilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Pellorneidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95106,"full_name":"Locustella major","author_year":"W. E. Brooks, 1871","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95107,"full_name":"Monticola explorator","author_year":"Vieillot, 1818","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95108,"full_name":"Oenanthe dubia","author_year":"Blundell and Lovat, 1899","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95110,"full_name":"Phegornis mitchellii","author_year":"(Fraser, 1845)","common_names":[{"lang":"English","names":"Diademed Plover, Diademed Sandpiper-Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Phegornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95112,"full_name":"Pluvianellus socialis","author_year":"Gray, 1846","common_names":[{"lang":"English","names":"Magellanic Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Pluvianellidae","genus_name":"Pluvianellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Scolopacidae","auto_note":"FAMILY ADDITION Pluvianellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95113,"full_name":"Saxicola macrorhynchus","author_year":"Stoliczka, 1872","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Saxicola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95114,"full_name":"Sylvia nigricapillus","author_year":"Vieillot, 1818","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95115,"full_name":"Sylvia undata","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Dartford Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95161,"full_name":"Calidris virgata","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Surfbird","convention_language":true,"id":null},{"lang":"French","names":"Bécasseau du ressac","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Calidris","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Aphriza virgata","author_year":"(Gmelin, 1789) "},{"full_name":"Tringa virgata","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95163,"full_name":"Geokichla wardii","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Pied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Ward","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera wardii","author_year":"(Blyth, 1842) "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95212,"full_name":"Geokichla sibirica","author_year":"Pallas, 1776","common_names":[{"lang":"Danish","names":"Siberisk Drossel","convention_language":false,"id":null},{"lang":"Dutch","names":"Siberische Lijster","convention_language":false,"id":null},{"lang":"English","names":"Siberian Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive de Sibérie","convention_language":true,"id":null}],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera sibirica","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95214,"full_name":"Ixoreus naevius","author_year":"J. F. Gmelin, 1789","common_names":[{"lang":"Dutch","names":"Bonte Lijster","convention_language":false,"id":null},{"lang":"English","names":"Varied Thrush","convention_language":true,"id":null},{"lang":"French","names":"Grive à collier","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Ixoreus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Zoothera naevia","author_year":"(Gmelin, 1789)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95217,"full_name":"Hemitesia pallidipes","author_year":"Blanford, 1872","common_names":[{"lang":"English","names":"Pale-footed Bush-Warbler","convention_language":true,"id":null},{"lang":"French","names":"Bouscarle à pattes claires","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Hemitesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia pallidipes","author_year":"(Blanford, 1872)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95240,"full_name":"Iduna rama","author_year":"Sykes, 1832","common_names":[{"lang":"English","names":"Sykes's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hippolais rama","author_year":"(Sykes, 1832)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95245,"full_name":"Monticola rufocinereus","author_year":"(Rüppell, 1837)","common_names":[],"distributions":[{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95248,"full_name":"Iduna opaca","author_year":"(Cabanis, 1850)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95250,"full_name":"Ictinaetus malaiensis","author_year":"(Temminck, 1822)","common_names":[{"lang":"English","names":"Black Eagle","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Ictinaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Ictinaetus malayensis","author_year":"(Temminck) 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95255,"full_name":"Gallinago delicata","author_year":"(Ord, 1825)","common_names":[{"lang":"English","names":"Wilson's Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95258,"full_name":"Fraseria caerulescens","author_year":"(Hartlaub, 1865)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Fraseria","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95260,"full_name":"Phylloscopus castaniceps","author_year":"(Hodgson, 1845)","common_names":[{"lang":"English","names":"Chestnut-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus castaniceps","author_year":"(Hodgson, 1845)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95262,"full_name":"Vanellus tectus","author_year":"(Boddaert, 1783)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95263,"full_name":"Larvivora sibilans","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Rufous-tailed Robin","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus sibilans","author_year":"(Swinhoe, 1863)"},{"full_name":"Luscinia sibilans","author_year":"(Swinhoe, 1863)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95265,"full_name":"Anthus lineiventris","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95271,"full_name":"Turdus dissimilis","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Black-breasted Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95287,"full_name":"Turdus viscivorus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Mistle Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95297,"full_name":"Monticola rupestris","author_year":"(Vieillot, 1818)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95299,"full_name":"Vanellus armatus","author_year":"(Burchell, 1822)","common_names":[{"lang":"English","names":"Blacksmith Lapwing, Blacksmith Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau armé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95302,"full_name":"Catharus swainsoni","author_year":"(Tschudi, 1845)","common_names":[{"lang":"English","names":"Swainson's Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95308,"full_name":"Turdus libonyana","author_year":"(Smith, 1836)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95339,"full_name":"Enicurus scouleri","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Little Forktail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Enicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95343,"full_name":"Abroscopus superciliaris","author_year":"(Blyth, 1859)","common_names":[{"lang":"English","names":"Yellow-bellied Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Abroscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95346,"full_name":"Grandala coelicolor","author_year":"Hodgson, 1843","common_names":[{"lang":"English","names":"Grandala","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Grandala","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95357,"full_name":"Sylvietta brachyura","author_year":"Lafresnaye, 1839","common_names":[{"lang":"English","names":"Northern Crombec","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Macrosphenidae","genus_name":"Sylvietta","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Macrosphenidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95363,"full_name":"Locustella mandelli","author_year":"(W.E. Brooks, 1875)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95372,"full_name":"Tringa semipalmata","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Willet","convention_language":true,"id":null},{"lang":"French","names":"Chevalier semipalmé","convention_language":true,"id":null},{"lang":"Spanish","names":"Playero aliblanco","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Tringa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Catoptrophorus semipalmatus","author_year":"(Gmelin, 1789)"},{"full_name":"Scolopax semipalmata","author_year":"Gmelin, 1789"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95395,"full_name":"Sialia sialis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eastern Bluebird","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95398,"full_name":"Oenanthe lugens","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95406,"full_name":"Prionops plumatus","author_year":"(Shaw, 1809)","common_names":[{"lang":"English","names":"White-crested Helmetshrike","convention_language":true,"id":null},{"lang":"French","names":"Bagadais casqué","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vangidae","genus_name":"Prionops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vangidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95415,"full_name":"Cyornis banyumas","author_year":"(Horsfield, 1821)","common_names":[{"lang":"English","names":"Hill Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95430,"full_name":"Rhipidura rufifrons","author_year":"(Latham, 1801)","common_names":[{"lang":"English","names":"Rufous Fantail","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Rhipiduridae","genus_name":"Rhipidura","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Rhipiduridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95431,"full_name":"Muscicapa aquatica","author_year":"Heuglin, 1864","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95438,"full_name":"Anthus hellmayri","author_year":"Hartert, 1909","common_names":[{"lang":"English","names":"Hellmayr's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95439,"full_name":"Locustella thoracica","author_year":"Blyth, 1845","common_names":[{"lang":"English","names":"Spotted Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Bradypterus davidi","author_year":"(La Touche, 1923)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95442,"full_name":"Gallinago andina","author_year":"Taczanowski, 1875","common_names":[{"lang":"English","names":"Puna Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95455,"full_name":"Oriolus oriolus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Eurasian Golden Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95456,"full_name":"Cercotrichas podobe","author_year":"(Müller, 1776)","common_names":[],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cercotrichas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95464,"full_name":"Motacilla citreola","author_year":"Pallas, 1776","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95493,"full_name":"Oenanthe chrysopygia","author_year":"(de Filippi, 1863)","common_names":[{"lang":"English","names":"Red-tailed Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95496,"full_name":"Ficedula ruficauda","author_year":"(Swainson, 1838)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Muscicapa ruficauda","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95506,"full_name":"Turdus subalaris","author_year":"(Seebohm, 1887)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95515,"full_name":"Tarsiger rufilatus","author_year":"(Hodgson, 1845)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Tarsiger","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95531,"full_name":"Phylloscopus poliogenys","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Grey-cheeked Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus poliogenys","author_year":"(Blyth, 1847)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95532,"full_name":"Psophocichla litsitsirupa","author_year":"(Smith, 1836)","common_names":[{"lang":"English","names":"Groundscraper Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Psophocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95540,"full_name":"Motacilla maderaspatensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"White-browed Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95554,"full_name":"Lophaetus occipitalis","author_year":"(Daudin, 1800)","common_names":[{"lang":"English","names":"Long-crested Eagle","convention_language":true,"id":null},{"lang":"French","names":"Aigle huppé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Lophaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95557,"full_name":"Charadrius collaris","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Collared Plover","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95561,"full_name":"Oriolus tenuirostris","author_year":"Blyth, 1846","common_names":[{"lang":"English","names":"Slender-billed Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95562,"full_name":"Anthus rubescens","author_year":"(Tunstall, 1771)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95575,"full_name":"Phylloscopus valentini","author_year":"E. Hartert, 1907","common_names":[{"lang":"English","names":"Bianchi's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus valentini","author_year":"(Hartert, 1907)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95586,"full_name":"Oenanthe familiaris","author_year":"(Wilkes, 1817)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95587,"full_name":"Haematopus palliatus","author_year":"Temminck, 1820","common_names":[{"lang":"English","names":"American Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95589,"full_name":"Motacilla capensis","author_year":"Linnaeus, 1766","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95599,"full_name":"Antigone canadensis","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Sandhill Crane","convention_language":true,"id":null}],"distributions":[{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Gruidae","genus_name":"Antigone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Grus canadensis","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":"Formerly included in \u003Ci\u003EGrus\u003C/i\u003E spp.","auto_note":"GENUS ADDITION Antigone spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95622,"full_name":"Vireo olivaceus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Red-eyed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95637,"full_name":"Oenanthe heuglinii","author_year":"(Finsch \u0026 Hartlaub, 1870)","common_names":[{"lang":"English","names":"Heuglin's Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95650,"full_name":"Agricola pallidus","author_year":"(von Müller, 1851)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Agricola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95658,"full_name":"Enicurus leschenaulti","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-crowned Forktail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Enicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95665,"full_name":"Phylloscopus intermedius","author_year":"La Touche, 1898","common_names":[{"lang":"English","names":"White-spectacled Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus affinis","author_year":"(Hodgson, 1854)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95671,"full_name":"Calliope pectoralis","author_year":"(Gould, 1837)","common_names":[{"lang":"English","names":"Himalayan Rubythroat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus pectoralis","author_year":"(Gould, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95674,"full_name":"Anthus campestris","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95675,"full_name":"Anthus brachyurus","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95698,"full_name":"Cyornis magnirostris","author_year":"Blyth, 1849","common_names":[{"lang":"English","names":"Large Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95700,"full_name":"Oriolus xanthornus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Black-hooded Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95701,"full_name":"Scotocerca inquieta","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Streaked Scrub-warbler","convention_language":true,"id":null},{"lang":"French","names":"Dromoïque du désert,","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Scotocerca","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95702,"full_name":"Horornis fortipes","author_year":"Hodgson, 1845","common_names":[{"lang":"English","names":"Brownish-flanked Bush-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia fortipes","author_year":"(Hodgson, 1845)"},{"full_name":"Cettia robustipes","author_year":"(Swinhoe, 1866)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95707,"full_name":"Horornis flavolivaceus","author_year":"(Blyth, 1845)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95722,"full_name":"Anthus cervinus","author_year":"(Pallas, 1811)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95729,"full_name":"Cochoa viridis","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Green Cochoa","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Cochoa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95740,"full_name":"Bradornis microrhynchus","author_year":"(Reichenow, 1887)","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Bradornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95747,"full_name":"Chelidorhynx hypoxanthus","author_year":"(Blyth, 1843)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Stenostiridae","genus_name":"Chelidorhynx","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Stenostiridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95761,"full_name":"Calliope calliope","author_year":"(Pallas, 1776)","common_names":[{"lang":"English","names":"Siberian Rubythroat","convention_language":true,"id":null},{"lang":"French","names":"Calliope sibèrienne","convention_language":true,"id":null},{"lang":"Spanish","names":"Ruiseñor Calíope","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus calliope","author_year":"(Pallas, 1776)"},{"full_name":"Luscinia calliope","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95763,"full_name":"Falco berigora","author_year":"Vigors \u0026 Horsfield, 1827","common_names":[{"lang":"English","names":"Brown Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95765,"full_name":"Vireo altiloquus","author_year":"(Vieillot, 1808)","common_names":[{"lang":"English","names":"Black-whiskered Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95766,"full_name":"Micronisus gabar","author_year":"Daudin, 1800","common_names":[{"lang":"English","names":"Gabar Goshawk","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Micronisus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Melierax gabar","author_year":"(Daudin) 1800"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95767,"full_name":"Tesia cyaniventer","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Grey-bellied Tesia","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Tesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95769,"full_name":"Haematopus ater","author_year":"Vieillot \u0026 Oudart, 1825","common_names":[{"lang":"English","names":"Blackish Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Haematopus bachmani","author_year":"Audubon, 1838"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95799,"full_name":"Sylvia subalpina","author_year":"Orlando, 1937","common_names":[{"lang":"English","names":"Moltoni's Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95802,"full_name":"Anthus correndera","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Correndera Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95805,"full_name":"Terpsiphone affinis","author_year":"(Blyth, 1846)","common_names":[{"lang":"English","names":"Oriental Paradise-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95806,"full_name":"Cisticola cinnamomeus","author_year":"Reichenow, 1904","common_names":[{"lang":"English","names":"Pale-crowned Cisticola","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Cisticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95810,"full_name":"Vireo flavoviridis","author_year":"(Cassin, 1851)","common_names":[{"lang":"English","names":"Yellow-green Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95815,"full_name":"Turdus pelios","author_year":"Bonaparte, 1850","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95819,"full_name":"Motacilla cinerea","author_year":"Tunstall, 1771","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95831,"full_name":"Vanellus malabaricus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Yellow-wattled Lapwing","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95836,"full_name":"Myrmecocichla aethiops","author_year":"Cabanis, 1850","common_names":[],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Myrmecocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95843,"full_name":"Niltava oatesi","author_year":"Salvadori, 1887","common_names":[{"lang":"English","names":"Large Vivid Niltava","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95848,"full_name":"Phoenicurus fuliginosus","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Plumbeous Water-redstart","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Rhyacornis fuliginosus","author_year":"Vigors, 1831 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95850,"full_name":"Phoenicurus coeruleocephala","author_year":"Vigors, 1831","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95868,"full_name":"Falco ardosiaceus","author_year":"Vieillot, 1823","common_names":[{"lang":"English","names":"Grey Kestrel","convention_language":true,"id":null},{"lang":"French","names":"Faucon ardoisé","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95876,"full_name":"Cyornis unicolor","author_year":"Blyth, 1843","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95892,"full_name":"Pogonocichla stellata","author_year":"(Vieillot, 1818)","common_names":[],"distributions":[{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Pogonocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95901,"full_name":"Turdus olivaceus","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Olive Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95916,"full_name":"Cyanecula svecica","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Bluethroat","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyanecula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Luscinia svecica","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95925,"full_name":"Buteo japonicus","author_year":"Temminck \u0026 Schlegel, 1844","common_names":[{"lang":"English","names":"Japanese Buzzard, Eastern Buzzard","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":95931,"full_name":"Locustella davidi","author_year":"(La Touche, 1923)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95943,"full_name":"Oriolus auratus","author_year":"Vieillot, 1817","common_names":[{"lang":"English","names":"African Golden Oriole","convention_language":true,"id":null},{"lang":"French","names":"Loriot doré","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95945,"full_name":"Calliope tschebaiewi","author_year":"(Przevalski, 1876)","common_names":[{"lang":"English","names":"Chinese Rubythroat","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95952,"full_name":"Motacilla alba","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95958,"full_name":"Phyllergates cucullatus","author_year":"(Temminck, 1836)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Phyllergates","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95968,"full_name":"Recurvirostra andina","author_year":"Philippi \u0026 Landbeck, 1861","common_names":[{"lang":"English","names":"Andean Avocet","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Recurvirostridae","genus_name":"Recurvirostra","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Recurvirostridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95980,"full_name":"Cossypha natalensis","author_year":"Smith, 1840","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cossypha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95986,"full_name":"Vireo huttoni","author_year":"Cassin, 1851","common_names":[{"lang":"English","names":"Hutton's Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95991,"full_name":"Vireo griseus","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"White-eyed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":95993,"full_name":"Oenanthe pileata","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96005,"full_name":"Ficedula hyperythra","author_year":"(Blyth, 1843)","common_names":[{"lang":"English","names":"Snowy-browed Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96026,"full_name":"Oenanthe melanura","author_year":"(Temminck, 1824)","common_names":[],"distributions":[{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96031,"full_name":"Vanellus crassirostris","author_year":"(Hartlaub, 1855)","common_names":[{"lang":"English","names":"Long-toed Lapwing, Long-toed Plover","convention_language":true,"id":null},{"lang":"French","names":"Vanneau à ailes blanches","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Vanellus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96035,"full_name":"Aegithalos caudatus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Long-tailed Tit, Long-tailed Bushtit","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Aegithalidae","genus_name":"Aegithalos","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Aegithalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96039,"full_name":"Tesia olivea","author_year":"(McClelland, 1840)","common_names":[{"lang":"English","names":"Slaty-bellied Tesia","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Tesia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96043,"full_name":"Circus hudsonius","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Northern Harrier","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Circus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96046,"full_name":"Cochoa purpurea","author_year":"Hodgson, 1836","common_names":[{"lang":"English","names":"Purple Cochoa","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Cochoa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96051,"full_name":"Motacilla tschutschensis","author_year":"Gmelin, 1789","common_names":[{"lang":"English","names":"Eastern Yellow Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guam","country":"Guam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96062,"full_name":"Oenanthe leucura","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"extinct (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96063,"full_name":"Phylloscopus examinandus","author_year":"Stresemann, 1913","common_names":[{"lang":"English","names":"Kamchatka Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96071,"full_name":"Iduna caligata","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96077,"full_name":"Cyornis tickelliae","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Tickell's Blue-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96085,"full_name":"Phyllolais pulchella","author_year":"(Cretzschmar, 1827)","common_names":[{"lang":"English","names":"Buff-bellied Warbler","convention_language":true,"id":null},{"lang":"French","names":"Apalis à ventre jaune","convention_language":true,"id":null}],"distributions":[{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Phyllolais","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96090,"full_name":"Zoothera salimalii","author_year":"Alström, Rasmussen, Zhao, Xu, Dalvi, Cai, Guan, Zhang, Kalyakin, Lei \u0026 Olsson, 2016","common_names":[{"lang":"English","names":"Himalayan Forest Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96098,"full_name":"Anthus hodgsoni","author_year":"Richmond, 1907","common_names":[{"lang":"English","names":"Olive-backed Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96108,"full_name":"Larvivora brunnea","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Indian Blue Robin","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus brunneus","author_year":"(Hodgson, 1837)"},{"full_name":"Luscinia brunnea","author_year":"(Hodgson, 1837)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96117,"full_name":"Anthus cinnamomeus","author_year":"Rüppell, 1840","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96141,"full_name":"Sylvia crassirostris","author_year":"Cretzschmar, 1827","common_names":[{"lang":"English","names":"Eastern Orphean Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96159,"full_name":"Oenanthe monacha","author_year":"(Temminck, 1825)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96161,"full_name":"Zoothera marginata","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Dark-sided Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96162,"full_name":"Phylloscopus tristis","author_year":"Blyth, 1843","common_names":[{"lang":"English","names":"Siberian Chiffchaff","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96176,"full_name":"Vireo gilvus","author_year":"(Vieillot, 1808)","common_names":[{"lang":"English","names":"Warbling Vireo, Eastern Warbling-Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96181,"full_name":"Tmetothylacus tenellus","author_year":"(Cabanis, 1878)","common_names":[],"distributions":[{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Tmetothylacus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96184,"full_name":"Cisticola ayresii","author_year":"Hartlaub, 1863","common_names":[{"lang":"English","names":"Wing-snapping Cisticola","convention_language":true,"id":null},{"lang":"French","names":"Cisticole gratte-nuage","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Cisticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96192,"full_name":"Vireo flavifrons","author_year":"Vieillot, 1808","common_names":[{"lang":"English","names":"Yellow-throated Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96208,"full_name":"Charadrius alticola","author_year":"(Berlepsch \u0026 Stolzmann, 1902)","common_names":[{"lang":"English","names":"Puna Plover","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96210,"full_name":"Vireo solitarius","author_year":"(Wilson, 1810)","common_names":[{"lang":"English","names":"Blue-headed Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96214,"full_name":"Prinia erythroptera","author_year":"(Jardine, 1849)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Prinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96224,"full_name":"Prinia subflava","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Tawny-flanked Prinia","convention_language":true,"id":null},{"lang":"French","names":"Prinia commune","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Prinia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96226,"full_name":"Iduna pallida","author_year":"(Ehrenberg, 1833)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Iduna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96238,"full_name":"Ibidorhyncha struthersii","author_year":"Vigors, 1832","common_names":[{"lang":"English","names":"Ibisbill","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Ibidorhynchidae","genus_name":"Ibidorhyncha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Ibidorhynchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96246,"full_name":"Rhinopomastus aterrimus","author_year":"(Stephens, 1826)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Bucerotiformes","class_name":"Aves","family_name":"Phoeniculidae","genus_name":"Rhinopomastus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[]},{"id":96250,"full_name":"Oenanthe albonigra","author_year":"(Hume, 1872)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96261,"full_name":"Cettia castaneocoronata","author_year":"(Burton, 1836)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Cettia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96264,"full_name":"Motacilla flava","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Western Yellow Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"San Marino","country":"San Marino","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96267,"full_name":"Eremomela icteropygialis","author_year":"(Lafresnaye, 1839)","common_names":[{"lang":"English","names":"Yellow-bellied Eremomela","convention_language":true,"id":null},{"lang":"French","names":"Erémomèle gris-jaune","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Cisticolidae","genus_name":"Eremomela","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Cisticolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96268,"full_name":"Emarginata sinuata","author_year":"(Sundevall, 1858)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Emarginata","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96289,"full_name":"Oenanthe albifrons","author_year":"(Rüppell, 1837)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96297,"full_name":"Otocichla mupinensis","author_year":"(Laubmann, 1920)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Otocichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96303,"full_name":"Polyboroides typus","author_year":"Smith, 1829","common_names":[{"lang":"English","names":"African Harrier-hawk, Gymnogene","convention_language":true,"id":null},{"lang":"French","names":"Gymnogène d'Afrique","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Polyboroides","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96310,"full_name":"Leptopoecile sophiae","author_year":"Severtsov, 1873","common_names":[{"lang":"English","names":"White-browed Tit-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Aegithalidae","genus_name":"Leptopoecile","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Aegithalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96314,"full_name":"Phylloscopus xanthodryas","author_year":"(Swinhoe, 1863)","common_names":[{"lang":"English","names":"Japanese Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96329,"full_name":"Sheppardia polioptera","author_year":"Reichenow, 1892","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Sheppardia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96331,"full_name":"Catharus mexicanus","author_year":"(Bonaparte, 1856)","common_names":[],"distributions":[{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Catharus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96338,"full_name":"Vireo bellii","author_year":"Audubon, 1844","common_names":[{"lang":"English","names":"Bell's Vireo","convention_language":true,"id":null}],"distributions":[{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96345,"full_name":"Anthus caffer","author_year":"Sundevall, 1851","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96348,"full_name":"Symposiachrus trivirgatus","author_year":"Temminck, 1826","common_names":[{"lang":"English","names":"Spectacled Monarch","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Symposiachrus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Monarcha trivirgatus","author_year":"(Temminck, 1826)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96353,"full_name":"Phoenicurus leucocephalus","author_year":"(Vigors, 1831)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Chaimarrornis leucocephalus","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96356,"full_name":"Cathartes burrovianus","author_year":"Cassin, 1845","common_names":[{"lang":"English","names":"Lesser Yellow-headed Vulture","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cathartiformes","class_name":"Aves","family_name":"Cathartidae","genus_name":"Cathartes","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1979","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Cathartidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96357,"full_name":"Anthus roseatus","author_year":"Blyth, 1847","common_names":[{"lang":"English","names":"Rosy Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96360,"full_name":"Phalcoboenus chimango","author_year":"Vieillot, 1816","common_names":[{"lang":"English","names":"Chimango Caracara","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Phalcoboenus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Milvago chimango","author_year":"(Vieillot) 1816 "}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96367,"full_name":"Anthus petrosus","author_year":"(Montagu, 1798)","common_names":[],"distributions":[{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96377,"full_name":"Megabyas flammulatus","author_year":"(Verreaux \u0026 Verreaux, 1855)","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vangidae","genus_name":"Megabyas","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vangidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96395,"full_name":"Thamnolaea cinnamomeiventris","author_year":"(Lafresnaye, 1836)","common_names":[],"distributions":[{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Thamnolaea","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96400,"full_name":"Arundinax aedon","author_year":"(Pallas, 1776)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Acrocephalidae","genus_name":"Arundinax","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Acrocephalus aedon","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Acrocephalidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96422,"full_name":"Horornis diphone","author_year":"(Kittlitz, 1830)","common_names":[],"distributions":[{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"introduced (?)","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96428,"full_name":"Cossypha dichroa","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cossypha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96439,"full_name":"Phoenicurus erythrogastrus","author_year":"(Güldenstädt, 1775)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Phoenicurus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96443,"full_name":"Oenanthe seebohmi","author_year":"(Dixon, 1882)","common_names":[{"lang":"English","names":"Black-throated Wheatear","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96444,"full_name":"Anthus gustavi","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Pechora Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96445,"full_name":"Monticola cinclorhyncha","author_year":"Vigors, 1831","common_names":[{"lang":"English","names":"Blue-capped Rock-thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Monticola","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Monticola cinclorhynchus","author_year":"(Vigors, 1832)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96453,"full_name":"Anthus trivialis","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Moldova","country":"Republic of Moldova","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96454,"full_name":"Oriolus kundoo","author_year":"Sykes, 1832","common_names":[{"lang":"English","names":"Indian Golden Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96455,"full_name":"Horornis brunnescens","author_year":"(Hume, 1872)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96460,"full_name":"Phylloscopus burkii","author_year":"E. Burton, 1836","common_names":[{"lang":"English","names":"Green-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus burkii","author_year":"(Burton, 1836)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96461,"full_name":"Melaenornis silens","author_year":"(Shaw, 1809)","common_names":[],"distributions":[{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Melaenornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96469,"full_name":"Anthus chacoensis","author_year":"Zimmer, 1952","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96483,"full_name":"Falco longipennis","author_year":"Swainson, 1837","common_names":[{"lang":"English","names":"Australian Hobby","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96487,"full_name":"Geranoaetus polyosoma","author_year":"(Quoy \u0026 Gaimard, 1824)","common_names":[],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Geranoaetus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Buteo polyosoma","author_year":"(Quoy and Gaimard) 1824"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96488,"full_name":"Sylvia ruppeli","author_year":"Temminck, 1823","common_names":[{"lang":"English","names":"Rüppell's Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette masquée","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96500,"full_name":"Muscicapa gambagae","author_year":"(Alexander, 1901)","common_names":[],"distributions":[{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Muscicapa","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96503,"full_name":"Anthus godlewskii","author_year":"(Taczanowski, 1876)","common_names":[{"lang":"English","names":"Blyth's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96517,"full_name":"Anthus vaalensis","author_year":"Shelley, 1900","common_names":[],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96519,"full_name":"Terpsiphone incei","author_year":"(Gould, 1852)","common_names":[{"lang":"English","names":"Chinese Paradise-flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96526,"full_name":"Turdus mandarinus","author_year":"Bonaparte, 1850","common_names":[{"lang":"English","names":"Chinese Blackbird","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Macau","country":"Macau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96527,"full_name":"Phylloscopus tephrocephalus","author_year":"J. Anderson, 1871","common_names":[{"lang":"English","names":"Grey-crowned Warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Seicercus tephrocephalus","author_year":"(Anderson, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96529,"full_name":"Gallinago undulata","author_year":"(Boddaert, 1783)","common_names":[{"lang":"English","names":"Giant Snipe","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Gallinago","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96531,"full_name":"Oriolus chinensis","author_year":"Linnaeus, 1766","common_names":[{"lang":"English","names":"Black-naped Oriole","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96542,"full_name":"Locustella tacsanowskia","author_year":"Swinhoe, 1871","common_names":[{"lang":"English","names":"Chinese Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Bradypterus tacsanowskius","author_year":"(Swinhoe, 1871)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96544,"full_name":"Sylvia leucomelaena","author_year":"(Ehrenberg, 1833)","common_names":[{"lang":"English","names":"Arabian Warbler, Red Sea Warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de la Mer Rouge","convention_language":true,"id":null}],"distributions":[{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96547,"full_name":"Geokichla citrina","author_year":"(Latham, 1790)","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Geokichla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96553,"full_name":"Zoothera aurea","author_year":"(Holandre, 1825)","common_names":[],"distributions":[{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96555,"full_name":"Niltava sundara","author_year":"Hodgson, 1837","common_names":[{"lang":"English","names":"Rufous-bellied Niltava","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Niltava","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96593,"full_name":"Dendronanthus indicus","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Forest Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Maldives","country":"Maldives","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Dendronanthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96595,"full_name":"Abroscopus schisticeps","author_year":"(Gray, 1846)","common_names":[{"lang":"English","names":"Black-faced Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Abroscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96606,"full_name":"Vireo philadelphicus","author_year":"(Cassin, 1851)","common_names":[{"lang":"English","names":"Philadelphia Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96616,"full_name":"Aquila fasciata","author_year":"(Vieillot, 1822)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Aquila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Hieraaetus fasciatus","author_year":"(Vieillot) 1822"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96623,"full_name":"Polioptila caerulea","author_year":"(Linnaeus, 1766)","common_names":[],"distributions":[{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Polioptilidae","genus_name":"Polioptila","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Polioptilidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96627,"full_name":"Bradypterus barratti","author_year":"Sharpe, 1876","common_names":[{"lang":"English","names":"Barratt's Warbler, African Scrub-warbler","convention_language":true,"id":null},{"lang":"French","names":"Fauvette de Barratt","convention_language":true,"id":null}],"distributions":[{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Bradypterus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96642,"full_name":"Haematopus leucopodus","author_year":"Garnot, 1826","common_names":[{"lang":"English","names":"Magellanic Oystercatcher","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Haematopodidae","genus_name":"Haematopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Recurvirostridae","auto_note":"FAMILY ADDITION Haematopodidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96648,"full_name":"Buteo plagiatus","author_year":"(Schlegel, 1862)","common_names":[{"lang":"English","names":"Grey Hawk","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Accipitridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96653,"full_name":"Anthus spinoletta","author_year":"(Linnaeus, 1758)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Albania","country":"Albania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Andorra","country":"Andorra","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96656,"full_name":"Terpsiphone viridis","author_year":"(Müller, 1776)","common_names":[{"lang":"English","names":"African Paradise-flycatcher, Gobemouche paradis","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Terpsiphone","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96659,"full_name":"Falco femoralis","author_year":"Temminck, 1822","common_names":[{"lang":"English","names":"Aplomado Falcon","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96665,"full_name":"Ficedula westermanni","author_year":"(Sharpe, 1888)","common_names":[{"lang":"English","names":"Little Pied Flycatcher","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96681,"full_name":"Cinclidium frontale","author_year":"Blyth, 1842","common_names":[{"lang":"English","names":"Blue-fronted Robin","convention_language":true,"id":null}],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cinclidium","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96690,"full_name":"Turdus atrogularis","author_year":"Jarocki, 1819","common_names":[{"lang":"English","names":"Black-throated Thrush","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Turdus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96698,"full_name":"Ficedula erithacus","author_year":"(Jerdon and Blyth, 1861)","common_names":[],"distributions":[{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96699,"full_name":"Vireo plumbeus","author_year":"Coues, 1866","common_names":[{"lang":"English","names":"Plumbeous Vireo","convention_language":true,"id":null}],"distributions":[{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96707,"full_name":"Horornis canturians","author_year":"Swinhoe, 1860","common_names":[{"lang":"English","names":"Korean Bush-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Scotocercidae","genus_name":"Horornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Cettia canturians","author_year":"(Swinhoe, 1860)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Scotocercidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96719,"full_name":"Sylvia deserti","author_year":"(Loche, 1858)","common_names":[{"lang":"English","names":"African Desert Warbler","convention_language":true,"id":null}],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Sylviidae","genus_name":"Sylvia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Sylviidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96722,"full_name":"Anthus richardi","author_year":"Vieillot, 1818","common_names":[{"lang":"English","names":"Richard's Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Qatar","country":"Qatar","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"State of Palestine","country":"State of Palestine","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96724,"full_name":"Falco cenchroides","author_year":"Vigors \u0026 Horsfield, 1827","common_names":[{"lang":"English","names":"Nankeen Kestrel, Australian Kestrel","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96730,"full_name":"Larvivora cyane","author_year":"Pallas, 1776","common_names":[{"lang":"English","names":"Siberian Blue Robin","convention_language":true,"id":null},{"lang":"French","names":"Rossignol bleu","convention_language":true,"id":null}],"distributions":[{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Erithacus cyane","author_year":"(Pallas, 1776)"},{"full_name":"Luscinia cyane","author_year":"(Pallas, 1776)"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96739,"full_name":"Monarcha frater","author_year":"Sclater, 1874","common_names":[{"lang":"English","names":"Black-winged Monarch","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Monarchidae","genus_name":"Monarcha","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Monarchidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96742,"full_name":"Oenanthe moesta","author_year":"(Lichtenstein, 1823)","common_names":[],"distributions":[{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Oenanthe","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96750,"full_name":"Anthus furcatus","author_year":"Lafresnaye \u0026 d'Orbigny, 1837","common_names":[{"lang":"English","names":"Short-billed Pipit","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96751,"full_name":"Zosterops erythropleurus","author_year":"Swinhoe, 1863","common_names":[{"lang":"English","names":"Chestnut-flanked White-eye","convention_language":true,"id":null}],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Zosteropidae","genus_name":"Zosterops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Zosteropidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96756,"full_name":"Myophonus caeruleus","author_year":"(Scopoli, 1786)","common_names":[],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Myophonus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96764,"full_name":"Actitis macularius","author_year":"Linnaeus, 1766","common_names":[{"lang":"Danish","names":"Plettet Mudderklire","convention_language":false,"id":null},{"lang":"Dutch","names":"Amerikaanse Oeverloper","convention_language":false,"id":null},{"lang":"English","names":"Spotted Sandpiper","convention_language":true,"id":null},{"lang":"French","names":"Chevalier grivelé","convention_language":true,"id":null},{"lang":"Spanish","names":"Andarríos maculado","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Austria","country":"Austria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Finland","country":"Finland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"France","country":"France","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Germany","country":"Germany","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greece","country":"Greece","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Greenland","country":"Greenland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Grenada","country":"Grenada","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Italy","country":"Italy","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Netherlands Antilles","country":"Netherlands Antilles","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Poland","country":"Poland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Svalbard and Jan Mayen Islands","country":"Svalbard and Jan Mayen Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Scolopacidae","genus_name":"Actitis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[{"full_name":"Actitis macularia","author_year":"(Linnaeus, 1766)"},{"full_name":"Tringa macularia","author_year":"Linnaeus, 1766"}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"This includes the sub-family Phalaropodinae, formerly listed as the family Phalaropodidae","auto_note":"FAMILY ADDITION Scolopacidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96822,"full_name":"Rhipidura albicollis","author_year":"(Vieillot, 1818)","common_names":[{"lang":"English","names":"White-throated Fantail","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2016. \u003Ci\u003EHBW and Birdlife International illustrated checklist of the birds of the world\u003C/i\u003E. Volume 2: passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Rhipiduridae","genus_name":"Rhipidura","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Rhipiduridae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96823,"full_name":"Falco mexicanus","author_year":"Schlegel, 1850","common_names":[{"lang":"English","names":"Prairie Falcon","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Falconiformes","class_name":"Aves","family_name":"Falconidae","genus_name":"Falco","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Falconidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96824,"full_name":"Oriolus mellianus","author_year":"Stresemann, 1922","common_names":[{"lang":"English","names":"Silver Oriole","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Oriolidae","genus_name":"Oriolus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Oriolidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96825,"full_name":"Vireo vicinior","author_year":"Coues, 1866","common_names":[{"lang":"English","names":"Grey Vireo","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96826,"full_name":"Vireo cassinii","author_year":"Xántus de Vesey, 1858","common_names":[{"lang":"English","names":"Cassin's Vireo","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96827,"full_name":"Vireo atricapilla","author_year":"Woodhouse, 1852","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Vireonidae","genus_name":"Vireo","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Vireonidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96828,"full_name":"Locustella amnicola","author_year":"Stepanyan, 1972","common_names":[{"lang":"English","names":"Sakhalin Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96829,"full_name":"Phylloscopus forresti","author_year":"Rothschild, 1921","common_names":[{"lang":"English","names":"Sichuan Leaf-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96830,"full_name":"Phylloscopus omeiensis","author_year":"(Martens, Eck, Päckert \u0026 Sun, 1999)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96831,"full_name":"Phylloscopus soror","author_year":"(Alström \u0026 Olsson, 1999)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96833,"full_name":"Phylloscopus intensior","author_year":"Deignan, 1956","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96834,"full_name":"Phylloscopus ogilviegranti","author_year":"(La Touche, 1922)","common_names":[{"lang":"English","names":"Kloss's Leaf-warbler","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96835,"full_name":"Zosterops japonicus","author_year":"Temminck \u0026 Schlegel, 1845","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Zosteropidae","genus_name":"Zosterops","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Zosteropidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96836,"full_name":"Sialia mexicana","author_year":"Swainson, 1832","common_names":[{"lang":"English","names":"Western Bluebird","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Sialia","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96837,"full_name":"Zoothera griseiceps","author_year":"(Delacour, 1930)","common_names":[{"lang":"English","names":"Sichuan Forest Thrush","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Turdidae","genus_name":"Zoothera","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Turdidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96838,"full_name":"Cyornis brunneatus","author_year":"(Slater, 1897)","common_names":[{"lang":"English","names":"Brown-chested Jungle-flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96839,"full_name":"Cyornis glaucicomans","author_year":"(Thayer \u0026 Bangs, 1909)","common_names":[{"lang":"English","names":"Chinese Blue-flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Cyornis","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96840,"full_name":"Larvivora ruficeps","author_year":"Hartert, 1907","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96841,"full_name":"Larvivora akahige","author_year":"(Temminck, 1835)","common_names":[{"lang":"English","names":"Japanese Robin","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Larvivora","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96842,"full_name":"Calliope obscura","author_year":"(Berezowski \u0026 Bianchi, 1891)","common_names":[],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Calliope","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96843,"full_name":"Ficedula elisae","author_year":"(Weigold, 1922)","common_names":[{"lang":"English","names":"Green-backed Flycatcher","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Muscicapidae","genus_name":"Ficedula","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Muscicapidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96844,"full_name":"Anthus spragueii","author_year":"(Audubon, 1844)","common_names":[{"lang":"English","names":"Sprague's Pipit","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Anthus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96845,"full_name":"Motacilla samveasnae","author_year":"Duckworth, Alström, Davidson, Evans, et al., 2001","common_names":[{"lang":"English","names":"Mekong Wagtail","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":96846,"full_name":"Motacilla grandis","author_year":"Sharpe, 1885","common_names":[{"lang":"English","names":"Japanese Wagtail","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99276,"full_name":"Elephas maximus","author_year":"Linnaeus, 1758","common_names":[],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Menon, V. and Tiwari, S.K. 2019. Population status of Asian elephants \u003Ci\u003EElephas maximus\u003C/i\u003E and key threats. International Zoo Yearbook: 53(1): 17-30.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Proboscidea","class_name":"Mammalia","family_name":"Elephantidae","genus_name":"Elephas","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99279,"full_name":"Panthera onca","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Jaguar","convention_language":true,"id":null},{"lang":"French","names":"Jaguar","convention_language":true,"id":null},{"lang":"German","names":"Jaguar","convention_language":false,"id":null},{"lang":"Spanish","names":"Tigre, Tigre Americano, Tigre mariposo, Tigre Real, Yaguar, Yaguareté, Otorongo, Jaguar","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Bolivia (Plurinational State of)","country":"Bolivia (Plurinational State of)","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"extinct","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Paraguay","country":"Paraguay","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"extinct (?)","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"extinct","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"De La Torre, J.A., González-Maya, J.F., Zarza, H., Ceballos, G. and Medellín, R.A. 2018. The jaguar's spots are darker than they appear: assessing the global conservation status of the jaguar \u003Ci\u003EPanthera onca\u003C/i\u003E. Oryx: 52(2): 300-315.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carnivora","class_name":"Mammalia","family_name":"Felidae","genus_name":"Panthera","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Felis onca","author_year":"(Linnaeus, 1758)"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99280,"full_name":"Ovis vignei","author_year":"Blyth, 1841","common_names":[{"lang":"English","names":"Urial","convention_language":true,"id":null},{"lang":"French","names":"Urial","convention_language":true,"id":null},{"lang":"German","names":"Urial","convention_language":false,"id":null},{"lang":"Spanish","names":"Urial","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Michel, S. 2010. Conservation of Tajik markhor (\u003Ci\u003ECapra falconeri heptneri\u003C/i\u003E) and urial (\u003Ci\u003EOvis vignei\u003C/i\u003E) in Tajikistan and adjacent Afghanistan. Galemys: 22: 407-419.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Farhadinia, M.S., Moqanaki, E.M. and Hosseini-Zavarei, F. 2014. Predator–prey relationships in a middle Asian Montane steppe: Persian leopard versus urial wild sheep in Northeastern Iran. European journal of wildlife research: 60(2): 341-349.; Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Sanna, D., Barbato, M., Hadjisterkotis, E., Cossu, P., Decandia, L., Trova, S., Pirastru, M., Leoni, G.G., Naitana, S., Francalacci, P. and Masala, B. 2015. The first mitogenome of the Cyprus Mouflon (\u003Ci\u003EOvis gmelini ophion\u003C/i\u003E): new insights into the phylogeny of the genus \u003Ci\u003EOvis\u003C/i\u003E. PloS one: 10(12): e0144257.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Tajikistan","country":"Tajikistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.; Michel, S. 2010. Conservation of Tajik markhor (\u003Ci\u003ECapra falconeri heptneri\u003C/i\u003E) and urial (\u003Ci\u003EOvis vignei\u003C/i\u003E) in Tajikistan and adjacent Afghanistan. Galemys: 22: 407-419.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"Hussain, T., Musthafa, M.M., Babar, M.E., Khan, W.A., Ullah, Z., Aqeel, M., Yaqub, A. and Marikar, F.M.M.T. 2018. Analysis of molecular genetic diversity of endangered Punjab urial (\u003Ci\u003EOvis vignei punjabiensis\u003C/i\u003E) based on interleukin 2 gene sequences. Bulgarian Journal of Veterinary Medicine: 21(2): 141-151.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Artiodactyla","class_name":"Mammalia","family_name":"Bovidae","genus_name":"Ovis","name_status":"A","nomenclature_note_en":"","cms_listing":"II/NC","synonyms":[{"full_name":"Eupodotis edwardsi","author_year":""},{"full_name":"Ovis aries arkal","author_year":""},{"full_name":"Ovis aries cycloceros","author_year":""},{"full_name":"Ovis aries vignei","author_year":""},{"full_name":"Ovis orientalis arabica","author_year":""},{"full_name":"Ovis orientalis arkal","author_year":""},{"full_name":"Ovis orientalis blanfordi","author_year":""},{"full_name":"Ovis orientalis bochariensis","author_year":""},{"full_name":"Ovis orientalis cycloceros","author_year":""},{"full_name":"Ovis orientalis punjabensis","author_year":""},{"full_name":"Ovis orientalis vignei","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":"Corresponds to \u003Ci\u003EOvis aries\u003C/i\u003E in Wilson and Reeder 2005, and applies only to wild populations in Afghanistan,\r\nIndia, Iran, Kazakhstan, Pakistan, Tajikistan, Turkmenistan and Uzbekistan, except for hybrid populations","auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99282,"full_name":"Ardeotis nigriceps","author_year":"(Vigors, 1831)","common_names":[{"lang":"English","names":"Great Indian Bustard","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Ardeotis","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Choriotis nigriceps","author_year":""},{"full_name":"Otis nigriceps","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99284,"full_name":"Houbaropsis bengalensis","author_year":"(Gmelin, 1789)","common_names":[],"distributions":[{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Jha, R.R., Thakuri, J.J., Rahmani, A.R., Dhakal, M., Khongsai, N., Pradhan, N.M.B., Shinde, N., Chauhan, B.K., Talegaonkar, R.K., Barber, I.P. and Buchanan, G.M. 2018. Distribution, movements, and survival of the critically endangered Bengal Florican \u003Ci\u003EHoubaropsis bengalensis\u003C/i\u003E in India and Nepal. Journal of Ornithology: 159(3): 851-866.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Houbaropsis","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[{"full_name":"Eupodotis bengalensis","author_year":""}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99287,"full_name":"Tetrax tetrax","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Little Bustard","convention_language":true,"id":null},{"lang":"French","names":"Outarde Canepetière","convention_language":true,"id":null},{"lang":"Spanish","names":"Sisón Común","convention_language":true,"id":null}],"distributions":[{"name":"Afghanistan","country":"Afghanistan","tags_list":"","country_references":"FAO. 1981. Checklist of the birds of Afghanistan. In: Afghanistan, a contribution to a conservation strategy FAO. Rome.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"distribution uncertain","country_references":"Palac’n, C. and Alonso, J.C. 2009. Probable population decline of the Little Bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in north-west Africa. Ostrich: 80(3): 165-170.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.; Heiss, M. 2016. Migratory behaviour of bird species occurring in critical numbers at Besh Barmag bottleneck in Azerbaijan. Bird Conservation International: 26(2): 243-255.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kralj, J. 2005. Rare Birds in Croatia (2nd Report of Croatian Rarities Committee). Larus-Godišnjak Zavoda za ornitologiju Hrvatske akademije znanosti i umjetnosti: 49(1): 37-50.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.","id":null},{"name":"Germany","country":"Germany","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Greece","country":"Greece","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"extinct","country_references":"Gauger; Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Salim, M.A., Al-Sheikhly, O.F., Majeed, K.A. and Porter, R.F. 2012. An annotated checklist of the birds of Iraq. Sandgrouse: 34(1): 3-44.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.; Harrison, I. and Grieve, A. 2012. Around the region. Sandgrouse: 34: 93-110.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Okabe, H. Yamashita, M. Yamashita, M. Ikenaga, H. 2015. The second record of a Little Bustard from Japan: rescued in Koga, Fukuoka Prefecture, Kyushu in 2011. Japan Journal of Ornithology: 64: 87–90.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.; Osborne, P.E. and Suárez-Seoane, S. 2007. Identifying core areas in a species’ range using temporal suitability analysis: an example using little bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E L. in spain. Biodiversity and conservation: 16(12): 3505-3518.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"distribution uncertain","country_references":"Ramadan-Jaradi, G., Itani, F. and Serhal, A. 2017. Interesting bird records from Lebanon. Sandgrouse: 39: 187–192.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Palac’n, C. and Alonso, J.C. 2009. Probable population decline of the Little Bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in north-west Africa. Ostrich: 80(3): 165-170.","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Velevski, M. and Vasić, V. 2017. Annotated check-list of the birds of the Republic of Macedonia. Acta Musei Macedonici Scientiarum Naturalium: 20(1): 54-76.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Harrison, I. and Grieve, A. 2012. Around the region. Sandgrouse: 34: 93-110.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"Dickinson, E.C. and Christidis, L. (Eds. ). 2014. The Howard and Moore complete checklist of the birds of the world, 4th. edition, Vol. 2. Aves Press, Eastbourne, United Kingdom.; Ghalib, S.A., Jabbar, A., Wind, J., Zehra, A. and Abbas, D. 2008. Avifauna of hingol national park, Balochistan. Pakistan Journal of Zoology: 40(5): 317-330.","id":null},{"name":"Poland","country":"Poland","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Romania","country":"Romania","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.; Collar, N.J., Baral, H.S., Batbayar, N., Bhardwaj, G.S., Brahma, N., Burnside, R.J., Choudhury, A.U., Combreau, O., Dolman, P.M., Donald, P.F., Dutta, S., Gadhavi, D., Gore, K., Goroshko, O.A., Hong C., Jathar, G.A., Jha, R.R.S., Jhala, Y.V., Koshkin, M.A., Lahkar, B.P., Liu, G., Mahood, S.P. Mahood, Morales, M.B., Narwade, S.S., Natsagdorj, T., Nefedov, A.A., Silva, J.P., Thakuri, J.J., Wang, M., Zhang, Y. and Kessler, A.E. 2017. Averting the extinction of bustards in Asia. Forktail: 33: 1–26.","id":null},{"name":"Serbia","country":"Serbia","tags_list":"extinct","country_references":"Amidzic, L., Bartula, M. and Cvetkovic, D. 2014. The state of biodiversity in Serbia. \u003Ci\u003ENatural Areas Journal\u003C/i\u003E, 34(2): 222-226.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Bretagnolle, V., Villers, A., Denonfoux, L., Cornulier, T., Inchausti, P. and Badenhausser, I. 2011. Rapid recovery of a depleted population of Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E following provision of alfalfa through an agri‐environment scheme. Ibis: 153(1): 4-13.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Serra, G., Mirreh, M., Kaddour, H., Razzouk, T., Al Jundi, A., Kanani, A., Batello, C. and Williamson, D. 2009. Assessment and characterization of Al Talila Reserve and surrounding Palmyrean desert. Damascus, Syria: IUCN/DGCS (Italian Development Cooperation Programme).","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"extinct","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.; Osborne, P.E. and Suárez-Seoane, S. 2007. Identifying core areas in a species’ range using temporal suitability analysis: an example using little bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E L. in spain. Biodiversity and conservation: 16(12): 3505-3518.","id":null},{"name":"Turkmenistan","country":"Turkmenistan","tags_list":"","country_references":"Gauger, K. 2007. Occurrence, ecology and conservation of wintering Little Bustards \u003Ci\u003ETetrax tetrax\u003C/i\u003E in Azerbaijan. Archiv für Naturschutz und Landschaftsforschung: 46(2): 5-27.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"Iñigo, A. and Barov, B. 2010. Action plan for the little bustard \u003Ci\u003ETetrax tetrax\u003C/i\u003E in the European Union. SEO| BirdLife and BirdLife International for the European Commission.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Otidiformes","class_name":"Aves","family_name":"Otididae","genus_name":"Tetrax","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[{"full_name":"Otis tetrax","author_year":"Linnaeus, 1758"}],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99288,"full_name":"Carcharhinus longimanus","author_year":"(Poey, 1861)","common_names":[{"lang":"English","names":"Oceanic white-tip shark","convention_language":true,"id":null},{"lang":"French","names":"requin blanc","convention_language":true,"id":null},{"lang":"Spanish","names":"Tiburon Oceanico","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Gilligan, J. J. and Otway, N. M. 2011. Comparison of dorsal and pectoral fin denudes for grey nurse, great white, and six whaler sharks from east Australian waters. Journal and Proceedings of the Royal Society of New South Wales: 144(3-4): Supplement 441-442: 66-82.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"Winterbottom, R. and Anderson, R. C. 1997. A revised checklist of the epipelagic and shore fishes of the Chagos Archipelago, central Indian Ocean. Ichthyological Bulletin of the J.L.B. Smith Institute of Ichthyology 66: 1-28.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Clipperton","country":"Clipperton","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"Anon. 2004. Mapeo de Indices de Sensibilidad de la Zona Costera de El Salvador. http://www.marn.gob.sv/CD2/atlasesi/esi.htm . ","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"WWF/SICA/CCAD/UICN. 1999. Listas de Fauna de importancia para la conservacin en Centroamrica y Mxico. http://bjcu.uca.edu.ni/biblioteca/nuevasadq/septiembre99/Listas_Fauna.htm WWF/SICA/CCAD/UICN. San Jose. ","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"Mejía, T.M. and House, P.R (eds.) 2008. Especies de preocupación especial en Honduras. Secretaría de Recursos Naturales y Ambiente. Tegucigalpa, Honduras. ","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Sajeevan, M. K. and Sanadi, R. B. 2012. Diversity, distribution and abundance of oceanic resources around Andaman and Nicobar Islands. Indian Journal of Fisheries: 59(2): 63-67.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Hafiz, A. 2002. Elasmobranch fisheries in the Maldives. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 114-121.","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"Bromhead, D., Clarke, S., Hoyle, S., Muller, B., Sharples, P. and Harley, S. 2012. Identification of factors influencing shark catch and mortality in the Marshall Islands tuna longline fishery and management implications. Journal of Fish Biology: 80(5): S1: 1870-1894.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Fricke, R., Kulbicki, M. and Wantiez, L. 2011. Checklist of the fishes of New Caledonia, and their distribution in the Southwest Pacific Ocean (Pisces). Stuttgarter Beiträge zur Naturkunde A, Neue Serie: 4: 341-463.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Francis, M. P., Worthington, C. J., Saul, P. and Clements, K. D. 1999. New and rare tropical and subtropical fishes from northern New Zealand. Journal of Marine and Freshwater Research: 33(4): 571-586.","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Al-Jufaili, S. M., Hermosa, G., Al-Shuaily, S. S. and Mujaini, A. A. 2010. Oman fish biodiversity. \u003Ci\u003EJournal of King Abdulaziz University: Marine Sciences\u003C/i\u003E, 21(1): 3-51.","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"D’Alberto, B.M., Chin, A., Smart, J.J., Baje, L., White, W.T. and Simpfendorfer, C.A. 2017. Age, growth and maturity of oceanic whitetip shark (\u003Ci\u003ECarcharhinus longimanus\u003C/i\u003E) from Papua New Guinea. Marine and Freshwater Research 68:(6) 1118-1129.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Compagno, L. J. V., Last, P. R., Stevens, J. D. and Alava, M. N. R. 2005. \u003Ci\u003EChecklist of Philippine Chondrichthyes\u003C/i\u003E. CSIRO Marine Laboratories Report 243.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Fricke, R., Mulochau, T., Durville, P., Chabanet, P., Tessier, E. and Letourneur, Y. 2009. Annotated checklist of the fish species (Pisces) of La Réunion, including a Red List of threatened and declining species. Stuttgarter Beiträge zur Naturkunde A, Neue Serie 2: 1–168.","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Gamblin, C., Pascal, B. and Lucas, V. 2007. Comparison of bycatch species captured during daytime and nightime: preliminary results of longline experiments carried out in Seychelles waters. IOTC-2007-WPEB-16 Document presented to the Indian Ocean Tuna Commission Working Party on Ecosystems and Bycatch in 2007.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Randall, J. E., Williams, J. T., Smith, D. G., Kulbicki, M., Tham, G. M., Labrosse, P., Kronen, M., Clua, E. and Mann, B. S. 2004. Checklist of the shore and epipelagic fishes of Tonga. Atoll Research Bulletin: 502.","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Howey-Jordan, L.A., Brooks, E.J., Abercrombie, D.L., Jordan, L.K., Brooks, A., Williams, S., Gospodarczyk, E. and Chapman, D.D. 2013. Complex movements, philopatry and expanded depth range of a severely threatened pelagic shark, the oceanic whitetip (\u003CI\u003ECarcharhinus longimanus\u003C/I\u003E) in the western North Atlantic. PloS one: 8: 2.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Carcharhinidae","genus_name":"Carcharhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99289,"full_name":"Sphyrna zygaena","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Smooth hammerhead shark","convention_language":true,"id":null},{"lang":"French","names":"Requin-marteau commun","convention_language":true,"id":null},{"lang":"German","names":"Glatter Hammerhai","convention_language":false,"id":null},{"lang":"Italian","names":"Squalo martello comune","convention_language":false,"id":null},{"lang":"Portuguese","names":"Tubarão-martelo-liso, Cambevato","convention_language":false,"id":null},{"lang":"Spanish","names":"Tiburón martillo liso, Cambeva-preta, Panam","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.; Zaera, D. and Alcalá, A. 2005. First record of \u003Ci\u003ESphyrna zygaena\u003C/i\u003E (Chondrichthyes: Sphyrnidae) from Angola. Cybium: 29(4): 417-418.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Hoq, M. E., Haroon, A. K. Y. and Hussain, M. G. 2011. Shark fisheries in the Bay of Bengal, Bangladesh: Status and potentialities. Support to Sustainable Management of the BOBLME Project, Bangladesh Fisheries Research Institute (BFRI), Bangladesh.","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"Meerman, J.C. 2005. Compilation of information on biodiversity in Belize. Forest Department of the Ministry of Natural Resources and the Environment. Belize. ","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655; Menezes, N. A. 2011. Checklist de peixes marinhos do Estado de São Paulo, Brasil. Biota Neotropica: 11(1): 34-46.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Wirtz, P., Brito, A., Falcón, J. M., Freitas, R., Fricke, R., Monteiro, V., Reiner, F. and Tariche, O. 2013. The coastal fishes of the Cape Verde Islands - new records and an annotated check-list. Spixiana: 36(1): 113-142. ","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"Mejía-Falla, P. A., Navia, A. F., Mejía-Ladino, L. M., Acero, A. P. and Rubio, E. A. 2007. Tiburones y rayas de Colombia (Pisces Elasmobranchii): Lista actualizada, revisada y comentada. Boletín de Investigaciones Marinas y Costeras: 36: 111-149.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Tirado-Sanchez, N., Ruiz, D., Chiriboga, A. and Banks, S. 2013. CDF Checklist of Galapagos Fish. In: Bungartz, F., Herrera, H., Jaramillo, P., Tirado, N., Jiménez-Uzcátegui, G., Ruiz, D., Guézou, A. and Ziemmeck, F. (eds.). Charles Darwin Foundation Galapagos Species Checklist. Charles Darwin Foundation, Puerto Ayora, Galapagos.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Seeto, J. and Baldwin, W. J. 2010. A checklist of the fishes of Fiji and a bibliography of Fijian fishes. Division of Marine Studies Technical Report 1/2010. The University of the South Pacific. Suva, Fiji.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Ni, I. and Kwok, K. 1999. Marine fish fauna in Hong Kong waters. Zoological Studies: 38(2): 130-152.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Theivasigamani, M. and Subbiah, S. 2014. Elasmobranch fishery resources of Gulf of Mannar, southeast coast of India. World Journal of Fish and Marine Sciences: 6(1): 24-29.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Sperone, E., Parise, G., Leone, A., Milazzo, C., Circosta, V., Santoro, G., Paolillo, G., Micarelli, P. and Tripepi, S. 2012. Spatiotemporal patterns of distribution of large predatory\r\nsharks in Calabria (central Mediterranean, southern Italy). Acta Adriatica: 53(1): 13-24.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Schembri, T., Fergusson. I. K. and Schembri, P. J. 2003. Revision of the records of shark and ray species from the Maltese Islands (Chordata: Chondrichthyes). The Central Mediterranean Naturalist: 4(1): 71-104.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Baissac, J. de B. 1990. SWIOP/WP/54 - Checklist of the marine fishes of Mauritius. RAF/87/008/WP/54/90 Regional Project for the Development \u0026 Management of Fisheries in the Southwest Indian Ocean. ","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Bastida-Zavala, J. R., del Socorro García-Madrigal, M., Rosas-Alquicira, E. F., López-Pérez, R. A., Benítez-Villalobos, F., Meraz-Hernando, J. F., Torres-Huerta, M., Montoya-Márquez, A. and Barrientes-Luján, N. A. 2013. Marine and coastal biodiversity of Oaxaca, Mexico. Check List: 9(2): 329-390.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Lipej. L., De Maddalena, A. and Soldo, A. 2004. Sharks of the Adriatic Sea. Knjiznica Annales Majora. Koper, Slovenia.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Henderson, A. C. and Reeve, A. J. 2011. Noteworthy elasmobranch records from Oman. African Journal of Marine Science: 33(1): 171-175.","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Barut, N. C. and Zartiga, J. S. 2002. Shark fisheries in the Philippines. In: Fowler, S.L., Reed, T.M. and Dipper, F.A. (eds.) Elasmobranch biodiversity, conservation and management: proceedings of the international seminar and workshop, Sabah, Malaysia, July 1997. IUCN SSC Shark Specialist Group. IUCN: Gland, Switzerland and Cambridge, UK, 127-131.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Diemer, K. M., Mann, B. Q. and Hussey, N. E. 2011. Distribution and movement of scalloped hammerhead \u003Ci\u003ESphyrna lewini\u003C/i\u003E and smooth hammerhead \u003Ci\u003ESphyrna zygaena\u003C/i\u003E sharks along the east coast of southern Africa. African Journal of Marine Science: 33(2): 229-238.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"De Silva, R. I. 2006. Taxonomy and status of the sharks and rays of Sri Lanka. In: Bambaradeniya, C. N. B. (ed.) Fauna of Sri Lanka: Status of taxonomy, research and conservation. The World Conservation Union, Colombo, Sri Lanka \u0026 Government of Sri Lanka. 308pp.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Taxonomic Checklist of Fish species listed in the CITES Appendices and the Annexes of EC Regulation 338/97 (Elasmobranchii, Actinopteri, Coelacanthi, and Dipneusti, except the genus \u003Ci\u003EHippocampus\u003C/i\u003E). Information extracted from Eschmeyer, W.N. \u0026 Fricke, R. (Eds.): Catalog of Fishes, an online reference, version update from 3 February 2015. See Annex 6 of CoP17 Doc. 81.1 at https://cites.org/sites/default/files/eng/cop/17/WorkingDocs/E-CoP17-81-01-A6.pdf","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Ebert, D. A. and Stehmann, M. F. W. 2013. Sharks, batoids and chimaeras of the North Atlantic. FAO Species Catalogue for Fishery Purposes No. 7. FAO: Rome. 523 pp.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Proposal to include \u003Ci\u003ESphyrna lewini\u003C/i\u003E, \u003Ci\u003ESphyrna mokarran\u003C/i\u003E and \u003Ci\u003ESphyrna zygaena\u003C/i\u003E in Appendix II of CITES. CoP16 Prop. 43.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 2 - Carcharhiniformes. FAO Fish. Synop:125: 251-655","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Sphyrnidae","genus_name":"Sphyrna","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99292,"full_name":"Galeorhinus galeus","author_year":"Linnaeus, 1758","common_names":[{"lang":"English","names":"Tope","convention_language":true,"id":null},{"lang":"French","names":"Cagnot","convention_language":true,"id":null},{"lang":"German","names":"Hundshai","convention_language":false,"id":null},{"lang":"Spanish","names":"Bosti","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Elias, I., Rodriguez, A., Hasan, E., Reyna, M.V. and Amoroso, R.O. 2004. Biological observations of the tope shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, in the northern Patagonian gulfs of Argentina. Journal of Northwest Atlantic Fishery Science: 35: 261–265.","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Meléndez, M.J., Báez, J.C., Serna-Quintero, J.M., Camiñas, J.A., de Loyola Fernandez, I., Real, R. and Macias, D. 2017. Historical and ecological drivers of the spatial pattern of Chondrichthyes species richness in the Mediterranean Sea. PloS one: 12:(4).","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"Knijn, R.J., Boon, T.W., Heessen, H.J. and Hislop, J.R. 1993. Atlas of North Sea fishes. ICES cooperative research report: 194: 268.","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.; Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.; Lucifora, L.O., García, V.B., Menni, R.C. and Escalante, A.H. 2006. Food habits, selectivity, and foraging modes of the school shark \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E. Marine Ecology Progress Series: 315: 259-270.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Compagno, L. J. V. 1984. FAO species catalogue. Vol. 4. Sharks of the world. An annotated and illustrated catalogue of shark species known to date. Part 1 - Hexanchiformes to Lamniformes. FAO Fish. Synop.: 125: 1-249.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Hernández, S., Daley, R., Walker, T., Braccini, M., Varela, A., Francis, M.P. and Ritchie, P.A. 2015. Demographic history and the South Pacific dispersal barrier for school shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) inferred by mitochondrial DNA and microsatellite DNA mark. Fisheries Research: 167: 132-142.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"Capapé, C., Ben Souissi, J., Méjri, H., Guélorget, O. and Hemida, F. 2005. The reproductive biology of the school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E Linnaeus 1758 (Chondrichthyes: \u003Ci\u003ETriakidae\u003C/i\u003E), from the Maghreb shore (southern Mediterranean). Acta Adriatica: International Journal of Marine Sciences: 46(2): 109-124.; Hurst, R.J., Baglet, N.W., McGregor, G.A. and Francis, M.P. 1999. Movements of the New Zealand school shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, from tag returns. New Zealand Journal of Marine and Freshwater Research: 33(1): 29-48.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"Fisheries and Oceans Canada 2012. Management Plan for the Bluntnose Sixgill Shark (\u003Ci\u003EHexanchus griseus\u003C/i\u003E) and Tope Shark (\u003Ci\u003EGaleorhinus galeus\u003C/i\u003E) in Canada [Final]. Species at Risk Act Management Plan Series. Fisheries and Oceans Canada, Ottawa. iv + 37.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Elias, I., Rodriguez, A., Hasan, E., Reyna, M.V. and Amoroso, R.O. 2004. Biological observations of the tope shark, \u003Ci\u003EGaleorhinus galeus\u003C/i\u003E, in the northern Patagonian gulfs of Argentina. Journal of Northwest Atlantic Fishery Science: 35: 261–265.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Carcharhiniformes","class_name":"Elasmobranchii","family_name":"Triakidae","genus_name":"Galeorhinus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"22/05/2020","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99519,"full_name":"Asio capensis","author_year":"(Smith, 1834)","common_names":[{"lang":"English","names":"Marsh Owl","convention_language":true,"id":null},{"lang":"French","names":"Hibou du Cap","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Asio","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":99520,"full_name":"Rhynchobatus laevis","author_year":"Bloch \u0026 Schneider 1801","common_names":[{"lang":"English","names":"Smoothnose Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99521,"full_name":"Rhynchobatus djiddensis","author_year":"Forsskål 1775","common_names":[{"lang":"English","names":"Giant Guitarfish, Whitespotted Wedgefish","convention_language":true,"id":null}],"distributions":[{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Rhinopristiformes","class_name":"Elasmobranchii","family_name":"Rhinidae","genus_name":"Rhynchobatus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"14/12/2018","name":"Sharks"}]},{"id":99523,"full_name":"Bubo scandiacus","author_year":"(Linnaeus, 1758)","common_names":[{"lang":"English","names":"Snowy Owl","convention_language":true,"id":null},{"lang":"French","names":"Harfang des neiges","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"","id":null},{"name":"Norway","country":"Norway","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Strigiformes","class_name":"Aves","family_name":"Strigidae","genus_name":"Bubo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"22/10/2008","name":"Raptors"}]},{"id":99525,"full_name":"Buteo trizonatus","author_year":"(Rudebeck, 1957)","common_names":[{"lang":"English","names":"Forest Buzzard","convention_language":true,"id":null},{"lang":"French","names":"Buse forestière","convention_language":true,"id":null},{"lang":"Spanish","names":"Busardo de El Cabo","convention_language":true,"id":null}],"distributions":[{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Accipitriformes","class_name":"Aves","family_name":"Accipitridae","genus_name":"Buteo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"06/10/2015","name":"Raptors"}]},{"id":99526,"full_name":"Phalacrocorax aristotelis","author_year":"","common_names":[{"lang":"English","names":"European Shag","convention_language":true,"id":null},{"lang":"French","names":"Cormoran huppé","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Phalacrocorax","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"08/03/2019","name":"AEWA"}]},{"id":99527,"full_name":"Crex egregia","author_year":"(Peters, 1854)","common_names":[{"lang":"English","names":"African Crake","convention_language":true,"id":null},{"lang":"French","names":"Râle des prés","convention_language":true,"id":null},{"lang":"Spanish","names":"Guión africano","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Crex","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Crecopsis egregia","author_year":"(Peters, 1854)"},{"full_name":"Ortygometra egregia","author_year":"Peters, 1854"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99529,"full_name":"Zapornia flavirostra","author_year":"(Swainson, 1837)","common_names":[{"lang":"Dutch","names":"Zwart Porseleimhoen","convention_language":false,"id":null},{"lang":"English","names":"Black Crake","convention_language":true,"id":null},{"lang":"French","names":"Marouette à bec jaune","convention_language":true,"id":null},{"lang":"Spanish","names":"Polluela negra africana","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"distribution uncertain","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Further biological surveys of Manenguba and Central Bakossi in March 2000, and an evaluation of the conservation importance of Manenguba, Bakossi, Kupe and Nlonako Mts, with special reference to birds. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-45.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Hald-Mortensen, P. 1971. A collection of birds from Liberia and Guinea (Aves). Steenstrupia: 1: 115-125.; Halleux, D. 1994. Annotated bird list of Macenta Prefecture, Guinea. Malimbus: 16: 10-29.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Walsh, J. F. 1987. Records of birds seen in north-eastern Guinea in 1984-85. Malimbus: 9: 105-122.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"distribution uncertain","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Gruiformes","class_name":"Aves","family_name":"Rallidae","genus_name":"Zapornia","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Amaurornis flavirostra","author_year":"(Swainson, 1837)"},{"full_name":"Gallinula flavirostra","author_year":"Swainson, 1837"},{"full_name":"Limnocorax flavirostra","author_year":"(Swainson, 1837)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99531,"full_name":"Leptoptilos crumenifer","author_year":"(Lesson, 1831)","common_names":[{"lang":"English","names":"Marabou","convention_language":true,"id":null},{"lang":"French","names":"Marabout d'Afrique","convention_language":true,"id":null}],"distributions":[{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Benin","country":"Benin","tags_list":"","country_references":"Claffey, P. M. 2003. Comparative list of species in the Dahomey Gap (including the W Park). Unpublished. ; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Green, A. A. and Sayer, J. A. 1979. The birds of Pendjari and Arli National Parks (Benin and Upper Volta). Malimbus: 1: 14-28.; Vaan, C. de. 1991. Observations des oiseaux dans le nord-ouest du Benin. Unpublished. ","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Burkina Faso","country":"Burkina Faso","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Burundi","country":"Burundi","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Schouteden, H. 1948. De Vogels van Belgisch Congo en van Ruanda-Urundi. Annalen van het Museum van Belgisch Congo C. Dierkunde Reeks IV . 1-564","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Etudes ornithologiques et mammalogiques dans les Parcs Nationaux de la Bénoué et du Faro (Mars 1999). Tauraco Press, for WWF Cameroon. Liège (Belgium). ; Dowsett-Lemaire, F. and Dowsett, R. J. 2000. Birds of the Lobeke faunal reserve, Cameroon, and its regional importance for conservation. Bird Conservation International: 10: 67-87; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Louette, M. 1981. The birds of Cameroon: an annotated checklist. Verhandelingen Koninklijke Academie Brussels (kl. Wet.): 43: 1-295.; Scholte, P., de Kort, S. and van Weerd, M. 1999. The birds of Waza-Logone area, Far-North Province, Cameroon. Malimbus: 21: 16-50.","id":null},{"name":"Central African Republic","country":"Central African Republic","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Congo","country":"Congo","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Thiollay, J.-M. 1985. Birds of Ivory Coast: status and distribution. Malimbus: 7: 1-59.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1988. Birds of Swaziland. Bokmakierie: 40: 77-79.; Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Klaptocz, A. 1913. Beitrag zur Kenntnis der Ornis Französisch Guineas. Journal für Ornitologie: 61: 444-455.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"Gatter, W. 1997. Birds of Liberia. Pica Press. Sussex.","id":null},{"name":"Malawi","country":"Malawi","tags_list":"","country_references":"Newman, K., Johnston-Stewart, N. and Medland, B. 1992. The birds of Malawi. A supplement to Newman's birds of Southern Africa. Southern Book Publishers (Pty). Cape Town.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Nickel, H. 2003. Ökologische Untersuchungen zur Wirbeltierfauna in südöstilichen Mauretanien. Zwei Fallstudien unter besonderer Berücksichtigung der Krokodile. Deutsche Gesellschaft für Technische Zusammenarbeit (GTZ) GmbH. Eschborn.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Niger","country":"Niger","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Rwanda","country":"Rwanda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Brooke, R. K. 1984. South African Red Data Book: birds. South African National Scientific Programmes Report .; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Kemp, A. C. 1980. The importance of the Kruger National Park for bird conservation in the Republic of South Africa. Koedoe: 23: 99-122.","id":null},{"name":"South Sudan","country":"South Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Spain","country":"Spain","tags_list":"distribution uncertain","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"Cheke, R. A. and Walsh, J. F. 1996. The birds of Togo: an annotated checklist. BOU Checklist No. 14. British Ornithologists' Union. Tring.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Walsh, J. F., Cheke, R. A. and Sowah, S. A. 1990. Additional species and breeding records of birds in the Republic of Togo. Malimbus: 12: 2-18.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Mlingwa, C. 1989. Notes on Marabou Storks \u003Ci\u003ELeptoptilos crumeniferus\u003C/i\u003E at Shinyanga, Tanzania. East African Natural History Society Bulletin: 19: 34.","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Ewbank, D. R. 1993. Status of storks, ibises and spoonbills in the Matabele Area of Zimbabwe. Specialist Group on Storks, Ibis and Spoonbills Newsletter: 6: 11-12.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Ciconiiformes","class_name":"Aves","family_name":"Ciconiidae","genus_name":"Leptoptilos","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Ciconia crumenifera","author_year":"Lesson, 1831"},{"full_name":"Leptoptilos crumeniferus","author_year":"(Lesson, 1831)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99536,"full_name":"Ardea brachyrhyncha","author_year":"(Brehm, 1854)","common_names":[{"lang":"English","names":"Yellow-billed Egret","convention_language":true,"id":null},{"lang":"French","names":"Héron à bec jaune","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Bangladesh","country":"Bangladesh","tags_list":"","country_references":"Harvey, W. G. 1990. Birds in Bangladesh. University Press Ltd. Dhaka.; Khan, S.I. and Naher, H. 2009. Birds in Kurigram district of Bangladesh. Journal of Threatened Taxa: 1: 245-250.","id":null},{"name":"Bhutan","country":"Bhutan","tags_list":"","country_references":"Inskipp, C., Inskipp, T. and Grimmett, R. 1999. Birds of Bhutan. Christopher Helm. London.","id":null},{"name":"Botswana","country":"Botswana","tags_list":"","country_references":"Newman, K. 1989. Birds of Botswana. Southern Book Publishers (Pty).","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cabo Verde","country":"Cabo Verde","tags_list":"","country_references":"Hazevoet, C. J. 1995. The birds of the Cape Verde Islands. British Ornithologists' Union. Tring, U.K.; Hazevoet, C. J. 1999. Notes on birds from the Cape Verde Islands in the collection of the Centro de Zoologia, Lisbon, with comments on taxonomy and distribution. Bulletin of the British Ornithologists' Club: 119: 25-31.","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"Sun Hean, Seng Kim Hout, Keo Omaliss, Heng Neatmony and C. Poole. 1998. [The birds of Cambodia.]. European Support Programme for the Environment Sector in Cambodia and the Wildlife Protection Office of the Department of Forestry. Ministry of Agriculture. Forestry and Fisheries. Royal Government of .","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Dowsett-Lemaire, F. and Dowsett, R. J. 1999. Zoological survey (birds, amphibians) of Lobéké Faunal Reserve in April 1999, with special reference to the Dja River Warbler \u003Ci\u003EBradypterus grandis\u003C/i\u003E. Tauraco a. s. b. l., for WWF-Cameroon. Liége (Belgium). 1-25.; Fossé, A. 1997. L'Aigrette intermédiaire \u003Ci\u003EEgretta intermedia\u003C/i\u003E au Cameroon. Malimbus: 19: 38.; Martinez, I., Elliott, V. A. and Field, G. D. 1996. Yellow-billed Egret \u003Ci\u003EEgretta intermedia\u003C/i\u003E on the coast of Cameroon. Malimbus: 18: 58.","id":null},{"name":"Chad","country":"Chad","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Côte d'Ivoire","country":"Côte d'Ivoire","tags_list":"","country_references":"Walsh, J. F. 1986. Notes on the birds of Ivory Coast. Malimbus: 8: 89-91","id":null},{"name":"Democratic People's Republic of Korea","country":"Democratic People's Republic of Korea","tags_list":"","country_references":"Duckworth, J. W. 2006. Records of some bird species hitherto rarely found in DPR Korea. Bulletin of the British Ornithologists' Club 119: 56-59.; Fiebig, J. 1993. Dreijährige ornithologische Studien in Nordkorea. I. Allgemeiner Teil und Non-Passeriformes. Mitteilungen aus dem Zoologischen Museum in Berlin, Supplement: Annalen für Ornithologie: 17: 93-146.; Stepanyan, L. S. 1998. {Materials to the ornithological fauna of the Korean peninsula.]. Ornithologia: 28: 114-119.; Tomek, T. 1999. The birds of North Korea. Non-Passeriformes. Acta zoologica cracoviensia : 42: 1-217.","id":null},{"name":"Democratic Republic of the Congo","country":"Democratic Republic of the Congo","tags_list":"","country_references":"Pedersen, T. 2005. Democratic Republic of Congo - a bird checklist. http://www.tommypedersen.com . ","id":null},{"name":"Eswatini","country":"Eswatini","tags_list":"","country_references":"Parker, V. 1992. Swaziland bird checklist. The Conservation Trust of Swaziland. Swaziland.","id":null},{"name":"Ethiopia","country":"Ethiopia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"","country_references":"Altenburg, W. and van der Kamp, W. 1991. Ornithological importance of coastal wetlands in Guinea. ICBP Study Report No. 47: 104 pp.; Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ; Aversa, T. 2007. Bird observations from Dabola Prefecture, Guinea. Bulletin of the African Bird Club: 14: 45-54.; Borrow, N. and Demey, R. 2001. Birds of western Africa. Christopher Helm. London.; Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Morel, G. J. and Morel, M.-Y. 1988. Liste des oiseaux de Guinée. Malimbus: 10: 143-176.; Nikolaus, J. 2000. The birds of the Parc National du Haut Niger, Guinea. Malimbus: 22: 1-22.; Richards, D. K. 1982. The birds of Conakry and Kakulima, Democratic Republic of Guinea. Malimbus: 4: 93-103.; Wright, H. E., McCullough, J. and Diallo, M. S (eds.) 2006. A Rapid Biological Assessment of the Boké Préfecture, Northwestern Guinea. RAP Bulletin of Biological Assessment: 41: 192.","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.; Frade, F. and Bacelar, A. 1955. Catalogo das aves da Guiné Portuguesa - Non passeres. Annl. Junta Invest. Ultram.: 10: 7-173.; Hazevoet, C. J. 1996. Birds observed in Guinea-Bissau, January 1986, with a review of current ornithological knowledge of the country. Malimbus: 18: 10-24.; Rodwell, S. P. 1996. Notes on the distribution and abundance of birds observed in Guinea-Bissau, 21 February to 3 April 1992. Malimbus: 18: 25-43.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Lao People's Democratic Republic","country":"Lao People's Democratic Republic","tags_list":"","country_references":"Delacour, J. and Jabouille, P. 1940. Liste des oiseaux de l'Indochine française, completée et mise a jour. L'Oiseau et R.f.O.: 10: 89-220.","id":null},{"name":"Lesotho","country":"Lesotho","tags_list":"","country_references":"Bonde, K. 1993. Birds of Lesotho, a guide to distribution past and present. University of Natal Press.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Anderson, R. C. and Baldock, M. 2001. New records of birds from the Maldives, with notes on other species. Forktail: 17: 67-73.; Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mali","country":"Mali","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"Wiles, G. J., Johnson, N. C., De Cruz, J. B., Dutson, G., Camacho, V. A., Kepler, A. K., Vice, D. S., Garrett, K. L., Kessler, C. C. and Pratt, H. D. 2004. New and noteworthy bird records for Micronesia, 1986-2003. Micronesica: 37(1): 69-96","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"Smythies, B. E. 1986. The birds of Burma. 3rd edition. Nimrod Press and Silvio Mattacchione and Co. Liss, Hampshire, U.K and Pickering, Ontario.","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Nepal","country":"Nepal","tags_list":"","country_references":"Inskipp, C. and Inskipp, T. 1991. A guide to the birds of Nepal. 2nd ed. Christopher Helm.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Skerrett, A. and the Seychelles Bird Records Committee. 2001. The second report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 8: 23-29.; Skerrett, A., Betts, M., Bullock, I., Fisher, D., Gerlach, R., Lucking, R., Phillips, J. and Scott, B. 2006. Third report of the Seychelles Bird Records Committee. Bulletin of the African Bird Club: 13: 170-177.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"Harrison, J. A. 1999. A field guide to the birds of Sri Lanka. Oxford University Press. Oxford.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Uganda","country":"Uganda","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null},{"name":"Zambia","country":"Zambia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Pelecaniformes","class_name":"Aves","family_name":"Ardeidae","genus_name":"Ardea","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Ardea intermedia","author_year":"Wagler, 1829"},{"full_name":"Egretta intermedia","author_year":"(Wagler, 1829)"},{"full_name":"Mesophoyx intermedia","author_year":"(Brehm, 1854)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99565,"full_name":"Pontoporia blainvillei","author_year":"(Gervais \u0026 d'Orbigny, 1844)","common_names":[{"lang":"English","names":"La Plata River Dolphin","convention_language":true,"id":null},{"lang":"French","names":"Dauphin de la Plata","convention_language":true,"id":null},{"lang":"Spanish","names":"Delfín de la Plata","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"Crespo, E.A., Pedraza, S.N., Grandi, M.F., Dans, S.L. and Garaffo, G.V. 2010. Abundance and distribution of endangered Franciscana dolphins in Argentine waters and conservation implications. Marine Mammal Science: 26: 17-35.; Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Fonseca, G. A. B. da, Herrmann, G., Leite, Y. L. R., Mittermeier, R. A., Rylands, A. B. and Patton, J. L. 1996. Lista anotada dos mamiferos do Brasil. Occasional Papers in Conservation Biology Conservation International. Washington DC. ; Geise, L. and Borobia, M. 1987. New Brazilian records for \u003Ci\u003EKogia\u003C/i\u003E, \u003Ci\u003EPontoporia\u003C/i\u003E, \u003Ci\u003EGrampus\u003C/i\u003E and \u003Ci\u003ESotalia\u003C/i\u003E (Cetacea, Physeteridae, Platanistidae, and Delphinidae). Journal of Mammalogy: 68: 873-875.","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"Redford, K. H and Eisenberg, J. F. 1992. Mammals of the Neotropics. Volume 2. The southern cone: Chile, Argentina, Uruguay, Paraguay. The University of Chicago Press.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Pontoporiidae","genus_name":"Pontoporia","name_status":"A","nomenclature_note_en":"","cms_listing":"I/II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"15/07/1997","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null},{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"12/12/1991","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99583,"full_name":"Hydrocoloeus minutus","author_year":"Pallas, 1776","common_names":[{"lang":"English","names":"Little Gull","convention_language":true,"id":null},{"lang":"French","names":"Mouette pygmée","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"Ledant, J.-P. Jacob, J.-P., Jacobs, P., Malher, F., Ochando, B. and Roché, J. 1981. Mise à jour de l'avifaune algérienne. Gerfaut: 71: 295-398.","id":null},{"name":"Angola","country":"Angola","tags_list":"","country_references":"Dean, W. R. J. 2000. The birds of Angola: an annotated checklist. BOU Checklist No. 18. British Ornithologists' Union. Tring.","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"Rokitansky, G. 1964. Catalogus Faunae Austriae. XXIb Aves.","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"Norton, R. 1999. West Indies region. North American Birds: 53: 214-215.","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"Herroelen, P. 1997. Liste des oiseaux de Belgique (espèces, sous-espèces, statut et nombre de couples nicheurs) 1901-1995. 2me edition.","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"Amos, E. J. R. 1991. A guide to the birds of Bermuda. Eric J. R. Amos. Warwick, Bermuda.","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"Nankinov, D. 1992. Check list of bird species and subspecies in Bulgaria. Avocetta: 16: 1-17.","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"Quantrill, B. and Quantrill, R. 1995. First record of Little Gull \u003Ci\u003ELarus minutus\u003C/i\u003E in Cameroon. Malimbus: 17: 103.","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"Godfrey, E. 1986. The birds of Canada. 2nd ed. National Museum of Natural Sciences. Ottawa, Canada.","id":null},{"name":"China","country":"China","tags_list":"","country_references":"Cheng Tso-hsin. (ed.) 1994. A complete checklist of the species and subspecies of Chinese birds.","id":null},{"name":"Colombia","country":"Colombia","tags_list":"distribution uncertain","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"Kraij, J. 1997. [Croatian ornithofauna in the last 200 years.]. Larus: 46: 1-112.","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"Flint, P. R. and Stewart, P. F. 1991. The birds of Cyprus. 2nd edition. British Ornithologists' Union Checklist No. 6. London.","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"Kren, J. 2000. Birds of the Czech Republic. Christopher Helm. London.","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Dybbro, T. 1978. Oversigt over Danmarks fugle. Dansk Ornithologisk Forening. Denmark.","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"Goodman, S. M. and Meininger, P. L. 1989. The birds of Egypt. Oxford University Press. Oxford.","id":null},{"name":"Estonia","country":"Estonia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Veromann, H. and Leibak, E (eds.) 1994. Birds of Estonia: numbers, distribution and phenology.","id":null},{"name":"Faroe Islands","country":"Faroe Islands","tags_list":"","country_references":"Bloch, D. and Sfrensen, S. 1984. Check list of Faroes birds. Torshaven.","id":null},{"name":"Finland","country":"Finland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Solonen, T. 1985. Suomen linnusto. Lintutieto. Helsinki.","id":null},{"name":"France","country":"France","tags_list":"","country_references":"Cruon, R., Erard, C., Lebreton, J-D and Nicolau-Guillaumet, P. 1992. Liste des oiseaux de France. Oiseau et R.f.O.: 62: 97-116.","id":null},{"name":"Gabon","country":"Gabon","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Gambia","country":"Gambia","tags_list":"","country_references":"Gore, M. E. J. 1990. The birds of the Gambia. 2nd ed. British Ornithologists' Union Check List No. 3. BOU. London.","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"Barthel, P. 1993. Artenliste der Vögel Deutschlands. J. Orn.: 134: 113-135.; BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.","id":null},{"name":"Ghana","country":"Ghana","tags_list":"","country_references":"Grimes, L. 1987. The birds of Ghana. B.O.U. Check-list No. 9. British Ornithologists' Union. London.","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"Handrinos, G. and Akriotis, T. 1997. The birds of Greece. Christopher Helm. London.","id":null},{"name":"Guinea","country":"Guinea","tags_list":"distribution uncertain","country_references":"Anon. 1998. Liste des oiseaux de Guinée mise àhour au 31 Décembre 1998. Unpublished. ","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"Araújo, A. M. P. de. 1994. A importância ornitológica da Região da Cufada na Guiné-Bissau. ICN (Estud. de Biol. e Conserv. da Natureza 13). Lisbon.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"","country_references":"Leader, P. J. 1999. Little Gull: the first record for Hong Kong. Hong Kong Bird Report 1999: 118-119.","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"Gorman, G. 1996. The birds of Hungary. Christopher Helm. London.","id":null},{"name":"Iceland","country":"Iceland","tags_list":"","country_references":"Breuil, M. 1989. Les oiseaux d'Islande. Le Chevalier. Paris.","id":null},{"name":"India","country":"India","tags_list":"","country_references":"Ripley, S. D. 1982. A synopsis of the birds of India and Pakistan. 2nd edition. Bombay Natural History Society. Bombay.","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"Scott, D. A., Hamadani, H. M. and Mirhosseyni, A. A. 1975. [The birds of Iran.]. Department of Environment. Tehran, Iran.","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"Allouse, B. E. 1953. The avifauna of Iraq. Iraq Natural History Museum Publication: 3.","id":null},{"name":"Ireland","country":"Ireland","tags_list":"","country_references":"Hutchinson, C. D. 1989. Birds in Ireland. Poyser. Calton, U.K.","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"Shirihai, H. 1996. The birds of Israel. Academic Press. London.","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"Brichetti, P. and Massa, B. 1998. Check-list degli uccelli italiani aggaornata a tutto il 1997. Riv. Ital. Ornithol.: 68: 129-152.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"distribution uncertain","country_references":"Andrews, I. J. 1995. The birds of the Hashemite Kingdom of Jordan. Published by the author. Musselburgh, U.K.","id":null},{"name":"Kazakhstan","country":"Kazakhstan","tags_list":"","country_references":"Gavrilov, E. I. 2000. Guide to the birds of the Kazakhstan Republic (names, distribution, abundance).","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"Bundy, G. and Warr, E. 1980. A checklist of the birds of the Arabian Gulf States. Sandgrouse: 1: 4-49.","id":null},{"name":"Kyrgyzstan","country":"Kyrgyzstan","tags_list":"","country_references":"Ven, J. van der. 2002. Looking at birds in Kyrgyz Republic, Central Asia. Rarity. Bishkek.","id":null},{"name":"Latvia","country":"Latvia","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Celmins, A. 1992. List of Latvian bird species 1992. Eastboard Riga.","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"Ramadan-Jaradi, G. and Ramadan-Jaradi, M. 1999. An updated checklist of the birds of Lebanon. Sandgrouse: 21: 132-171.","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"Bundy, G. 1976. The birds of Libya. British Ornithologists' Union. London.","id":null},{"name":"Liechtenstein","country":"Liechtenstein","tags_list":"","country_references":"","id":null},{"name":"Lithuania","country":"Lithuania","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Zalakevicius, M. 1995. Birds of Lithuania, status, number, distribution (breeding, migration, wintering).","id":null},{"name":"Luxembourg","country":"Luxembourg","tags_list":"","country_references":"Conzemius, T. 1995. Liste der Vögels Luxembergs. Regulus: 14: 41-56.","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"","country_references":"Stepanyan, L. S., Bold, A. and Fomin, V. E. 1988. [Taxonomic list of birds of Mongolia.]. Ornitologiya: 23: 26-35.","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"Schneider-Jacoby, M. 2004. Basic ideas for the development of sustainable tourism on the Ada Island: Ulcinjska Primorje - Montenegro. Euronatur. Radolfzell, Germany. ","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"Bergier, P. and Bergier, F. 1990. A birdwatcher's guide to Morocco. Prion. Huntingdon, U.K.","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; van den Berg, A. B. 1994. Liste van Nederlandse Vogelsoorten 1994.","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Norway","country":"Norway","tags_list":"distribution uncertain","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Ree, V. and Gjershaug, J. O. 1994. Systematisk navneliste over norske fugler ajourfort pr. 1.1.1994. In J. O. Gjershaug et al. (eds.) Norsk Fugleatlas .","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Tomialojc, L. 1990. Ptaki Polski rozmieszczenie I liczebnosc. Panstwowe Wydawnictwo Naukowe. Warszawa.","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"Themido, A. A. 1952. Aves de Portugal. Memorias e Estudos do Museu Zoologico de Universidade de Coimbra: 213: 1-241.","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"Raffaele, H. A. 1989. A guide to the birds of Puerto Rico and the Virgin Islands. Revised edition. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Romania","country":"Romania","tags_list":"","country_references":"Cataneaunu, I. 1978. Aves. Fauna Respublicii Socialiste Romania. Editura Academiei RSR. Bucarest.","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Saint Pierre and Miquelon","country":"Saint Pierre and Miquelon","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"Jennings, M. C. 1981. The birds of Saudi Arabia: a check- list. Published by the author. Whittlesford, Cambridge.","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sierra Leone","country":"Sierra Leone","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"Trnka, A., Kristin, A., Danko, S., Harvancik, S., Kocian, L., Karaska, D. and Murin, B. 1995. [Checklist of the birds of Slovakia.]. Tichodroma: 8: 7-21.","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"Matvejev, S. D. and Vasic, V. F. 1973. Catalogus Faunae Jugoslaviae, IV/3, Aves. Yugoslavia.","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"Fernandez-Cruz, M. and Arauio, J (eds.) 1985. Situacion de la avifauna de la Peninsula Iberica, Baleares y Macaronesia. Sociedad Espanola de Ornitologia. Madrid.","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Sweden","country":"Sweden","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Risberg, L. 1990. Sveriges Faglar. Sveriges Ornit. For. Stockholm.","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"Winkler, R. 1999. Avifauna der Schweiz zweite, neu bearbeitete. Auflage. Orn. Beob. Beiheft 10.","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"Baumgart, W. 1995. Die Vögel Syriens. Kasparek. Heidelberg.","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"Thomsen, P. and Jacobsen, P. 1979. The birds of Tunisia. Peder Jacobsen. Copenhagen.","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"Kirwan, G., Martins, R. P., Eken, G. and Davidson, P. 1998. A checklist of the birds of Turkey. Sandgrouse Suppl.","id":null},{"name":"Ukraine","country":"Ukraine","tags_list":"","country_references":"BirdLife International. 2004. Birds in Europe: population estimates, trends and conservation status. (BirdLife Conservation Series No. 12). BirdLife International. Cambridge, U.K.; Flint, V. E., Boehme, R. L., Kostin, Y. V. and Kuznetzov, A. A. 1984. A field guide to birds of the USSR. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"Richardson, C. 2003. Emirates Bird Report.Emirates Bird Records Committee. Dubai.","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"British Ornithologists' Union. 1992. Checklist of the birds of Britain and Ireland. Sixth edition. British Ornithologist' Union. Tring.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Uzbekistan","country":"Uzbekistan","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Hydrocoloeus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Larus minutus","author_year":"Pallas 1776"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99588,"full_name":"Fregata andrewsi","author_year":"Mathews, 1914","common_names":[{"lang":"English","names":"Andrews' Frigatebird, Christmas Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate d'Andrews","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"China","country":"China","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Hong Kong, SAR","country":"Hong Kong, SAR","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"India","country":"India","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"distribution uncertain","country_references":"del Hoyo, J. and Collar N. J. 2014. HBW and BirdLife International illustrated checklist of the birds of the world. Volume 1: non-passerines. Lynx Edicions, Barcelona.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"I","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"I","party_full_name":null,"effective_at_formatted":"26/01/2018","short_note_en":null,"full_note_en":null,"auto_note":null,"is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":99589,"full_name":"Fregata ariel","author_year":"(Gray, 1845)","common_names":[{"lang":"English","names":"Lesser Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate ariel","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabihorcado chico","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"Ash, J. S. 1985. Midwinter observations from Djibouti. Scopus: 9: 43-49.","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"Andrews, I. J., Khoury, F. and Shirihai, H. 1999. Jordan Bird Report 1995-97. Sandgrouse: 21: 13058.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"extinct","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"Eriksen, J., Sargeant, D. E. and Victor, R. 2003. Oman bird list, the official list of the birds of the Sultanate of Oman. Centre for Environmental Studies and Research, Sultan Qaboos University. Oman.","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"Yoon Moo-Boo. 1993. [Wild birds of Korea.].","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"Staub, F. 1976. Birds of the Mascarenes and Saint Brandon. Organisation Normale des Enterprises Ltée, Labama House. Port Louis, Mauritius.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Eames, J. C. 1997. Some additions to the list of birds of Vietnam. Forktail: 12: 163-166.; Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Atagen ariel","author_year":"G. R. Gray, 1845"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99590,"full_name":"Fregata minor","author_year":"(Gmelin, 1789)","common_names":[{"lang":"English","names":"Great Frigatebird","convention_language":true,"id":null},{"lang":"French","names":"Frégate du Pacifique","convention_language":true,"id":null},{"lang":"Spanish","names":"Rabihorcado grande","convention_language":true,"id":null}],"distributions":[{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"Mlodinow, S. G. 2007. First records of Great Frigatebird (\u003Ci\u003EFregata minor\u003C/i\u003E), Ring-necked Duck (\u003Ci\u003EAythya collaris\u003C/i\u003E), Greater Ani (\u003Ci\u003ECrotophaga major\u003C/i\u003E), Red-eyed Vireo (\u003Ci\u003EVireo olivaceus\u003C/i\u003E), and Indigo Bunting (\u003Ci\u003EPasserina cyanea\u003C/i\u003E) for Aruba, with notes on other significant sightings Journal of Caribbean Ornithology: 19: 31.","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"Blakers, M., Davies, S. J. J. F. and Reilly, P. N. 1984. The atlas of Australian birds. Royal Australian Ornithologists' Union and Melbourne University Press. Melbourne.","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"Sick, H. 1993. Birds in Brazil. Princeton University Press. Princeton, USA.","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Christmas Island","country":"Christmas Island","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"Obando, G., Sandoval, L., Chaves, J., Villarreal, J. and Alfaro, W. 2007. Official list of the birds of Costa Rica 2006. Zeledonia: 11.; Stiles, F. G., Skutch, A. F. and Gardner, D. 1989. A guide to the birds of Costa Rica. Christopher Helm. London.","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"Ridgely, R., Greenfield, P. and Guerrero, M. 1999. An annotated list of the birds of mainland Ecuador.","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"Andrew, P. 1992. The birds of Indonesia: a checklist (Peters' sequence). Indonesian Ornithological Society. Jakarta.","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"Brazil, M. A. 1991. The birds of Japan. A. and C. Black/Christopher Helm. London.","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"Zimmerman, D. A., Turner, D. A. and Pearson, D. J. 1996. Birds of Kenya and northern Tanzania. Christopher Helm. London.","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"Morris, P. and Hawkins, A. F. 1998. Birds of Madagascar: a photographic guide. Pica Press. Sussex.","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"Ash, J. S. and Shafeeg, A. 1994. The birds of the Maldives. Forktail: 10: 3-31.","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"Howell, S. N. G. and Webb, S. 1995. A guide to the birds of Mexico and Northern Central America. Oxford University Press. Oxford.","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"Turbott, E. G. (ed.) 1990. Checklist of the birds of New Zealand and the Ross Dependency, Antarctica. 3rd edition.","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"Kennedy, R. S., Gonzales, P. C., Dickinson, E. C., Miranda, H. C. Jr and Fisher, T. H. 2000. A guide to the birds of the Philippines. Oxford University Press. Oxford.","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"Brooke, M. de L., Hepburn, I. and Trevelyan, R. J. 2004. Henderson Island, World Heritage site: management plan 2004-2009. Foreign and Commonwealth Office, Pitcairn Islands Administration and the Royal Society for the Protection of Birds. London. ; Pratt, J. D., Bruner, P. L. and Berrett, D. G. 1987. A field guide to the birds of Hawaii and the tropical Pacific. Princeton University Press. Princeton, New Jersey.","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"Hails, C. J. and Jarvis, F. 1987. Birds of Singapore. Times Editions. Singapore.","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"Bayliss-Smith, T.P. 1972. The birds of Ontong Java and Sikaiana, Solomon Islands. Bulletin of the British Ornithologists' Club: 92: 1-11.; Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"Ash, J. S. and Miskell, J. E. 1998. Birds of Somalia. Pica Press. Sussex.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"Boonsong Lekagul and Round, P. D. 1991. A guide to the birds of Thailand. Saha Karn Bhaet Co. Ltd. Bangkok.","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"American Ornithologists' Union. 1983. Checklist of North American birds. Sixth edition. American Ornithologists' Union. New York.","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"Doughty, C., Day, N. and Plant, A. 1999. Birds of the Solomons, Vanuatu \u0026 New Caledonia. Christopher Helm. London.","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"Nguyen Cu, Le Trong Trai and Phillipps, K. 2000. Chim Viet Nam. [Birds of Viet Nam]. Lotus Communications. Hanoi.","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"Thibault, J.-C. and Guyot, I. 1987. Notes on the seabirds of Wallis and Futuna Islands, southwest Pacific Ocean. Bulletin of the British Ornithologists' Club: 107: 63-68.","id":null},{"name":"Zimbabwe","country":"Zimbabwe","tags_list":"","country_references":"Hustler, K. 2001. Greater Frigatebird - new for Zimbabwe. Honeyguide: 47: 91.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Fregatidae","genus_name":"Fregata","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Pelecanus minor","author_year":"Gmelin, 1789"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99614,"full_name":"Barbastella caspica","author_year":"Satunin, 1908","common_names":[{"lang":"English","names":"Caspian Barbastelle Bat","convention_language":true,"id":null}],"distributions":[{"name":"Armenia","country":"Armenia","tags_list":"","country_references":"","id":null},{"name":"Azerbaijan","country":"Azerbaijan","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Barbastella","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99615,"full_name":"Eptesicus ognevi","author_year":"Bobrinskii, 1918","common_names":[{"lang":"English","names":"Ognev's serotine bat","convention_language":true,"id":null},{"lang":"French","names":"Sérotine de Ognev","convention_language":true,"id":null},{"lang":"German","names":"Kaukasische Breitflügelfledermaus","convention_language":false,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Mongolia","country":"Mongolia","tags_list":"distribution uncertain","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Eptesicus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99616,"full_name":"Miniopterus pallidus","author_year":"Thomas, 1907","common_names":[{"lang":"English","names":"Pale Bent-wing Bat","convention_language":true,"id":null}],"distributions":[{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Miniopterus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"16/11/2014","name":"EUROBATS"}]},{"id":99617,"full_name":"Myotis davidii","author_year":"Peters, 1869","common_names":[{"lang":"English","names":"David's mouse-eared bat","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Chiroptera","class_name":"Mammalia","family_name":"Vespertilionidae","genus_name":"Myotis","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"09/12/2018","name":"EUROBATS"}]},{"id":99619,"full_name":"Onychoprion anaethetus","author_year":"(Scopoli, 1786)","common_names":[{"lang":"English","names":"Bridled Tern","convention_language":true,"id":null}],"distributions":[{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Bahrain","country":"Bahrain","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Brunei Darussalam","country":"Brunei Darussalam","tags_list":"","country_references":"","id":null},{"name":"Cambodia","country":"Cambodia","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Eritrea","country":"Eritrea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guinea Bissau","country":"Guinea Bissau","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Iraq","country":"Iraq","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kuwait","country":"Kuwait","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Pakistan","country":"Pakistan","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Qatar","country":"Qatar","tags_list":"","country_references":"","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Singapore","country":"Singapore","tags_list":"","country_references":"","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Sudan","country":"Sudan","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Timor-Leste","country":"Timor-Leste","tags_list":"","country_references":"","id":null},{"name":"Togo","country":"Togo","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"United Arab Emirates","country":"United Arab Emirates","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Wallis and Futuna Islands","country":"Wallis and Futuna Islands","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Onychoprion","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Sterna anaethetus","author_year":"Scopoli, 1786"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99621,"full_name":"Microcarbo coronatus","author_year":"(Wahlberg, 1855)","common_names":[{"lang":"English","names":"Crowned Cormorant","convention_language":true,"id":null},{"lang":"French","names":"Cormoran couronné","convention_language":true,"id":null}],"distributions":[{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"Dowsett, R. J. and Dowsett-Lemaire, F. 1993. A contribution to the distribution and taxonomy of Afrotropical and Malagasy birds. Tauraco Research Report: 5.","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Suliformes","class_name":"Aves","family_name":"Phalacrocoracidae","genus_name":"Microcarbo","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Graculus coronatus","author_year":"Wahlberg, 1855"},{"full_name":"Phalacrocorax africanus coronatus","author_year":"(Gmelin, 1789)"},{"full_name":"Phalacrocorax coronatus","author_year":"(Wahlberg, 1855)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99623,"full_name":"Larus michahellis","author_year":"J. F. Naumann, 1840","common_names":[{"lang":"English","names":"Yellow-legged Gull","convention_language":true,"id":null},{"lang":"French","names":"Goéland leucophée","convention_language":true,"id":null}],"distributions":[{"name":"Albania","country":"Albania","tags_list":"","country_references":"","id":null},{"name":"Algeria","country":"Algeria","tags_list":"","country_references":"","id":null},{"name":"Austria","country":"Austria","tags_list":"","country_references":"","id":null},{"name":"Belarus","country":"Belarus","tags_list":"","country_references":"","id":null},{"name":"Belgium","country":"Belgium","tags_list":"","country_references":"","id":null},{"name":"Bosnia and Herzegovina","country":"Bosnia and Herzegovina","tags_list":"","country_references":"","id":null},{"name":"Bulgaria","country":"Bulgaria","tags_list":"","country_references":"","id":null},{"name":"Croatia","country":"Croatia","tags_list":"","country_references":"","id":null},{"name":"Cyprus","country":"Cyprus","tags_list":"","country_references":"","id":null},{"name":"Czech Republic","country":"Czech Republic","tags_list":"","country_references":"","id":null},{"name":"Denmark","country":"Denmark","tags_list":"","country_references":"","id":null},{"name":"Egypt","country":"Egypt","tags_list":"","country_references":"","id":null},{"name":"France","country":"France","tags_list":"","country_references":"","id":null},{"name":"Georgia","country":"Georgia","tags_list":"","country_references":"","id":null},{"name":"Germany","country":"Germany","tags_list":"","country_references":"","id":null},{"name":"Gibraltar (United Kingdom)","country":"Gibraltar (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Greece","country":"Greece","tags_list":"","country_references":"","id":null},{"name":"Hungary","country":"Hungary","tags_list":"","country_references":"","id":null},{"name":"Israel","country":"Israel","tags_list":"","country_references":"","id":null},{"name":"Italy","country":"Italy","tags_list":"","country_references":"","id":null},{"name":"Jordan","country":"Jordan","tags_list":"","country_references":"","id":null},{"name":"Lebanon","country":"Lebanon","tags_list":"","country_references":"","id":null},{"name":"Libya","country":"Libya","tags_list":"","country_references":"","id":null},{"name":"Malta","country":"Malta","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Monaco","country":"Monaco","tags_list":"","country_references":"","id":null},{"name":"Montenegro","country":"Montenegro","tags_list":"","country_references":"","id":null},{"name":"Morocco","country":"Morocco","tags_list":"","country_references":"","id":null},{"name":"Netherlands","country":"Netherlands","tags_list":"","country_references":"","id":null},{"name":"North Macedonia","country":"North Macedonia","tags_list":"","country_references":"","id":null},{"name":"Poland","country":"Poland","tags_list":"","country_references":"","id":null},{"name":"Portugal","country":"Portugal","tags_list":"","country_references":"","id":null},{"name":"Saudi Arabia","country":"Saudi Arabia","tags_list":"","country_references":"","id":null},{"name":"Serbia","country":"Serbia","tags_list":"","country_references":"","id":null},{"name":"Slovakia","country":"Slovakia","tags_list":"","country_references":"","id":null},{"name":"Slovenia","country":"Slovenia","tags_list":"","country_references":"","id":null},{"name":"Spain","country":"Spain","tags_list":"","country_references":"","id":null},{"name":"Switzerland","country":"Switzerland","tags_list":"","country_references":"","id":null},{"name":"Syrian Arab Republic","country":"Syrian Arab Republic","tags_list":"","country_references":"","id":null},{"name":"Tunisia","country":"Tunisia","tags_list":"","country_references":"","id":null},{"name":"Turkey","country":"Turkey","tags_list":"","country_references":"","id":null},{"name":"United Kingdom of Great Britain and Northern Ireland","country":"United Kingdom of Great Britain and Northern Ireland","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Larus","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99624,"full_name":"Onychoprion fuscatus","author_year":"(Linnaeus, 1766)","common_names":[{"lang":"English","names":"Sooty Tern","convention_language":true,"id":null},{"lang":"French","names":"Sterne fuligineuse","convention_language":true,"id":null}],"distributions":[{"name":"American Samoa","country":"American Samoa","tags_list":"","country_references":"","id":null},{"name":"Anguilla (United Kingdom)","country":"Anguilla (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Antigua and Barbuda","country":"Antigua and Barbuda","tags_list":"","country_references":"","id":null},{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Aruba","country":"Aruba","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Bahamas","country":"Bahamas","tags_list":"","country_references":"","id":null},{"name":"Barbados","country":"Barbados","tags_list":"","country_references":"","id":null},{"name":"Belize","country":"Belize","tags_list":"","country_references":"","id":null},{"name":"Bermuda (United Kingdom)","country":"Bermuda (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Bonaire, Saint Eustatius and Saba","country":"Bonaire, Saint Eustatius and Saba","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"British Indian Ocean Territory (United Kingdom)","country":"British Indian Ocean Territory (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"British Virgin Islands (United Kingdom)","country":"British Virgin Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Cameroon","country":"Cameroon","tags_list":"","country_references":"","id":null},{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Cayman Islands (United Kingdom)","country":"Cayman Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"China","country":"China","tags_list":"","country_references":"","id":null},{"name":"Cocos (Keeling) Islands","country":"Cocos (Keeling) Islands","tags_list":"","country_references":"","id":null},{"name":"Colombia","country":"Colombia","tags_list":"","country_references":"","id":null},{"name":"Comoros","country":"Comoros","tags_list":"","country_references":"","id":null},{"name":"Cook Islands","country":"Cook Islands","tags_list":"","country_references":"","id":null},{"name":"Costa Rica","country":"Costa Rica","tags_list":"","country_references":"","id":null},{"name":"Cuba","country":"Cuba","tags_list":"","country_references":"","id":null},{"name":"Curaçao","country":"Curaçao","tags_list":"","country_references":"","id":null},{"name":"Djibouti","country":"Djibouti","tags_list":"","country_references":"","id":null},{"name":"Dominica","country":"Dominica","tags_list":"","country_references":"","id":null},{"name":"Dominican Republic","country":"Dominican Republic","tags_list":"","country_references":"","id":null},{"name":"Ecuador","country":"Ecuador","tags_list":"","country_references":"","id":null},{"name":"El Salvador","country":"El Salvador","tags_list":"","country_references":"","id":null},{"name":"Equatorial Guinea","country":"Equatorial Guinea","tags_list":"","country_references":"","id":null},{"name":"Fiji","country":"Fiji","tags_list":"","country_references":"","id":null},{"name":"French Guiana [FR]","country":"French Guiana [FR]","tags_list":"","country_references":"","id":null},{"name":"French Polynesia","country":"French Polynesia","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Grenada","country":"Grenada","tags_list":"","country_references":"","id":null},{"name":"Guadeloupe","country":"Guadeloupe","tags_list":"","country_references":"","id":null},{"name":"Guam","country":"Guam","tags_list":"","country_references":"","id":null},{"name":"Guatemala","country":"Guatemala","tags_list":"","country_references":"","id":null},{"name":"Guyana","country":"Guyana","tags_list":"","country_references":"","id":null},{"name":"Haiti","country":"Haiti","tags_list":"","country_references":"","id":null},{"name":"Honduras","country":"Honduras","tags_list":"","country_references":"","id":null},{"name":"India","country":"India","tags_list":"","country_references":"","id":null},{"name":"Indonesia","country":"Indonesia","tags_list":"","country_references":"","id":null},{"name":"Iran (Islamic Republic of)","country":"Iran (Islamic Republic of)","tags_list":"","country_references":"","id":null},{"name":"Jamaica","country":"Jamaica","tags_list":"","country_references":"","id":null},{"name":"Japan","country":"Japan","tags_list":"","country_references":"","id":null},{"name":"Kenya","country":"Kenya","tags_list":"","country_references":"","id":null},{"name":"Kiribati","country":"Kiribati","tags_list":"","country_references":"","id":null},{"name":"Liberia","country":"Liberia","tags_list":"","country_references":"","id":null},{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null},{"name":"Malaysia","country":"Malaysia","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Marshall Islands","country":"Marshall Islands","tags_list":"","country_references":"","id":null},{"name":"Martinique","country":"Martinique","tags_list":"","country_references":"","id":null},{"name":"Mauritania","country":"Mauritania","tags_list":"","country_references":"","id":null},{"name":"Mauritius","country":"Mauritius","tags_list":"","country_references":"","id":null},{"name":"Mayotte","country":"Mayotte","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Micronesia (Federated States of)","country":"Micronesia (Federated States of)","tags_list":"","country_references":"","id":null},{"name":"Montserrat (United Kingdom)","country":"Montserrat (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Mozambique","country":"Mozambique","tags_list":"","country_references":"","id":null},{"name":"Myanmar","country":"Myanmar","tags_list":"","country_references":"","id":null},{"name":"Nauru","country":"Nauru","tags_list":"","country_references":"","id":null},{"name":"New Caledonia","country":"New Caledonia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Nicaragua","country":"Nicaragua","tags_list":"","country_references":"","id":null},{"name":"Nigeria","country":"Nigeria","tags_list":"","country_references":"","id":null},{"name":"Norfolk Island","country":"Norfolk Island","tags_list":"","country_references":"","id":null},{"name":"Northern Mariana Islands","country":"Northern Mariana Islands","tags_list":"","country_references":"","id":null},{"name":"Oman","country":"Oman","tags_list":"","country_references":"","id":null},{"name":"Palau","country":"Palau","tags_list":"","country_references":"","id":null},{"name":"Panama","country":"Panama","tags_list":"","country_references":"","id":null},{"name":"Papua New Guinea","country":"Papua New Guinea","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"Philippines","country":"Philippines","tags_list":"","country_references":"","id":null},{"name":"Pitcairn Islands (United Kingdom)","country":"Pitcairn Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Puerto Rico","country":"Puerto Rico","tags_list":"","country_references":"","id":null},{"name":"Republic of Korea","country":"Republic of Korea","tags_list":"","country_references":"","id":null},{"name":"Réunion","country":"Réunion","tags_list":"","country_references":"","id":null},{"name":"Saint-Barthélemy","country":"Saint-Barthélemy","tags_list":"","country_references":"","id":null},{"name":"Saint Helena and Dependencies (United Kingdom)","country":"Saint Helena and Dependencies (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Saint Kitts and Nevis","country":"Saint Kitts and Nevis","tags_list":"","country_references":"","id":null},{"name":"Saint Lucia","country":"Saint Lucia","tags_list":"","country_references":"","id":null},{"name":"Saint-Martin","country":"Saint-Martin","tags_list":"","country_references":"","id":null},{"name":"Saint Vincent and the Grenadines","country":"Saint Vincent and the Grenadines","tags_list":"","country_references":"","id":null},{"name":"Samoa","country":"Samoa","tags_list":"","country_references":"","id":null},{"name":"Sao Tome and Principe","country":"Sao Tome and Principe","tags_list":"","country_references":"","id":null},{"name":"Senegal","country":"Senegal","tags_list":"","country_references":"","id":null},{"name":"Seychelles","country":"Seychelles","tags_list":"","country_references":"","id":null},{"name":"Sint Maarten","country":"Sint Maarten","tags_list":"","country_references":"","id":null},{"name":"Solomon Islands","country":"Solomon Islands","tags_list":"","country_references":"","id":null},{"name":"Somalia","country":"Somalia","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"Sri Lanka","country":"Sri Lanka","tags_list":"","country_references":"","id":null},{"name":"Suriname","country":"Suriname","tags_list":"","country_references":"","id":null},{"name":"Taiwan, Province of China","country":"Taiwan, Province of China","tags_list":"","country_references":"","id":null},{"name":"Thailand","country":"Thailand","tags_list":"","country_references":"","id":null},{"name":"Tokelau","country":"Tokelau","tags_list":"","country_references":"","id":null},{"name":"Tonga","country":"Tonga","tags_list":"","country_references":"","id":null},{"name":"Trinidad and Tobago","country":"Trinidad and Tobago","tags_list":"","country_references":"","id":null},{"name":"Turks and Caicos Islands (United Kingdom)","country":"Turks and Caicos Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Tuvalu","country":"Tuvalu","tags_list":"","country_references":"","id":null},{"name":"United Republic of Tanzania","country":"United Republic of Tanzania","tags_list":"","country_references":"","id":null},{"name":"United States Minor Outlying Islands","country":"United States Minor Outlying Islands","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null},{"name":"Vanuatu","country":"Vanuatu","tags_list":"","country_references":"","id":null},{"name":"Venezuela (Bolivarian Republic of)","country":"Venezuela (Bolivarian Republic of)","tags_list":"","country_references":"","id":null},{"name":"Viet Nam","country":"Viet Nam","tags_list":"","country_references":"","id":null},{"name":"Virgin Islands of the USA","country":"Virgin Islands of the USA","tags_list":"","country_references":"","id":null},{"name":"Yemen","country":"Yemen","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Onychoprion","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Sterna fuscata","author_year":"Linnaeus, 1766"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":99626,"full_name":"Chlidonias hybrida","author_year":"(Pallas, 1811)","common_names":[{"lang":"English","names":"Whiskered Tern","convention_language":true,"id":null},{"lang":"French","names":"Guifette moustac","convention_language":true,"id":null}],"distributions":[],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Laridae","genus_name":"Chlidonias","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[{"full_name":"Chlidonias hybridus","author_year":"(Pallas, 1811)"}],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/11/1999","name":"AEWA"}]},{"id":100051,"full_name":"Locustella kashmirensis","author_year":"(Sushkin, 1925)","common_names":[{"lang":"English","names":"Himalayan Grasshopper-warbler","convention_language":true,"id":null}],"distributions":[{"name":"India","country":"India","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Locustellidae","genus_name":"Locustella","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Locustellidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100052,"full_name":"Phylloscopus emeiensis","author_year":"Alström \u0026 Olsson, 1995","common_names":[{"lang":"English","names":"Emei Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100053,"full_name":"Phylloscopus goodsoni","author_year":"E. Hartert, 1910","common_names":[{"lang":"English","names":"Hartert's Leaf-warbler","convention_language":true,"id":null}],"distributions":[{"name":"China","country":"China","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Phylloscopidae","genus_name":"Phylloscopus","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"(Formerly included in Muscicapidae)","auto_note":"FAMILY ADDITION Phylloscopidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100054,"full_name":"Motacilla flaviventris","author_year":"Hartlaub, 1860","common_names":[{"lang":"English","names":"Madagascar Wagtail","convention_language":true,"id":null}],"distributions":[{"name":"Madagascar","country":"Madagascar","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Passeriformes","class_name":"Aves","family_name":"Motacillidae","genus_name":"Motacilla","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":"Formerly included in Muscicapidae","auto_note":"FAMILY ADDITION Motacillidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100055,"full_name":"Charadrius bicinctus","author_year":"Jardine \u0026 Selby, 1827","common_names":[{"lang":"English","names":"Double-banded Plover","convention_language":true,"id":null}],"distributions":[{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Charadriiformes","class_name":"Aves","family_name":"Charadriidae","genus_name":"Charadrius","name_status":"A","nomenclature_note_en":"","cms_listing":"II","synonyms":[],"cms_listings":[{"is_current":true,"species_listing_name":"II","party_full_name":null,"effective_at_formatted":"01/01/1994","short_note_en":null,"full_note_en":null,"auto_note":"FAMILY ADDITION Charadriidae spp.","is_inclusion":null,"inherited_full_note_en":null,"inherited_short_note_en":null}],"cms_instruments":[]},{"id":100207,"full_name":"Eschrichtius robustus","author_year":"(Lilljeborg 1861)","common_names":[{"lang":"English","names":"Grey whale","convention_language":true,"id":null}],"distributions":[{"name":"Canada","country":"Canada","tags_list":"","country_references":"","id":null},{"name":"Mexico","country":"Mexico","tags_list":"","country_references":"","id":null},{"name":"Russian Federation","country":"Russian Federation","tags_list":"","country_references":"","id":null},{"name":"United States of America","country":"United States of America","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Eschrichtiidae","genus_name":"Eschrichtius","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"01/06/2001","name":"ACCOBAMS"}]},{"id":100210,"full_name":"Mesoplodon grayi","author_year":"von Haast, 1876","common_names":[{"lang":"English","names":"Grey’s Beaked Whale","convention_language":true,"id":null}],"distributions":[{"name":"Argentina","country":"Argentina","tags_list":"","country_references":"","id":null},{"name":"Australia","country":"Australia","tags_list":"","country_references":"","id":null},{"name":"Brazil","country":"Brazil","tags_list":"","country_references":"","id":null},{"name":"Chile","country":"Chile","tags_list":"","country_references":"","id":null},{"name":"Falkland Islands (Malvinas)","country":"Falkland Islands (Malvinas)","tags_list":"","country_references":"","id":null},{"name":"French Southern and Antarctic Territories","country":"French Southern and Antarctic Territories","tags_list":"","country_references":"","id":null},{"name":"Heard and McDonald Islands","country":"Heard and McDonald Islands","tags_list":"","country_references":"","id":null},{"name":"Maldives","country":"Maldives","tags_list":"","country_references":"","id":null},{"name":"Namibia","country":"Namibia","tags_list":"","country_references":"","id":null},{"name":"New Zealand","country":"New Zealand","tags_list":"","country_references":"","id":null},{"name":"Peru","country":"Peru","tags_list":"","country_references":"","id":null},{"name":"South Africa","country":"South Africa","tags_list":"","country_references":"","id":null},{"name":"South Georgia and South Sandwich Islands (United Kingdom)","country":"South Georgia and South Sandwich Islands (United Kingdom)","tags_list":"","country_references":"","id":null},{"name":"Uruguay","country":"Uruguay","tags_list":"","country_references":"","id":null}],"taxonomy":"cms","phylum_name":"Chordata","order_name":"Cetacea","class_name":"Mammalia","family_name":"Ziphiidae","genus_name":"Mesoplodon","name_status":"A","nomenclature_note_en":"","cms_listing":"NC","synonyms":[],"cms_listings":[],"cms_instruments":[{"effective_from_formatted":"29/03/1994","name":"ASCOBANS"}]}]} \ No newline at end of file From ef2ca123e25a1e2807decde33073a99f1b11e057 Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:41:54 +0100 Subject: [PATCH 024/109] chore: remove comments --- lib/modules/api_clients/rst_api.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/modules/api_clients/rst_api.rb b/lib/modules/api_clients/rst_api.rb index ad46666d0..c047702a5 100644 --- a/lib/modules/api_clients/rst_api.rb +++ b/lib/modules/api_clients/rst_api.rb @@ -11,9 +11,7 @@ class << self def get_cases(page = 1, per_page = 25) RETRIES.times do |i| res = HTTParty.post("#{BASE_URI}/#{PUBLIC_CASES_ENDPOINT}?page=#{page}&limit=#{per_page}&sortBy=id&sortOrder=ASC&relationalData=yes", {}) - break res if res.created? - # data['items'] => cases - # data['links']['next'] -> next page + break res if res.created? # a POST returns 201 CREATED as successful status end end @@ -22,7 +20,6 @@ def get_country(country_id) RETRIES.times do |i| res = HTTParty.get("#{BASE_URI}/#{COUNTRY_ENDPOINT}?countryId=#{country_id}") break res if res.ok? - # country_name -> data['nicname'] end end end From 50b6d5cc648e11ec55a82a52fcacc8274cf9188c Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:47:25 +0100 Subject: [PATCH 025/109] refactor: move rst cases into rst folder --- lib/modules/import/rst/rst_cases.rb | 10 ++++++++ lib/modules/import/rst_cases.rb | 40 ----------------------------- 2 files changed, 10 insertions(+), 40 deletions(-) create mode 100644 lib/modules/import/rst/rst_cases.rb delete mode 100644 lib/modules/import/rst_cases.rb diff --git a/lib/modules/import/rst/rst_cases.rb b/lib/modules/import/rst/rst_cases.rb new file mode 100644 index 000000000..0e1ca84fa --- /dev/null +++ b/lib/modules/import/rst/rst_cases.rb @@ -0,0 +1,10 @@ +module Import::Rst::RstCases + class << self + def import_process + rst_cases = Import::Rst::Fetcher.get_all_cases + formatted_data = Import::Rst::Formatter.format_data(rst_cases) + rst_country_data = Import::Rst::CountryDataHandler.merge_country_data(formatted_data) + Import::Rst::Importer.import(rst_country_data) + end + end +end diff --git a/lib/modules/import/rst_cases.rb b/lib/modules/import/rst_cases.rb deleted file mode 100644 index dfe0b4353..000000000 --- a/lib/modules/import/rst_cases.rb +++ /dev/null @@ -1,40 +0,0 @@ -module Import::RstCases - class << self - def import_cases - # RstCase.create_all(list of items) - end - - def get_all_cases - responses = [] - page = 1 - - loop do - # Iterate through paginated API and store responses - res = ApiClients::RstApi.get_cases(page) - responses << res - - break if res['data']['links']['next'].blank? - page += 1 - end - - # Merge responses - responses.flat_map {|r| r['data']['items'] } - format_data(responses) - merge_country_data(responses) - end - - private - - def format_data(data) - data.map do |item| - item.slice(:id, :countryId, :status, :startDate, :species, ) - end - end - - def merge_country_data(data) - data.map do |item| - country = ApiClients::RstApi.get_country(item['country_id']) - data.merge(country_name: country['data']['nicname']) - end - end -end From 12a9c4a969bc60e486fcb3c340790359841c7628 Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:48:50 +0100 Subject: [PATCH 026/109] feat: add module to fetch all the paginated rst cases from the api --- lib/modules/import/rst/fetcher.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 lib/modules/import/rst/fetcher.rb diff --git a/lib/modules/import/rst/fetcher.rb b/lib/modules/import/rst/fetcher.rb new file mode 100644 index 000000000..ccf4536f7 --- /dev/null +++ b/lib/modules/import/rst/fetcher.rb @@ -0,0 +1,20 @@ +module Import::Rst::Fetcher + class << self + def get_all_cases + responses = [] + page = 1 + + loop do + # Iterate through paginated API and store responses + res = ApiClients::RstApi.get_cases(page) + responses << res + + break if res['data']['links']['next'].blank? + page += 1 + end + + Rails.logger.info "Retrieved #{responses.count} RST cases" + responses.flat_map {|r| r['data']['items'] } + end + end +end From 11ef46696b9e38413b3c77d293c6e97597dffe06 Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:49:54 +0100 Subject: [PATCH 027/109] feat: add module to select only specific attributes from api results --- lib/modules/import/rst/formatter.rb | 34 +++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/modules/import/rst/formatter.rb diff --git a/lib/modules/import/rst/formatter.rb b/lib/modules/import/rst/formatter.rb new file mode 100644 index 000000000..64b570d0a --- /dev/null +++ b/lib/modules/import/rst/formatter.rb @@ -0,0 +1,34 @@ +module Import::Rst::Formatter + class << self + def format_data(data) + data.map do |item| + item.deep_slice('id', 'countryId', 'status', 'startDate' ,'species' => 'name', 'meeting' => 'name') + end + end + + private + + def deep_slice(*allowed_keys) + sliced = {} + allowed_keys.each do |allowed_key| + if allowed_key.is_a?(Hash) + allowed_key.each do |allowed_subkey, allowed_subkey_values| + if has_key?(allowed_subkey) + value = self[allowed_subkey] + if value.is_a?(Hash) + sliced[allowed_subkey] = value.deep_slice(*Array.wrap(allowed_subkey_values)) + else + raise ArgumentError, "can only deep-slice hash values, but value for #{allowed_subkey.inspect} was of type #{value.class.name}" + end + end + end + else + if has_key?(allowed_key) + sliced[allowed_key] = self[allowed_key] + end + end + end + sliced + end + end +end From bc2cbd1720bb04ccbd4c4516c9c9b2fd6d5fddcb Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:50:51 +0100 Subject: [PATCH 028/109] feat: add module to fetch and merge rst country data with cases --- lib/modules/import/rst/country_data_handler.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/modules/import/rst/country_data_handler.rb diff --git a/lib/modules/import/rst/country_data_handler.rb b/lib/modules/import/rst/country_data_handler.rb new file mode 100644 index 000000000..7ad51861f --- /dev/null +++ b/lib/modules/import/rst/country_data_handler.rb @@ -0,0 +1,11 @@ +# this will only be needed if the API cannot be tweaked to include the country within the case endpoint +module Import::Rst::CountryDataHandler + class << self + def merge_country_data(data) + data.map do |item| + country = ApiClients::RstApi.get_country(item['countryId']) + item.merge(country_iso2: country['data']['iso']) + end + end + end +end From ddf288dc99b7e62da9fd407408b9fb715dacfccb Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 5 Oct 2022 23:51:43 +0100 Subject: [PATCH 029/109] feat: add module to import rst cases records within the DB --- lib/modules/import/rst/importer.rb | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 lib/modules/import/rst/importer.rb diff --git a/lib/modules/import/rst/importer.rb b/lib/modules/import/rst/importer.rb new file mode 100644 index 000000000..1a59dd471 --- /dev/null +++ b/lib/modules/import/rst/importer.rb @@ -0,0 +1,47 @@ +module Import::Rst::Importer + class << self + + def import(data) + data.map do |item| + taxon_concept = map_taxon_concept(item) + geo_entity = map_geo_entity(item) + event = map_event(item) + + rst_process = CitesRstProcess.find_or_initialize_by(case_id: item['id']) + Rails.logger.info "Importing RST case #{item['id']}..." + rst_process.update!( + taxon_concept: taxon_concept, + geo_entity: geo_entity, + event: event, + status: item['status'], + start_date: item['startDate'], + resolution: 'Significant Trade' + ) + end + + private + + def map_taxon_concept(item) + taxon_concept = MTaxonConcept.find_by(taxonomy_id: 1, full_name: item['species']['name']) + unless taxon_concept + Rails.logger.info "Species #{item['species']['name']} for case #{item['id']} not found, skipping... " + next + end + end + + def map_geo_entity(item) + geo_entity = GeoEntity.find_by(iso_2: item['country_iso2']) + unless geo_entity + Rails.logger.info "Country #{item['country_iso2']} for case #{item['id']} not found, skipping... " + next + end + end + + def map_event(item) + event = Event.where("type IN (:event_type) AND name :event_name", + event_type: ['CitesAc', 'CitesPc'], event_name: item['meeting']['name']) + Rails.logger.info "Event #{item['meeting']['name']} for case #{item['id']} not found" unless event + end + end + end +end From 1b1445b8c515b4186003f165d7c841bbc84994eb Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 00:08:37 +0100 Subject: [PATCH 030/109] chore: change name to final rst import method --- lib/modules/import/rst/rst_cases.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/import/rst/rst_cases.rb b/lib/modules/import/rst/rst_cases.rb index 0e1ca84fa..93305b03c 100644 --- a/lib/modules/import/rst/rst_cases.rb +++ b/lib/modules/import/rst/rst_cases.rb @@ -1,6 +1,6 @@ module Import::Rst::RstCases class << self - def import_process + def import_all rst_cases = Import::Rst::Fetcher.get_all_cases formatted_data = Import::Rst::Formatter.format_data(rst_cases) rst_country_data = Import::Rst::CountryDataHandler.merge_country_data(formatted_data) From 0fd5a68ecc79b3add0c67d1b83b55d2ad5344c8b Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 00:09:15 +0100 Subject: [PATCH 031/109] feat: add scheduled task to update the rst cases every week --- config/schedule.rb | 4 ++++ lib/tasks/import_rst_processes.rake | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 lib/tasks/import_rst_processes.rake diff --git a/config/schedule.rb b/config/schedule.rb index a2e18b4eb..e88de4acc 100644 --- a/config/schedule.rb +++ b/config/schedule.rb @@ -21,3 +21,7 @@ every 1.day, :at => '5:30 am' do rake "-s sitemap:refresh" end + +every :sunday, :at => '1:30am' do + rake "rst_processes:import" +end diff --git a/lib/tasks/import_rst_processes.rake b/lib/tasks/import_rst_processes.rake new file mode 100644 index 000000000..cb6deca8d --- /dev/null +++ b/lib/tasks/import_rst_processes.rake @@ -0,0 +1,6 @@ +namespace :rst_processes do + desc "Import RST(Significant Trade) cases from RST API" + task :import => :environment do + Import::Rst::RstCases.import_all + end +end From 64329809dc1dc9b1fc0de1439b8ed4b8da401a12 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 12:07:10 +0100 Subject: [PATCH 032/109] feature: Add cites process download for admin users --- app/controllers/admin/exports_controller.rb | 2 ++ app/models/species/cites_processes_export.rb | 36 ++++++++++++++++++++ app/views/admin/exports/index.html.erb | 8 +++++ 3 files changed, 46 insertions(+) create mode 100644 app/models/species/cites_processes_export.rb diff --git a/app/controllers/admin/exports_controller.rb b/app/controllers/admin/exports_controller.rb index 877d58ccc..d0fa7f2ba 100644 --- a/app/controllers/admin/exports_controller.rb +++ b/app/controllers/admin/exports_controller.rb @@ -35,6 +35,8 @@ def download result = Species::IucnMappingsExport.new.export when 'CmsMappings' result = Species::CmsMappingsExport.new.export + when 'CitesProcesses' + result = Species::CitesProcessesExport.new.export end if result.is_a?(Array) # this was added in order to prevent download managers from diff --git a/app/models/species/cites_processes_export.rb b/app/models/species/cites_processes_export.rb new file mode 100644 index 000000000..85575488d --- /dev/null +++ b/app/models/species/cites_processes_export.rb @@ -0,0 +1,36 @@ +class Species::CitesProcessesExport < Species::CsvCopyExport + + def query + rel = CitesCaptivityProcess.joins("LEFT JOIN taxon_concepts ON + taxon_concept_id = taxon_concepts.id LEFT JOIN geo_entities ON + geo_entity_id = geo_entities.id LEFT JOIN events ON + start_event_id = events.id").order('taxon_concepts.id','cites_captivity_processes.id') + rel.select(sql_columns) + end + + private + + def resource_name + 'cites_processes' + end + + def table_name + 'cites_captivity_processes' + end + + def sql_columns + columns = [ + :'cites_captivity_processes.id', :taxon_concept_id, :'taxon_concepts.full_name', + :resolution, :'geo_entities.name_en', :'events.name', "to_char(start_date, 'DD/MM/YYYY')", + :status, :'cites_captivity_processes.notes' + ] + end + + def csv_column_headers + headers = [ + 'Id', 'TaxonConcept id', 'TaxonConcept name', 'Resolution', 'Country', 'Event', + 'Event date', 'Status', 'Notes' + ] + end + +end diff --git a/app/views/admin/exports/index.html.erb b/app/views/admin/exports/index.html.erb index faa959ab8..3c4fa024a 100644 --- a/app/views/admin/exports/index.html.erb +++ b/app/views/admin/exports/index.html.erb @@ -133,6 +133,14 @@ + + Captivity Processes + + <%= link_to 'Download', admin_exports_download_path(:data_type => "CitesProcesses", + :filters => {}) %> + + + From 9a84ad06e21031f62ace2b5dc725e61becdabf38 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 12:11:41 +0100 Subject: [PATCH 033/109] fix: add directory to keep csv downloads --- public/downloads/cites_processes/.keep | 0 .../97d170e1550eee4afc0af065b78cda302a97674cen.csv | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 public/downloads/cites_processes/.keep create mode 100644 public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv diff --git a/public/downloads/cites_processes/.keep b/public/downloads/cites_processes/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv b/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv new file mode 100644 index 000000000..ef0d0ec3e --- /dev/null +++ b/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv @@ -0,0 +1,10 @@ +Id,TaxonConcept id,TaxonConcept name,Resolution,Country,Event,Event date,Status,Notes +1,4442,Canis lupus,Res. Conf. 17.7 (Rev. CoP18),1- Africa,PC25,01/10/2022,Ongoing,tet +3,4442,Canis lupus,Captive Breeding,2- Asia,AC31,30/09/2022,Ongoing,test tes test +5,4442,Canis lupus,Captive Breeding,2- Asia,AC31,05/09/2022,Trade Suspension,"" +6,4442,Canis lupus,Captive Breeding,2- Asia,PC24,05/09/2022,Trade Suspension,tets +7,4442,Canis lupus,Captive Breeding,6- Oceania,PC24,04/09/2022,Trade Suspension,test +8,4442,Canis lupus,Captive Breeding,6- Oceania,AC31,30/09/2022,Closed,test +9,4442,Canis lupus,Captive Breeding,1- Africa,PC25,30/09/2022,Ongoing,test test test +11,9042,Xenoglaux loweryi,Captive Breeding,Gabon,AC24,31/10/2022,Trade Suspension,"" +10,13042,Prasophyllum,Captive Breeding,Algeria,PC25,17/10/2022,Ongoing,Notes is the notes From f6f8a03d332300b4f01b8d65569693caf08dd786 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 12:12:28 +0100 Subject: [PATCH 034/109] fix: remove unused csv file --- .../97d170e1550eee4afc0af065b78cda302a97674cen.csv | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv diff --git a/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv b/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv deleted file mode 100644 index ef0d0ec3e..000000000 --- a/public/downloads/cites_processes/97d170e1550eee4afc0af065b78cda302a97674cen.csv +++ /dev/null @@ -1,10 +0,0 @@ -Id,TaxonConcept id,TaxonConcept name,Resolution,Country,Event,Event date,Status,Notes -1,4442,Canis lupus,Res. Conf. 17.7 (Rev. CoP18),1- Africa,PC25,01/10/2022,Ongoing,tet -3,4442,Canis lupus,Captive Breeding,2- Asia,AC31,30/09/2022,Ongoing,test tes test -5,4442,Canis lupus,Captive Breeding,2- Asia,AC31,05/09/2022,Trade Suspension,"" -6,4442,Canis lupus,Captive Breeding,2- Asia,PC24,05/09/2022,Trade Suspension,tets -7,4442,Canis lupus,Captive Breeding,6- Oceania,PC24,04/09/2022,Trade Suspension,test -8,4442,Canis lupus,Captive Breeding,6- Oceania,AC31,30/09/2022,Closed,test -9,4442,Canis lupus,Captive Breeding,1- Africa,PC25,30/09/2022,Ongoing,test test test -11,9042,Xenoglaux loweryi,Captive Breeding,Gabon,AC24,31/10/2022,Trade Suspension,"" -10,13042,Prasophyllum,Captive Breeding,Algeria,PC25,17/10/2022,Ongoing,Notes is the notes From c7cd2b9b659e321df86e692c4ff60b4a93a49ea9 Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 13:22:41 +0100 Subject: [PATCH 035/109] fix: adjust cites process public table column width --- .../taxon_concept/_cites_processes.handlebars | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 773b4e33a..d78927b94 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -10,11 +10,11 @@ RESOLUTION - COUNTRY + COUNTRY DATE ENTRY - DOCUMENT - CASE STATUS - NOTES + DOCUMENT + CASE STATUS + NOTES @@ -51,11 +51,11 @@   +     +   +     -   -   -   From 4d4cf784f7b34cd69434cf731caa53be9cee5087 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 14:09:45 +0100 Subject: [PATCH 036/109] fix: show on trade suspension also to current list --- .../species/controllers/taxon_concept_controller.js.coffee | 2 +- app/serializers/species/show_taxon_concept_serializer_cites.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee index ac651a2f7..db873a394 100644 --- a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee +++ b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee @@ -144,7 +144,7 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon ).property('citesSuspensions') currentCitesProcesses: (-> if @get('citesProcesses') != undefined - @get('citesProcesses').filterProperty('status', 'Ongoing') + @get('citesProcesses').filterProperty('status', 'Ongoing').concat(@get('citesProcesses').filterProperty('status', 'Trade Suspension')) else null ).property('citesProcesses') diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 295288ae1..99be3d2c9 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -11,7 +11,7 @@ class Species::ShowTaxonConceptSerializerCites < Species::ShowTaxonConceptSerial has_many :processes, :serializer => Species::CitesProcessSerializer, :key => :cites_processes def processes - CitesCaptivityProcess.includes(:geo_entity,:start_event).where(taxon_concept_id: object.id) + CitesCaptivityProcess.includes(:geo_entity,:start_event).where(taxon_concept_id: object.id).order(:start_date) end def quotas From 274ba275bc1ead74fb77538bc439b7cbcb8e9597 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 15:07:26 +0100 Subject: [PATCH 037/109] fix: indendation --- app/controllers/api/v1/taxon_concepts_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index ded18957e..d92f80fb9 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -24,7 +24,7 @@ def show :distributions => :geo_entity, :quotas => :geo_entity, :cites_suspensions => :geo_entity, - :cites_captivity_processes => :geo_entity). + :cites_captivity_processes => :geo_entity). includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS s = Species::ShowTaxonConceptSerializerCms From f7e7fdbb532dcd607f1ef5cf9b996b1c9c8e3543 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 6 Oct 2022 15:11:40 +0100 Subject: [PATCH 038/109] fix: public interface headings, message --- .../taxon_concept/_cites_processes.handlebars | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index d78927b94..1cdca09b5 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -3,17 +3,17 @@ {{#if citesProcessesIsLoading}} {{ partial 'species/spinner'}} {{else}} -

    There are no current cases for this species.

    +

    This species is not currently included in the CITES Reviews of Significant Trade or Captive Breeding

    {{/if}} {{else}} - + - - + + @@ -40,7 +40,7 @@ {{else}} - + {{/each}} From 35a0a1a8c59949d82137365c6b44711d19499383 Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:20:37 +0100 Subject: [PATCH 039/109] chore: remove unused resolution instance variable --- app/controllers/admin/cites_captivity_processes_controller.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/controllers/admin/cites_captivity_processes_controller.rb b/app/controllers/admin/cites_captivity_processes_controller.rb index 9acc46e47..cd4eb4823 100644 --- a/app/controllers/admin/cites_captivity_processes_controller.rb +++ b/app/controllers/admin/cites_captivity_processes_controller.rb @@ -36,7 +36,6 @@ def create def load_lib_objects @geo_entities = GeoEntity.order(:name_en).joins(:geo_entity_type). where(:geo_entity_types => { :name => GeoEntityType::SETS[GeoEntityType::DEFAULT_SET] }) - @resolution = CitesCaptivityProcess::RESOLUTION @status = CitesCaptivityProcess::STATUS @events = Event.where("type IN ('CitesAc','CitesPc')" ).order("effective_at DESC") From 02bf25b51145b269b487213107c1446ffd2a6a84 Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:22:40 +0100 Subject: [PATCH 040/109] refactor: rename captivity process migration to process migration to implement STI for rst and captivity processes --- ...ses.rb => 20220922143605_create_cites_processes.rb} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) rename db/migrate/{20220922143605_create_cites_captivity_processes.rb => 20220922143605_create_cites_processes.rb} (60%) diff --git a/db/migrate/20220922143605_create_cites_captivity_processes.rb b/db/migrate/20220922143605_create_cites_processes.rb similarity index 60% rename from db/migrate/20220922143605_create_cites_captivity_processes.rb rename to db/migrate/20220922143605_create_cites_processes.rb index 744d4d240..5a639ebe3 100644 --- a/db/migrate/20220922143605_create_cites_captivity_processes.rb +++ b/db/migrate/20220922143605_create_cites_processes.rb @@ -1,15 +1,17 @@ -class CreateCitesCaptivityProcesses < ActiveRecord::Migration +class CreateCitesProcesses < ActiveRecord::Migration def change - create_table :cites_captivity_processes do |t| + create_table :cites_processes do |t| t.string :resolution t.references :taxon_concept, index: true t.references :geo_entity t.references :start_event t.datetime :start_date t.string :status # change to Enum type after migrating to rails 4.1 - t.integer :created_by_id - t.integer :updated_by_id + t.string :type + t.integer :created_by_id + t.integer :updated_by_id t.text :notes + t.integer :case_id t.timestamps end From c84a34cb4e5f335d1089fa1816dcda6d2640f89b Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:23:47 +0100 Subject: [PATCH 041/109] feat: add cites process model and its children rst and captivity --- app/models/cites_captivity_process.rb | 41 ++------------------------- app/models/cites_process.rb | 40 ++++++++++++++++++++++++++ app/models/cites_rst_process.rb | 16 +++++++++++ 3 files changed, 59 insertions(+), 38 deletions(-) create mode 100644 app/models/cites_process.rb create mode 100644 app/models/cites_rst_process.rb diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index ac08d5c41..a44573c16 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -1,49 +1,14 @@ -class CitesCaptivityProcess < ActiveRecord::Base - track_who_does_it - attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id - belongs_to :taxon_concept - belongs_to :geo_entity - belongs_to :start_event, :class_name => 'Event' - belongs_to :m_taxon_concept, :foreign_key => :taxon_concept_id - - validates :taxon_concept, presence: true - validates :geo_entity, presence: true - validates :resolution, presence: true - validates :start_date, presence: true +class CitesCaptivityProcess < CitesProcess STATUS = ['Ongoing', 'Trade Suspension', 'Closed'] - RESOLUTION = ['Res. Conf. 17.7 (Rev. CoP18)'] - + # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: STATUS} - validate :start_event_value, if: :is_start_event_present? before_validation :set_resolution_value - def is_current? - status == 'Ongoing' - end - - def year - start_date ? start_date.strftime('%Y') : '' - end - - def start_date_formatted - start_date ? start_date.strftime('%d/%m/%Y') : '' - end - private def set_resolution_value - self.resolution = "Captive Breeding" - end - - def start_event_value - unless ['CitesAc','CitesPc'].include? self.start_event.type - errors.add(:start_event, "is not valid") - end - end - - def is_start_event_present? - start_event.present? + self.resolution = 'Captive Breeding' end end diff --git a/app/models/cites_process.rb b/app/models/cites_process.rb new file mode 100644 index 000000000..7c6b75248 --- /dev/null +++ b/app/models/cites_process.rb @@ -0,0 +1,40 @@ +class CitesProcess < ActiveRecord::Base + track_who_does_it + attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id + belongs_to :taxon_concept + belongs_to :geo_entity + belongs_to :start_event, :class_name => 'Event' + belongs_to :m_taxon_concept, :foreign_key => :taxon_concept_id + + validates :taxon_concept, presence: true + validates :geo_entity, presence: true + validates :resolution, presence: true + validates :start_date, presence: true + + validate :start_event_value, if: :is_start_event_present? + before_validation :set_resolution_value + + def is_current? + !['Closed'].include? status + end + + def year + start_date ? start_date.strftime('%Y') : '' + end + + def start_date_formatted + start_date ? start_date.strftime('%d/%m/%Y') : '' + end + + private + + def start_event_value + unless ['CitesAc','CitesPc'].include? self.start_event.type + errors.add(:start_event, "is not valid") + end + end + + def is_start_event_present? + start_event.present? + end +end diff --git a/app/models/cites_rst_process.rb b/app/models/cites_rst_process.rb new file mode 100644 index 000000000..f7e0a546c --- /dev/null +++ b/app/models/cites_rst_process.rb @@ -0,0 +1,16 @@ +class CitesRstProcess < CitesProcess + + attr_accessible :case_id + + STATUS = ['Initiated', 'Ongoing', 'Retained', 'Trade Suspension', 'Closed'] + + # Change status field to Enum type after upgrading to rails 4.1 + validates :status, presence: true, inclusion: {in: STATUS} + before_validation :set_resolution_value + + private + + def set_resolution_value + self.resolution = 'Significant Trade' + end +end From adf2e1d8718be6b05f4668f0e4555d653999701b Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:25:43 +0100 Subject: [PATCH 042/109] fix: properly log the number of rst cases retrieved --- lib/modules/import/rst/fetcher.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/modules/import/rst/fetcher.rb b/lib/modules/import/rst/fetcher.rb index ccf4536f7..0f0c29ecd 100644 --- a/lib/modules/import/rst/fetcher.rb +++ b/lib/modules/import/rst/fetcher.rb @@ -13,8 +13,10 @@ def get_all_cases page += 1 end - Rails.logger.info "Retrieved #{responses.count} RST cases" - responses.flat_map {|r| r['data']['items'] } + flat_data = responses.flat_map {|r| r['data']['items'] } + Rails.logger.info "Retrieved #{flat_data.count} RST cases" + + flat_data end end end From 4c163663bf4dfd7b6a9ce6f11e08e2547380828e Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:27:09 +0100 Subject: [PATCH 043/109] feat: extend Hash class to allow deep slice and use it in the rst formatter module --- lib/modules/hash_deep_slice.rb | 28 ++++++++++++++++++++++++++++ lib/modules/import/rst/formatter.rb | 27 ++------------------------- 2 files changed, 30 insertions(+), 25 deletions(-) create mode 100644 lib/modules/hash_deep_slice.rb diff --git a/lib/modules/hash_deep_slice.rb b/lib/modules/hash_deep_slice.rb new file mode 100644 index 000000000..78410bb63 --- /dev/null +++ b/lib/modules/hash_deep_slice.rb @@ -0,0 +1,28 @@ +Hash.class_eval do + + def deep_slice(*allowed_keys) + sliced = {} + allowed_keys.each do |allowed_key| + if allowed_key.is_a?(Hash) + allowed_key.each do |allowed_subkey, allowed_subkey_values| + if has_key?(allowed_subkey) + value = self[allowed_subkey] + if value.is_a?(Hash) + sliced[allowed_subkey] = value.deep_slice(*Array.wrap(allowed_subkey_values)) + elsif value.nil? + sliced[allowed_subkey] = '' + else + raise ArgumentError, "can only deep-slice hash values, but value for #{allowed_subkey.inspect} was of type #{value.class.name}" + end + end + end + else + if has_key?(allowed_key) + sliced[allowed_key] = self[allowed_key] + end + end + end + sliced + end + +end diff --git a/lib/modules/import/rst/formatter.rb b/lib/modules/import/rst/formatter.rb index 64b570d0a..88b7517c7 100644 --- a/lib/modules/import/rst/formatter.rb +++ b/lib/modules/import/rst/formatter.rb @@ -1,3 +1,5 @@ +require 'hash_deep_slice' + module Import::Rst::Formatter class << self def format_data(data) @@ -5,30 +7,5 @@ def format_data(data) item.deep_slice('id', 'countryId', 'status', 'startDate' ,'species' => 'name', 'meeting' => 'name') end end - - private - - def deep_slice(*allowed_keys) - sliced = {} - allowed_keys.each do |allowed_key| - if allowed_key.is_a?(Hash) - allowed_key.each do |allowed_subkey, allowed_subkey_values| - if has_key?(allowed_subkey) - value = self[allowed_subkey] - if value.is_a?(Hash) - sliced[allowed_subkey] = value.deep_slice(*Array.wrap(allowed_subkey_values)) - else - raise ArgumentError, "can only deep-slice hash values, but value for #{allowed_subkey.inspect} was of type #{value.class.name}" - end - end - end - else - if has_key?(allowed_key) - sliced[allowed_key] = self[allowed_key] - end - end - end - sliced - end end end From f86f5ba87bab24ab2a90eb01a3e5c7a5f0e70a4b Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:28:40 +0100 Subject: [PATCH 044/109] fix: move next back into the loop and multiple fixes to the rst importer module --- lib/modules/import/rst/importer.rb | 63 ++++++++++++++++-------------- 1 file changed, 34 insertions(+), 29 deletions(-) diff --git a/lib/modules/import/rst/importer.rb b/lib/modules/import/rst/importer.rb index 1a59dd471..4483f6778 100644 --- a/lib/modules/import/rst/importer.rb +++ b/lib/modules/import/rst/importer.rb @@ -4,44 +4,49 @@ class << self def import(data) data.map do |item| taxon_concept = map_taxon_concept(item) - geo_entity = map_geo_entity(item) - event = map_event(item) - - rst_process = CitesRstProcess.find_or_initialize_by(case_id: item['id']) - Rails.logger.info "Importing RST case #{item['id']}..." - rst_process.update!( - taxon_concept: taxon_concept, - geo_entity: geo_entity, - event: event, - status: item['status'], - start_date: item['startDate'], - resolution: 'Significant Trade' - ) - end - - private - - def map_taxon_concept(item) - taxon_concept = MTaxonConcept.find_by(taxonomy_id: 1, full_name: item['species']['name']) unless taxon_concept - Rails.logger.info "Species #{item['species']['name']} for case #{item['id']} not found, skipping... " + Rails.logger.error "Species #{item['species']['name']} for case #{item['id']} not found, skipping... " next end - end - def map_geo_entity(item) - geo_entity = GeoEntity.find_by(iso_2: item['country_iso2']) + geo_entity = map_geo_entity(item) unless geo_entity - Rails.logger.info "Country #{item['country_iso2']} for case #{item['id']} not found, skipping... " + Rails.logger.error "Country #{item['country_iso2']} for case #{item['id']} not found, skipping... " next end - end - def map_event(item) - event = Event.where("type IN (:event_type) AND name :event_name", - event_type: ['CitesAc', 'CitesPc'], event_name: item['meeting']['name']) - Rails.logger.info "Event #{item['meeting']['name']} for case #{item['id']} not found" unless event + event = map_event(item) + + rst_process = CitesRstProcess.find_or_initialize_by(case_id: item['id']) + action = rst_process.id ? 'Updating' : 'Importing' + Rails.logger.info "#{action} RST process with case_id #{item['id']}..." + + rst_process.update!( + taxon_concept_id: taxon_concept.id, + geo_entity_id: geo_entity.id, + start_event_id: event.try(:id), + status: item['status'], + start_date: item['startDate'] + ) end end + + private + + def map_taxon_concept(item) + MTaxonConcept.find_by(taxonomy_id: 1, full_name: item['species']['name']) + end + + def map_geo_entity(item) + GeoEntity.find_by(iso_code2: item['country_iso2']) + end + + def map_event(item) + event = Event.where("type IN (:event_type) AND name = :event_name", + event_type: ['CitesAc', 'CitesPc'], event_name: item['meeting']['name']).first + + Rails.logger.info "Event #{item['meeting']['name']} for case #{item['id']} not found" unless event + event + end end end From 58b12cf3c96e2b0f3c57fff230dd0ce24e9aef7b Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 6 Oct 2022 23:33:47 +0100 Subject: [PATCH 045/109] feat: rename ha many association to accomodate cites processes STI --- app/models/event.rb | 2 +- app/models/geo_entity.rb | 2 +- app/models/m_taxon_concept.rb | 2 +- app/models/taxon_concept.rb | 1 + 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/app/models/event.rb b/app/models/event.rb index e04f42e6a..5d0bd51eb 100644 --- a/app/models/event.rb +++ b/app/models/event.rb @@ -33,7 +33,7 @@ class Event < ActiveRecord::Base belongs_to :designation has_many :annotations, :dependent => :destroy has_many :documents - has_many :cites_captivity_processes + has_many :cites_processes validates :name, :presence => true, :uniqueness => true validates :url, :format => URI::regexp(%w(http https)), :allow_blank => true diff --git a/app/models/geo_entity.rb b/app/models/geo_entity.rb index 09befc361..b474ce5cb 100644 --- a/app/models/geo_entity.rb +++ b/app/models/geo_entity.rb @@ -38,7 +38,7 @@ class GeoEntity < ActiveRecord::Base :foreign_key => :country_of_origin_id has_many :document_citation_geo_entities, dependent: :destroy has_many :users - has_many :captivity_processes + has_many :cites_processes validates :geo_entity_type_id, :presence => true validates :iso_code2, :uniqueness => true, :allow_blank => true validates :iso_code2, :presence => true, :length => { :is => 2 }, diff --git a/app/models/m_taxon_concept.rb b/app/models/m_taxon_concept.rb index db274114a..d8dff81e1 100644 --- a/app/models/m_taxon_concept.rb +++ b/app/models/m_taxon_concept.rb @@ -128,7 +128,7 @@ class MTaxonConcept < ActiveRecord::Base has_many :current_cms_additions, -> { where(is_current: true, change_type_name: ChangeType::ADDITION).order('effective_at DESC, species_listing_name ASC') }, :foreign_key => :taxon_concept_id, :class_name => MCmsListingChange - has_many :captivity_processes + has_many :cites_processes scope :by_cites_eu_taxonomy, -> { where(:taxonomy_is_cites_eu => true) } scope :by_cms_taxonomy, -> { where(:taxonomy_is_cites_eu => false) } diff --git a/app/models/taxon_concept.rb b/app/models/taxon_concept.rb index 424fa67fa..d40fdd39a 100644 --- a/app/models/taxon_concept.rb +++ b/app/models/taxon_concept.rb @@ -146,6 +146,7 @@ class TaxonConcept < ActiveRecord::Base has_many :nomenclature_change_outputs_as_new, class_name: 'NomenclatureChange::Output', foreign_key: :new_taxon_concept_id has_many :document_citation_taxon_concepts + has_many :cites_processes has_many :cites_captivity_processes validates :taxonomy_id, :presence => true From 81b02e36098a3a525419c3a21c209bf78d545883 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:29:02 +0100 Subject: [PATCH 046/109] feat: display all but closed cites processes status in the public interface --- .../species/controllers/taxon_concept_controller.js.coffee | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee index db873a394..e5a317d62 100644 --- a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee +++ b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee @@ -144,7 +144,10 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon ).property('citesSuspensions') currentCitesProcesses: (-> if @get('citesProcesses') != undefined - @get('citesProcesses').filterProperty('status', 'Ongoing').concat(@get('citesProcesses').filterProperty('status', 'Trade Suspension')) + @get('citesProcesses').filterProperty('status', 'Ongoing') + .concat(@get('citesProcesses').filterProperty('status', 'Trade Suspension')) + .concat(@get('citesProcesses').filterProperty('status', 'Initiated')) + .concat(@get('citesProcesses').filterProperty('status', 'Retained')) else null ).property('citesProcesses') @@ -260,4 +263,4 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon actions: openSearchPage: (taxonFullName) -> - @get("controllers.search").openSearchPage taxonFullName \ No newline at end of file + @get("controllers.search").openSearchPage taxonFullName From eb652686c3cb03535a7e9211e810c2dae6f97a56 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:31:31 +0100 Subject: [PATCH 047/109] feat: add document free text field to cites processes --- app/models/cites_process.rb | 2 +- app/serializers/species/cites_process_serializer.rb | 4 ++-- app/views/admin/cites_captivity_processes/_form.html.erb | 9 ++++++++- db/migrate/20220922143605_create_cites_processes.rb | 1 + 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/app/models/cites_process.rb b/app/models/cites_process.rb index 7c6b75248..dcd8ea942 100644 --- a/app/models/cites_process.rb +++ b/app/models/cites_process.rb @@ -1,6 +1,6 @@ class CitesProcess < ActiveRecord::Base track_who_does_it - attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :created_by_id, :updated_by_id + attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :document, :created_by_id, :updated_by_id belongs_to :taxon_concept belongs_to :geo_entity belongs_to :start_event, :class_name => 'Event' diff --git a/app/serializers/species/cites_process_serializer.rb b/app/serializers/species/cites_process_serializer.rb index baacb925b..04c741cc9 100644 --- a/app/serializers/species/cites_process_serializer.rb +++ b/app/serializers/species/cites_process_serializer.rb @@ -1,6 +1,6 @@ class Species::CitesProcessSerializer < ActiveModel::Serializer - attributes :resolution, { :start_date_formatted => :start_date }, - :notes, :geo_entity, :status, :start_event_name + attributes :resolution, { :start_date_formatted => :start_date }, :document, + :notes, :geo_entity, :status, :start_event_name def start_event_name diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index cf902cbe2..88fbc7616 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -35,7 +35,7 @@ -
    +
    <%= f.label :status, "Status", :class => 'control-label' %>
    <%= f.select :status, @@ -45,6 +45,13 @@
    +
    + +
    + <%= f.text_area :document, :class => 'cites_captivity_process', :value => @cites_captivity_process.document %> +
    +
    +
    diff --git a/db/migrate/20220922143605_create_cites_processes.rb b/db/migrate/20220922143605_create_cites_processes.rb index 5a639ebe3..ab192c559 100644 --- a/db/migrate/20220922143605_create_cites_processes.rb +++ b/db/migrate/20220922143605_create_cites_processes.rb @@ -7,6 +7,7 @@ def change t.references :start_event t.datetime :start_date t.string :status # change to Enum type after migrating to rails 4.1 + t.text :document t.string :type t.integer :created_by_id t.integer :updated_by_id From e362650cb74d80d16bf306d15a6c0a60689cae05 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:34:25 +0100 Subject: [PATCH 048/109] feat: add document as a link in the public interface and adjust column table width --- .../taxon_concept/_cites_processes.handlebars | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 1cdca09b5..4e6cb6d43 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -30,11 +30,16 @@ {{process.start_event_name}} ({{process.start_date}})
    - @@ -71,11 +76,16 @@ {{process.start_event_name}} ({{process.start_date}}) - From 3d9c33173a8aed90c90da009cb3651987af8da32 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:35:24 +0100 Subject: [PATCH 049/109] feat: adapt model name to STI to display all the processes in the public interface --- app/controllers/api/v1/taxon_concepts_controller.rb | 2 +- app/serializers/species/show_taxon_concept_serializer_cites.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index d92f80fb9..169b99d98 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -24,7 +24,7 @@ def show :distributions => :geo_entity, :quotas => :geo_entity, :cites_suspensions => :geo_entity, - :cites_captivity_processes => :geo_entity). + :cites_processes => :geo_entity). includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS s = Species::ShowTaxonConceptSerializerCms diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 99be3d2c9..f6fad7d11 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -11,7 +11,7 @@ class Species::ShowTaxonConceptSerializerCites < Species::ShowTaxonConceptSerial has_many :processes, :serializer => Species::CitesProcessSerializer, :key => :cites_processes def processes - CitesCaptivityProcess.includes(:geo_entity,:start_event).where(taxon_concept_id: object.id).order(:start_date) + CitesProcess.includes(:geo_entity, :start_event).where(taxon_concept_id: object.id).order(:start_date) end def quotas From a835f3cb301bed64b3ca28e8607868d2e2ef9054 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:37:02 +0100 Subject: [PATCH 050/109] fix: allow country and territory selection only on country dropdown admin interface for captivity processes and fix typo --- app/controllers/admin/cites_captivity_processes_controller.rb | 2 +- lib/modules/import/rst/country_data_handler.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/admin/cites_captivity_processes_controller.rb b/app/controllers/admin/cites_captivity_processes_controller.rb index cd4eb4823..1f3e86caf 100644 --- a/app/controllers/admin/cites_captivity_processes_controller.rb +++ b/app/controllers/admin/cites_captivity_processes_controller.rb @@ -35,7 +35,7 @@ def create def load_lib_objects @geo_entities = GeoEntity.order(:name_en).joins(:geo_entity_type). - where(:geo_entity_types => { :name => GeoEntityType::SETS[GeoEntityType::DEFAULT_SET] }) + where(:geo_entity_types => { :name => GeoEntityType::SETS['2'] }) @status = CitesCaptivityProcess::STATUS @events = Event.where("type IN ('CitesAc','CitesPc')" ).order("effective_at DESC") diff --git a/lib/modules/import/rst/country_data_handler.rb b/lib/modules/import/rst/country_data_handler.rb index 7ad51861f..bec0b5ebf 100644 --- a/lib/modules/import/rst/country_data_handler.rb +++ b/lib/modules/import/rst/country_data_handler.rb @@ -4,7 +4,7 @@ class << self def merge_country_data(data) data.map do |item| country = ApiClients::RstApi.get_country(item['countryId']) - item.merge(country_iso2: country['data']['iso']) + item.merge('country_iso2' => country['data']['iso']) end end end From 6b55f57ca0879ad781a4b5787251a1baa398a923 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 12:44:47 +0100 Subject: [PATCH 051/109] chore: properly rename import rst process rake task --- ...{import_rst_processes.rake => import_cites_rst_processes.rake} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename lib/tasks/{import_rst_processes.rake => import_cites_rst_processes.rake} (100%) diff --git a/lib/tasks/import_rst_processes.rake b/lib/tasks/import_cites_rst_processes.rake similarity index 100% rename from lib/tasks/import_rst_processes.rake rename to lib/tasks/import_cites_rst_processes.rake From c1ef609309533f2b277ccc98061d10fe18450530 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 14:30:49 +0100 Subject: [PATCH 052/109] feat: make sure export all CITES processes from the admin interface --- app/models/species/cites_processes_export.rb | 20 ++++++++++---------- app/views/admin/exports/index.html.erb | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/app/models/species/cites_processes_export.rb b/app/models/species/cites_processes_export.rb index 85575488d..2259d9abc 100644 --- a/app/models/species/cites_processes_export.rb +++ b/app/models/species/cites_processes_export.rb @@ -1,10 +1,10 @@ class Species::CitesProcessesExport < Species::CsvCopyExport def query - rel = CitesCaptivityProcess.joins("LEFT JOIN taxon_concepts ON + rel = CitesProcess.joins("LEFT JOIN taxon_concepts ON taxon_concept_id = taxon_concepts.id LEFT JOIN geo_entities ON geo_entity_id = geo_entities.id LEFT JOIN events ON - start_event_id = events.id").order('taxon_concepts.id','cites_captivity_processes.id') + start_event_id = events.id").order('taxon_concepts.id','cites_processes.id') rel.select(sql_columns) end @@ -15,21 +15,21 @@ def resource_name end def table_name - 'cites_captivity_processes' + 'cites_processes' end def sql_columns - columns = [ - :'cites_captivity_processes.id', :taxon_concept_id, :'taxon_concepts.full_name', - :resolution, :'geo_entities.name_en', :'events.name', "to_char(start_date, 'DD/MM/YYYY')", - :status, :'cites_captivity_processes.notes' + [ + :'cites_processes.id', :taxon_concept_id, :'taxon_concepts.full_name', + :resolution, :'geo_entities.name_en', :'events.name', "to_char(start_date, 'DD/MM/YYYY')", + :status, :'cites_processes.document', :'cites_processes.notes' ] end def csv_column_headers - headers = [ - 'Id', 'TaxonConcept id', 'TaxonConcept name', 'Resolution', 'Country', 'Event', - 'Event date', 'Status', 'Notes' + [ + 'Id', 'TaxonConcept id', 'TaxonConcept name', 'Resolution', 'Country', 'Event', + 'Event date', 'Status', 'Document', 'Notes' ] end diff --git a/app/views/admin/exports/index.html.erb b/app/views/admin/exports/index.html.erb index 3c4fa024a..a46274496 100644 --- a/app/views/admin/exports/index.html.erb +++ b/app/views/admin/exports/index.html.erb @@ -134,7 +134,7 @@ - + From 334f689696274da3c98ef13c4db1ea85c36f7bdc Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 14:50:38 +0100 Subject: [PATCH 054/109] feature: add new model for eu accession and exit dates --- app/models/eu_country_status.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/models/eu_country_status.rb diff --git a/app/models/eu_country_status.rb b/app/models/eu_country_status.rb new file mode 100644 index 000000000..59e098a70 --- /dev/null +++ b/app/models/eu_country_status.rb @@ -0,0 +1,5 @@ +class EuCountryStatus < ActiveRecord::Base + attr_accessible :eu_accession_year, :eu_exit_year + belongs_to :geo_entity + validates :geo_entity, :presence => true +end From 6a732932a1afe08d5f88e5ec132c927241d260b0 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 14:51:50 +0100 Subject: [PATCH 055/109] feature: add new table for eu entry exit dates --- .../20221011142831_create_eu_country_statuses.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20221011142831_create_eu_country_statuses.rb diff --git a/db/migrate/20221011142831_create_eu_country_statuses.rb b/db/migrate/20221011142831_create_eu_country_statuses.rb new file mode 100644 index 000000000..e782208f8 --- /dev/null +++ b/db/migrate/20221011142831_create_eu_country_statuses.rb @@ -0,0 +1,10 @@ +class CreateEuCountryStatuses < ActiveRecord::Migration + def change + create_table :eu_country_statuses do |t| + t.references :geo_entity + t.integer :eu_accession_year + t.integer :eu_exit_year + t.timestamps + end + end +end From d63fbdbde10868152b8ea88e51548d11a541d77e Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 14:52:37 +0100 Subject: [PATCH 056/109] feature: add relation with geo_entity model --- app/models/geo_entity.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/geo_entity.rb b/app/models/geo_entity.rb index b474ce5cb..0b06db974 100644 --- a/app/models/geo_entity.rb +++ b/app/models/geo_entity.rb @@ -39,6 +39,7 @@ class GeoEntity < ActiveRecord::Base has_many :document_citation_geo_entities, dependent: :destroy has_many :users has_many :cites_processes + has_many :eu_country_statuses validates :geo_entity_type_id, :presence => true validates :iso_code2, :uniqueness => true, :allow_blank => true validates :iso_code2, :presence => true, :length => { :is => 2 }, From f1840c2fe4eb8682a71ce741d6daeb0bb06464f9 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Wed, 12 Oct 2022 14:57:31 +0100 Subject: [PATCH 057/109] fix: add term code to data and fix term capitalisation --- lib/modules/trade/grouping/trade_plus_static.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/modules/trade/grouping/trade_plus_static.rb b/lib/modules/trade/grouping/trade_plus_static.rb index d17823a3d..470927286 100644 --- a/lib/modules/trade/grouping/trade_plus_static.rb +++ b/lib/modules/trade/grouping/trade_plus_static.rb @@ -71,6 +71,7 @@ def shipments_table importer_iso: 'importer_iso', exporter_iso: 'exporter_iso', term_id: 'term_id', + term_code: 'term_code', unit_id: 'unit_id', purpose_id: 'purpose_id', source_id: 'source_id', @@ -140,7 +141,7 @@ def self.grouping_attributes def self.localize_grouping_attributes { - terms: ["term_#{@locale}", 'term_id'], + terms: ["term_#{@locale}", 'term_id', 'term_code'], sources: ["source_#{@locale}", 'source_id', 'source_code'], exporting: ["exporter_#{@locale}", 'exporter_iso'], importing: ["importer_#{@locale}", 'importer_iso'], @@ -343,7 +344,7 @@ def sanitise_column_names next if attribute == 'year' || attribute.nil? name = attribute.include?('id') ? 'id' : attribute.include?('iso') ? 'iso2' : attribute.include?('code') ? 'code' : 'name' @sanitised_column_names << name - attribute = "INITCAP(#{attribute})" if attribute == 'term' + attribute = "INITCAP(#{attribute})" if attribute == 'term_en' "#{attribute} AS #{name}" end.compact.uniq.join(',') end From 5e239c7a55bbc53b9d4f8f283cf28053f87dddca Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 15:56:10 +0100 Subject: [PATCH 058/109] feature: add rake task to import eu acession and exit date from csv file --- lib/tasks/import_eu_country_statuses.rake | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/tasks/import_eu_country_statuses.rake diff --git a/lib/tasks/import_eu_country_statuses.rake b/lib/tasks/import_eu_country_statuses.rake new file mode 100644 index 000000000..7db012b32 --- /dev/null +++ b/lib/tasks/import_eu_country_statuses.rake @@ -0,0 +1,29 @@ +namespace :import do + + desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' + task :eu_country_statuses => :environment do + + file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" + + if File.exists?(file_path) + csv = CSV.read(file_path, headers: true) + count = 0 + csv.each do |row| + geo_entity = GeoEntity.find_by_iso_code2(row[0]) + accession_year = row[5] + exit_year = row[7] + unless geo_entity.nil? + value = EuCountryStatus.where(geo_entity_id: geo_entity.id, eu_accession_year: accession_year, eu_exit_year: exit_year).count + if value == 0 + puts "Creating data for #{geo_entity.name_en}" + geo_entity.eu_country_statuses.create(eu_accession_year: accession_year, eu_exit_year: exit_year) + count+=1 + end + end + end + puts "#{count} country records imported" + else + puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" + end + end +end \ No newline at end of file From 61ff510e725d3391cd6e4c034a7cf44f154a496c Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 15:57:32 +0100 Subject: [PATCH 059/109] feature: add csv file with accession and exit dates to EU --- lib/files/CITES_trade_EU_countries_list.csv | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/files/CITES_trade_EU_countries_list.csv diff --git a/lib/files/CITES_trade_EU_countries_list.csv b/lib/files/CITES_trade_EU_countries_list.csv new file mode 100644 index 000000000..8537c3e27 --- /dev/null +++ b/lib/files/CITES_trade_EU_countries_list.csv @@ -0,0 +1,29 @@ +ISO2,Name_EN,Name_ES,Name_FR,EU_accession,EU_accession_year,EU_exit,EU_exit_year +AT,Austria,Austria,Autriche,01/01/1995,1995,, +BE,Belgium,Bélgica,Belgique,01/01/1958,1958,, +BG,Bulgaria,Bulgaria,Bulgarie,01/01/2007,2007,, +HR,Croatia,Croacia,Croatie,01/07/2013,2013,, +CY,Cyprus,Chipre,Chypre,01/05/2004,2004,, +CZ,Czech Republic,República Checa,République tchèque,01/05/2004,2004,, +DK,Denmark,Dinamarca,Danemark,01/01/1973,1973,, +EE,Estonia,Estonia,Estonie,01/05/2004,2004,, +FI,Finland,Finlandia,Finlande,01/01/1995,1995,, +FR,France,Francia,France,01/01/1958,1958,, +DE,Germany,Alemania,Allemagne,01/01/1958,1958,, +GR,Greece,Grecia,Grèce,01/01/1981,1981,, +HU,Hungary,Hungría,Hongrie,01/05/2004,2004,, +IE,Ireland,Irlanda,Irlande,01/01/1973,1973,, +IT,Italy,Italia,Italie,01/01/1958,1958,, +LV,Latvia,Letonia,Lettonie,01/05/2004,2004,, +LT,Lithuania,Lituania,Lituanie,01/05/2004,2004,, +LU,Luxembourg,Luxemburgo,Luxembourg,01/01/1958,1958,, +MT,Malta,Malta,Malte,01/05/2004,2004,, +NL,Netherlands,Países Bajos,Pays-Bas,01/01/1958,1958,, +PL,Poland,Polonia,Pologne,01/05/2004,2004,, +PT,Portugal,Portugal,Portugal,01/01/1986,1986,, +RO,Romania,Rumania,Roumanie,01/01/2007,2007,, +SK,Slovakia,Eslovaquia,Slovaquie,01/05/2004,2004,, +SI,Slovenia,Eslovenia,Slovénie,01/05/2004,2004,, +ES,Spain,España,Espagne,01/01/1986,1986,, +SE,Sweden,Suecia,Suède,01/01/1995,1995,, +GB,United Kingdom,Reino Unido,Royaume-Uni de Grande-Bretagne et d'Irlande du Nord,01/01/1973,1973,01/01/2021,2021 From cf3dada5ff096490537d948333490d2d70aea8f4 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Wed, 12 Oct 2022 16:39:24 +0100 Subject: [PATCH 060/109] fix: Corrected indendation --- lib/tasks/import_eu_country_statuses.rake | 52 +++++++++++------------ 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/lib/tasks/import_eu_country_statuses.rake b/lib/tasks/import_eu_country_statuses.rake index 7db012b32..6ced3c51d 100644 --- a/lib/tasks/import_eu_country_statuses.rake +++ b/lib/tasks/import_eu_country_statuses.rake @@ -1,29 +1,27 @@ namespace :import do + desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' + task :eu_country_statuses => :environment do + file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" - desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' - task :eu_country_statuses => :environment do - - file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" - - if File.exists?(file_path) - csv = CSV.read(file_path, headers: true) - count = 0 - csv.each do |row| - geo_entity = GeoEntity.find_by_iso_code2(row[0]) - accession_year = row[5] - exit_year = row[7] - unless geo_entity.nil? - value = EuCountryStatus.where(geo_entity_id: geo_entity.id, eu_accession_year: accession_year, eu_exit_year: exit_year).count - if value == 0 - puts "Creating data for #{geo_entity.name_en}" - geo_entity.eu_country_statuses.create(eu_accession_year: accession_year, eu_exit_year: exit_year) - count+=1 - end - end - end - puts "#{count} country records imported" - else - puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" - end - end -end \ No newline at end of file + if File.exists?(file_path) + csv = CSV.read(file_path, headers: true) + count = 0 + csv.each do |row| + geo_entity = GeoEntity.find_by_iso_code2(row[0]) + accession_year = row[5] + exit_year = row[7] + unless geo_entity.nil? + value = EuCountryStatus.where(geo_entity_id: geo_entity.id, eu_accession_year: accession_year, eu_exit_year: exit_year).count + if value == 0 + puts "Creating data for #{geo_entity.name_en}" + geo_entity.eu_country_statuses.create(eu_accession_year: accession_year, eu_exit_year: exit_year) + count+=1 + end + end + end + puts "#{count} country records imported" + else + puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" + end + end +end From 795a144f07565542786b70e23dce5703fe7fed61 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Thu, 13 Oct 2022 08:58:30 +0100 Subject: [PATCH 061/109] feat: add EU option to importer/exporter WIP --- .../javascripts/cites_trade/application.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index 4977def70..052ad7b9f 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -1,3 +1,11 @@ +//TODO: align with backend +const EU_OPTION = { + geo_entity_type: 'REGION', + id: 1001, + iso_code2: 'EU', + name: 'European Union' +} + $(document).ready(function(){ var ajaxFail, initExpctyImpcty, initTerms, initSources, initPurposes, @@ -104,6 +112,14 @@ $(document).ready(function(){ function getParamsFromInputs(){ var values = parseInputs($('#form_expert :input')); + + // TODO: add required logic here + ['exporters_ids', 'importers_ids'].forEach(function (key) { + if (values[key].indexOf(EU_OPTION.id.toString()) > 0) { + console.log('Getting params: ' + key + ' contains EU.') + } + }) + return $.param({'filters': values}); } @@ -257,6 +273,8 @@ $(document).ready(function(){ } initExpctyImpcty = function (data) { + data.geo_entities.push(EU_OPTION) + // TODO: Sort if required var args = { data: data.geo_entities, condition: function (item) {return item.iso_code2}, From 3e474dba534487fc50299f46fde2006df191140d Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Thu, 13 Oct 2022 09:37:29 +0100 Subject: [PATCH 062/109] feat: add unstyled EU disclaimer when EU is selected --- .../javascripts/cites_trade/application.js | 24 ++++++++++++++++++- app/views/cites_trade/home/index.html.erb | 6 +++++ config/locales/en.yml | 2 ++ 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index 052ad7b9f..8141acd25 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -115,7 +115,7 @@ $(document).ready(function(){ // TODO: add required logic here ['exporters_ids', 'importers_ids'].forEach(function (key) { - if (values[key].indexOf(EU_OPTION.id.toString()) > 0) { + if (isEuInArray(values[key])) { console.log('Getting params: ' + key + ' contains EU.') } }) @@ -199,6 +199,7 @@ $(document).ready(function(){ $('#reset_search').click(function() { resetSelects(); show_values_selection(); + setEuDisclaimerVisibility(); // Removing the table results on reset $("#query_results_table").find('thead,tbody').remove(); $('#query_results').find('p.info').text(''); @@ -306,6 +307,7 @@ $(document).ready(function(){ selection = getText(new_array); } $('#expcty_out').text(selection); + setEuDisclaimerVisibility(); }); populateSelect(_.extend(args, { @@ -333,6 +335,7 @@ $(document).ready(function(){ selection = getText(new_array); } $('#impcty_out').text(selection); + setEuDisclaimerVisibility(); }); }; @@ -495,6 +498,24 @@ $(document).ready(function(){ $('#genus_all_id').val(); }; + function setEuDisclaimerVisibility () { + ['imp', 'exp'].forEach(function (type) { + const disclaimerEl = $('#eu_disclaimer_' + type) + + hasEuDisclaimer(type) ? disclaimerEl.show() : disclaimerEl.hide() + }) + } + + function hasEuDisclaimer (type) { + const selections = $('#'+ type + 'cty').val() + + return isEuInArray(selections) + } + + function isEuInArray (array) { + return array.indexOf(EU_OPTION.id.toString()) >= 0 + } + $('#side .ui-button, #form .ui-button').hover(function() { $(this).toggleClass('ui-state-hover'); }); @@ -629,6 +650,7 @@ $(document).ready(function(){ } show_values_selection(); + setEuDisclaimerVisibility(); $('#qryFrom, #qryTo').on('change',function() { var y_from = $('#qryFrom').val(); diff --git a/app/views/cites_trade/home/index.html.erb b/app/views/cites_trade/home/index.html.erb index 8c50f5ed3..b32809a85 100644 --- a/app/views/cites_trade/home/index.html.erb +++ b/app/views/cites_trade/home/index.html.erb @@ -89,6 +89,9 @@ +
    + <%= t('eu_disclaimer') %> +
    <%= t('import_text') %>: @@ -99,6 +102,9 @@
    +
    + <%= t('eu_disclaimer') %> +
    <%= t('source_text') %>: diff --git a/config/locales/en.yml b/config/locales/en.yml index 8a642cd5b..ee4dbc1bd 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -34,6 +34,8 @@ en: taxon_search: "Search for species or higher taxon" genus_title: "Search for genus:" + eu_disclaimer: 'This is the EU disclaimer text explaining how the EU selection works.' + all_countries: "All Countries" all_sources: "All Sources" all_purposes: "All Purposes" From 04036d3dfac486010b52a989cf7767fec45b0fd5 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 15:15:47 +0100 Subject: [PATCH 063/109] fix: model name change --- app/models/eu_country_date.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/models/eu_country_date.rb diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb new file mode 100644 index 000000000..9b832e2d1 --- /dev/null +++ b/app/models/eu_country_date.rb @@ -0,0 +1,13 @@ +class EuCountryDate < ActiveRecord::Base + attr_accessible :eu_accession_year, :eu_exit_year + belongs_to :geo_entity + validates :geo_entity, :presence => true + + private + + def is_country + unless self.geo_entity.is_country? + error.add(:geo_entity, "Must be a country") + end + end +end From 4dabdccb67ee781ba516a149f510af7c22786a9a Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 15:16:37 +0100 Subject: [PATCH 064/109] fix: table name change --- db/migrate/20221011142831_create_eu_country_dates.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 db/migrate/20221011142831_create_eu_country_dates.rb diff --git a/db/migrate/20221011142831_create_eu_country_dates.rb b/db/migrate/20221011142831_create_eu_country_dates.rb new file mode 100644 index 000000000..40605f39a --- /dev/null +++ b/db/migrate/20221011142831_create_eu_country_dates.rb @@ -0,0 +1,10 @@ +class CreateEuCountryDates < ActiveRecord::Migration + def change + create_table :eu_country_dates do |t| + t.references :geo_entity + t.integer :eu_accession_year + t.integer :eu_exit_year + t.timestamps + end + end +end From 9d12deb52674a69641a5c00fd989b5459c1d2f5d Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 15:18:36 +0100 Subject: [PATCH 065/109] fix: remove previous model and migration files --- app/models/eu_country_status.rb | 5 ----- .../20221011142831_create_eu_country_statuses.rb | 10 ---------- 2 files changed, 15 deletions(-) delete mode 100644 app/models/eu_country_status.rb delete mode 100644 db/migrate/20221011142831_create_eu_country_statuses.rb diff --git a/app/models/eu_country_status.rb b/app/models/eu_country_status.rb deleted file mode 100644 index 59e098a70..000000000 --- a/app/models/eu_country_status.rb +++ /dev/null @@ -1,5 +0,0 @@ -class EuCountryStatus < ActiveRecord::Base - attr_accessible :eu_accession_year, :eu_exit_year - belongs_to :geo_entity - validates :geo_entity, :presence => true -end diff --git a/db/migrate/20221011142831_create_eu_country_statuses.rb b/db/migrate/20221011142831_create_eu_country_statuses.rb deleted file mode 100644 index e782208f8..000000000 --- a/db/migrate/20221011142831_create_eu_country_statuses.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateEuCountryStatuses < ActiveRecord::Migration - def change - create_table :eu_country_statuses do |t| - t.references :geo_entity - t.integer :eu_accession_year - t.integer :eu_exit_year - t.timestamps - end - end -end From 55b61a596de4e42f5ad93614841b1815d1490d12 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 15:19:04 +0100 Subject: [PATCH 066/109] fix: change relationship name --- app/models/geo_entity.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/geo_entity.rb b/app/models/geo_entity.rb index 0b06db974..ccc0d5715 100644 --- a/app/models/geo_entity.rb +++ b/app/models/geo_entity.rb @@ -39,7 +39,7 @@ class GeoEntity < ActiveRecord::Base has_many :document_citation_geo_entities, dependent: :destroy has_many :users has_many :cites_processes - has_many :eu_country_statuses + has_many :eu_country_dates validates :geo_entity_type_id, :presence => true validates :iso_code2, :uniqueness => true, :allow_blank => true validates :iso_code2, :presence => true, :length => { :is => 2 }, From 739f67c9ca86c674c0edec4da4940abe0c08c874 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 16:25:56 +0100 Subject: [PATCH 067/109] fix: removed unnecessary columns from csv --- lib/files/CITES_trade_EU_countries_list.csv | 58 ++++++++++----------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/lib/files/CITES_trade_EU_countries_list.csv b/lib/files/CITES_trade_EU_countries_list.csv index 8537c3e27..a38ad8615 100644 --- a/lib/files/CITES_trade_EU_countries_list.csv +++ b/lib/files/CITES_trade_EU_countries_list.csv @@ -1,29 +1,29 @@ -ISO2,Name_EN,Name_ES,Name_FR,EU_accession,EU_accession_year,EU_exit,EU_exit_year -AT,Austria,Austria,Autriche,01/01/1995,1995,, -BE,Belgium,Bélgica,Belgique,01/01/1958,1958,, -BG,Bulgaria,Bulgaria,Bulgarie,01/01/2007,2007,, -HR,Croatia,Croacia,Croatie,01/07/2013,2013,, -CY,Cyprus,Chipre,Chypre,01/05/2004,2004,, -CZ,Czech Republic,República Checa,République tchèque,01/05/2004,2004,, -DK,Denmark,Dinamarca,Danemark,01/01/1973,1973,, -EE,Estonia,Estonia,Estonie,01/05/2004,2004,, -FI,Finland,Finlandia,Finlande,01/01/1995,1995,, -FR,France,Francia,France,01/01/1958,1958,, -DE,Germany,Alemania,Allemagne,01/01/1958,1958,, -GR,Greece,Grecia,Grèce,01/01/1981,1981,, -HU,Hungary,Hungría,Hongrie,01/05/2004,2004,, -IE,Ireland,Irlanda,Irlande,01/01/1973,1973,, -IT,Italy,Italia,Italie,01/01/1958,1958,, -LV,Latvia,Letonia,Lettonie,01/05/2004,2004,, -LT,Lithuania,Lituania,Lituanie,01/05/2004,2004,, -LU,Luxembourg,Luxemburgo,Luxembourg,01/01/1958,1958,, -MT,Malta,Malta,Malte,01/05/2004,2004,, -NL,Netherlands,Países Bajos,Pays-Bas,01/01/1958,1958,, -PL,Poland,Polonia,Pologne,01/05/2004,2004,, -PT,Portugal,Portugal,Portugal,01/01/1986,1986,, -RO,Romania,Rumania,Roumanie,01/01/2007,2007,, -SK,Slovakia,Eslovaquia,Slovaquie,01/05/2004,2004,, -SI,Slovenia,Eslovenia,Slovénie,01/05/2004,2004,, -ES,Spain,España,Espagne,01/01/1986,1986,, -SE,Sweden,Suecia,Suède,01/01/1995,1995,, -GB,United Kingdom,Reino Unido,Royaume-Uni de Grande-Bretagne et d'Irlande du Nord,01/01/1973,1973,01/01/2021,2021 +ISO2,EU_accession_year,EU_exit_year +AT,1995, +BE,1958, +BG,2007, +HR,2013, +CY,2004, +CZ,2004, +DK,1973, +EE,2004, +FI,1995, +FR,1958, +DE,1958, +GR,1981, +HU,2004, +IE,1973, +IT,1958, +LV,2004, +LT,2004, +LU,1958, +MT,2004, +NL,1958, +PL,2004, +PT,1986, +RO,2007, +SK,2004, +SI,2004, +ES,1986, +SE,1995, +GB,1973,2021 From e5ad90644843a45fceb20d4bc171b176bdef48a6 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 16:26:30 +0100 Subject: [PATCH 068/109] fix: code review changes --- lib/tasks/import_eu_country_dates.rake | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/tasks/import_eu_country_dates.rake diff --git a/lib/tasks/import_eu_country_dates.rake b/lib/tasks/import_eu_country_dates.rake new file mode 100644 index 000000000..29f2fa480 --- /dev/null +++ b/lib/tasks/import_eu_country_dates.rake @@ -0,0 +1,21 @@ +namespace :import do + desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' + task :eu_country_dates => :environment do + file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" + + if File.exists?(file_path) + CSV.foreach(file_path, headers: true) do |row| + + geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) + accession_year = row['EU_accession_year'] + exit_year = row['EU_exit_year'] + unless geo_entity.nil? + geo_entity.eu_country_dates.find_or_create_by(eu_accession_year: accession_year, eu_exit_year: exit_year) + end + end + puts "EU country records imported" + else + puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" + end + end +end From c41e768c3fbdf11b838cd0b23dfb215e24e49cd2 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 16:27:11 +0100 Subject: [PATCH 069/109] fix: file name changed --- lib/tasks/import_eu_country_statuses.rake | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 lib/tasks/import_eu_country_statuses.rake diff --git a/lib/tasks/import_eu_country_statuses.rake b/lib/tasks/import_eu_country_statuses.rake deleted file mode 100644 index 6ced3c51d..000000000 --- a/lib/tasks/import_eu_country_statuses.rake +++ /dev/null @@ -1,27 +0,0 @@ -namespace :import do - desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' - task :eu_country_statuses => :environment do - file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" - - if File.exists?(file_path) - csv = CSV.read(file_path, headers: true) - count = 0 - csv.each do |row| - geo_entity = GeoEntity.find_by_iso_code2(row[0]) - accession_year = row[5] - exit_year = row[7] - unless geo_entity.nil? - value = EuCountryStatus.where(geo_entity_id: geo_entity.id, eu_accession_year: accession_year, eu_exit_year: exit_year).count - if value == 0 - puts "Creating data for #{geo_entity.name_en}" - geo_entity.eu_country_statuses.create(eu_accession_year: accession_year, eu_exit_year: exit_year) - count+=1 - end - end - end - puts "#{count} country records imported" - else - puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" - end - end -end From ebf6714c688be6a3766906110b9e4453935ce2aa Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 13 Oct 2022 16:30:15 +0100 Subject: [PATCH 070/109] fix: indendation and space --- lib/tasks/import_eu_country_dates.rake | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/lib/tasks/import_eu_country_dates.rake b/lib/tasks/import_eu_country_dates.rake index 29f2fa480..08ee6d7ea 100644 --- a/lib/tasks/import_eu_country_dates.rake +++ b/lib/tasks/import_eu_country_dates.rake @@ -5,14 +5,13 @@ namespace :import do if File.exists?(file_path) CSV.foreach(file_path, headers: true) do |row| - - geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) - accession_year = row['EU_accession_year'] - exit_year = row['EU_exit_year'] - unless geo_entity.nil? - geo_entity.eu_country_dates.find_or_create_by(eu_accession_year: accession_year, eu_exit_year: exit_year) - end - end + geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) + accession_year = row['EU_accession_year'] + exit_year = row['EU_exit_year'] + unless geo_entity.nil? + geo_entity.eu_country_dates.find_or_create_by(eu_accession_year: accession_year, eu_exit_year: exit_year) + end + end puts "EU country records imported" else puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" From 3d4b7dca96faaea8189e8ba1b7daac7340216630 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 14 Oct 2022 11:46:20 +0100 Subject: [PATCH 071/109] fix: add validation method call --- app/models/eu_country_date.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb index 9b832e2d1..c9afd8f8f 100644 --- a/app/models/eu_country_date.rb +++ b/app/models/eu_country_date.rb @@ -2,6 +2,7 @@ class EuCountryDate < ActiveRecord::Base attr_accessible :eu_accession_year, :eu_exit_year belongs_to :geo_entity validates :geo_entity, :presence => true + validate :is_country private From b71b46f763e9b26182600ba2cf9bba3e06eb1e41 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 14 Oct 2022 12:01:52 +0100 Subject: [PATCH 072/109] fix: add logger, modify create method --- lib/tasks/import_eu_country_dates.rake | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/tasks/import_eu_country_dates.rake b/lib/tasks/import_eu_country_dates.rake index 08ee6d7ea..56df21d03 100644 --- a/lib/tasks/import_eu_country_dates.rake +++ b/lib/tasks/import_eu_country_dates.rake @@ -1,5 +1,5 @@ namespace :import do - desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_statuses' + desc 'Import EU country entry/exit dates from csv file usage: rake import:eu_country_dates' task :eu_country_dates => :environment do file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" @@ -8,8 +8,11 @@ namespace :import do geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) accession_year = row['EU_accession_year'] exit_year = row['EU_exit_year'] - unless geo_entity.nil? - geo_entity.eu_country_dates.find_or_create_by(eu_accession_year: accession_year, eu_exit_year: exit_year) + if geo_entity.nil? + Rails.logger.info "Country #{row['ISO2']} not found in the DB, skipping..." + next + else + EuCountryDate.find_or_create_by!(geo_entity: geo_entity, eu_accession_year: accession_year, eu_exit_year: exit_year) end end puts "EU country records imported" From 5e22e2e7c63a36d8303a88a2f64edf90269a5e71 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 14 Oct 2022 12:02:40 +0100 Subject: [PATCH 073/109] add attr_accessible geo_entity --- app/models/eu_country_date.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb index c9afd8f8f..13b10eac3 100644 --- a/app/models/eu_country_date.rb +++ b/app/models/eu_country_date.rb @@ -1,5 +1,5 @@ class EuCountryDate < ActiveRecord::Base - attr_accessible :eu_accession_year, :eu_exit_year + attr_accessible :eu_accession_year, :eu_exit_year, :geo_entity belongs_to :geo_entity validates :geo_entity, :presence => true validate :is_country From 549c8607393ae5d9fe67601ec2b6de515451113f Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 14 Oct 2022 13:14:37 +0100 Subject: [PATCH 074/109] feat: add entry year presence validation --- app/models/eu_country_date.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb index c9afd8f8f..8ddce9877 100644 --- a/app/models/eu_country_date.rb +++ b/app/models/eu_country_date.rb @@ -1,11 +1,11 @@ class EuCountryDate < ActiveRecord::Base attr_accessible :eu_accession_year, :eu_exit_year belongs_to :geo_entity - validates :geo_entity, :presence => true + validates :geo_entity, :eu_accession_year, :presence => true validate :is_country private - + def is_country unless self.geo_entity.is_country? error.add(:geo_entity, "Must be a country") From 7f3e13081fff0945e65f56a1a2b7b1b252ccdf78 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 14 Oct 2022 13:30:02 +0100 Subject: [PATCH 075/109] chore: add more explicit logging on eu conutry dates importer --- lib/tasks/import_eu_country_dates.rake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/tasks/import_eu_country_dates.rake b/lib/tasks/import_eu_country_dates.rake index 56df21d03..2e5ac6825 100644 --- a/lib/tasks/import_eu_country_dates.rake +++ b/lib/tasks/import_eu_country_dates.rake @@ -4,18 +4,19 @@ namespace :import do file_path = "#{Rails.root}/lib/files/CITES_trade_EU_countries_list.csv" if File.exists?(file_path) + Rails.logger.info "There are #{EuCountryDate.count} records in the EuCoutryDate table" CSV.foreach(file_path, headers: true) do |row| - geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) + geo_entity = GeoEntity.find_by_iso_code2(row['ISO2']) accession_year = row['EU_accession_year'] exit_year = row['EU_exit_year'] if geo_entity.nil? Rails.logger.info "Country #{row['ISO2']} not found in the DB, skipping..." next - else + else EuCountryDate.find_or_create_by!(geo_entity: geo_entity, eu_accession_year: accession_year, eu_exit_year: exit_year) end end - puts "EU country records imported" + Rails.logger.info "There are #{EuCountryDate.count} records in the EuCoutryDate table after the import" else puts "CITES_trade_EU_countries_list.csv file is missing within the lib/files/ directory" end From bd8c8c7d53f9500385f36961699a54677bb961a4 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 14 Oct 2022 15:08:06 +0100 Subject: [PATCH 076/109] chore: remove unused attr accessible --- app/models/eu_country_date.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb index 13b10eac3..0475358d3 100644 --- a/app/models/eu_country_date.rb +++ b/app/models/eu_country_date.rb @@ -1,11 +1,10 @@ class EuCountryDate < ActiveRecord::Base - attr_accessible :eu_accession_year, :eu_exit_year, :geo_entity belongs_to :geo_entity validates :geo_entity, :presence => true validate :is_country private - + def is_country unless self.geo_entity.is_country? error.add(:geo_entity, "Must be a country") From 50f7f85b0602656df934921767bca6a1efe032bd Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Fri, 14 Oct 2022 16:20:47 +0100 Subject: [PATCH 077/109] feat: attempt to add source ids to quotas --- .../api/v1/taxon_concepts_controller.rb | 2 +- app/serializers/species/quota_serializer.rb | 3 +- .../show_taxon_concept_serializer_cites.rb | 1 + ...add_source_ids_to_api_cites_quotas_view.rb | 6 ++ .../api_cites_quotas_view/20221014151355.sql | 101 ++++++++++++++++++ 5 files changed, 111 insertions(+), 2 deletions(-) create mode 100644 db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb create mode 100644 db/views/api_cites_quotas_view/20221014151355.sql diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index aa7350f13..312c9a0bb 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -22,7 +22,7 @@ def show @taxon_concept = TaxonConcept. includes(:common_names => :language, :distributions => :geo_entity, - :quotas => :geo_entity, + :quotas => [:geo_entity, :sources], :cites_suspensions => :geo_entity). includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS diff --git a/app/serializers/species/quota_serializer.rb b/app/serializers/species/quota_serializer.rb index 14f719a01..5b3a2cb7d 100644 --- a/app/serializers/species/quota_serializer.rb +++ b/app/serializers/species/quota_serializer.rb @@ -3,7 +3,8 @@ class Species::QuotaSerializer < ActiveModel::Serializer :notes, :url, :public_display, :is_current, :subspecies_info, :nomenclature_note_en, :nomenclature_note_fr, :nomenclature_note_es, :geo_entity, - :unit + :unit, + :source_ids def geo_entity object['geo_entity_en'] diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 09059bd85..3d6feff8c 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -34,6 +34,7 @@ def quotas trade_restrictions.nomenclature_note_es, geo_entity_en, unit_en, + source_ids, CASE WHEN taxon_concept->>'rank' = '#{object.rank_name}' THEN NULL diff --git a/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb b/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb new file mode 100644 index 000000000..aeda116ca --- /dev/null +++ b/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb @@ -0,0 +1,6 @@ +class AddSourceIdsToApiCitesQuotasView < ActiveRecord::Migration + def change + execute "DROP VIEW IF EXISTS api_cites_quotas_view" + execute "CREATE VIEW api_cites_quotas_view AS #{view_sql('20221014151355', 'api_cites_quotas_view')}" + end +end diff --git a/db/views/api_cites_quotas_view/20221014151355.sql b/db/views/api_cites_quotas_view/20221014151355.sql new file mode 100644 index 000000000..c1ae61021 --- /dev/null +++ b/db/views/api_cites_quotas_view/20221014151355.sql @@ -0,0 +1,101 @@ +SELECT tr. *, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_en, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_en, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_es, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_es, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_fr, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_fr, + COALESCE(trade_restriction_sources.source_ids, '[]') AS source_ids, + CASE + WHEN unit_id IS NULL THEN NULL::JSON + ELSE + ROW_TO_JSON( + ROW( + units.code, + units.name_en + )::api_trade_code + ) + END AS unit_en, + CASE + WHEN unit_id IS NULL THEN NULL::JSON + ELSE + ROW_TO_JSON( + ROW( + units.code, + units.name_es + )::api_trade_code + ) + END AS unit_es, + CASE + WHEN unit_id IS NULL THEN NULL::JSON + ELSE + ROW_TO_JSON( + ROW( + units.code, + units.name_fr + )::api_trade_code + ) + END AS unit_fr +FROM ( + SELECT * FROM ( + SELECT tr.*, + CASE + WHEN tr.taxon_concept_id IS NULL + THEN + NULL::JSON + ELSE + ROW_TO_JSON( + ROW( + taxon_concept_id, + taxon_concepts.full_name, + taxon_concepts.author_year, + taxon_concepts.data->'rank_name' + )::api_taxon_concept + ) + END AS taxon_concept + FROM ( + SELECT + tr.id, + tr.type, + tr.taxon_concept_id, + tr.notes, + tr.url, + tr.start_date, + tr.publication_date::DATE, + tr.is_current, + tr.geo_entity_id, + tr.unit_id, + CASE WHEN tr.quota = -1 THEN NULL ELSE tr.quota END AS quota, + tr.public_display, + tr.nomenclature_note_en, + tr.nomenclature_note_fr, + tr.nomenclature_note_es + FROM trade_restrictions tr + WHERE tr.type IN ('Quota') + ) tr + LEFT JOIN taxon_concepts ON taxon_concepts.id = tr.taxon_concept_id + ) cites_quotas_with_taxon_concept +) tr +JOIN geo_entities ON geo_entities.id = tr.geo_entity_id +JOIN geo_entity_types ON geo_entities.geo_entity_type_id = geo_entity_types.id +LEFT JOIN trade_codes units ON units.id = tr.unit_id AND units.type = 'Unit' +LEFT JOIN LATERAL ( + SELECT JSON_AGG(trade_restriction_sources.source_id) AS source_ids + FROM trade_restriction_sources + WHERE tr.id = trade_restriction_sources.trade_restriction_id +) trade_restriction_sources ON true; From 08871f8e8d9c8c068dafea1dabe45cdc17306bae Mon Sep 17 00:00:00 2001 From: lucacug Date: Mon, 17 Oct 2022 14:59:46 +0100 Subject: [PATCH 078/109] fix: add safe operatore to deal with missing meeting attribute on some rst cases --- .../taxon_concept/_cites_processes.handlebars | 12 ++++++++++-- app/serializers/species/cites_process_serializer.rb | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index a7275a8c5..015aa081f 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -27,7 +27,11 @@ {{process.geo_entity.name}}
    - - + @@ -33,18 +32,23 @@ {{process.start_date}} {{/if}} - {{else}} @@ -63,7 +67,6 @@ - @@ -83,19 +86,22 @@ {{process.start_date}} {{/if}} - - + {{/each}} From 3343b46dfdd2fe50ede833dd2a699bdbe79f20a8 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 11:33:59 +0100 Subject: [PATCH 084/109] feat: add document_title attr to cites process --- .../20221017212659_add_document_title_to_cites_processes.rb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 db/migrate/20221017212659_add_document_title_to_cites_processes.rb diff --git a/db/migrate/20221017212659_add_document_title_to_cites_processes.rb b/db/migrate/20221017212659_add_document_title_to_cites_processes.rb new file mode 100644 index 000000000..0eded4d5c --- /dev/null +++ b/db/migrate/20221017212659_add_document_title_to_cites_processes.rb @@ -0,0 +1,5 @@ +class AddDocumentTitleToCitesProcesses < ActiveRecord::Migration + def change + add_column :cites_processes, :document_title, :text + end +end From 410e48151cd94dd942f0b764895bfad017f298bd Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 11:37:16 +0100 Subject: [PATCH 085/109] feat: add document title to admin form and list --- app/models/cites_process.rb | 4 +++- app/serializers/species/cites_process_serializer.rb | 4 +--- .../admin/cites_captivity_processes/_form.html.erb | 9 ++++++++- .../admin/cites_captivity_processes/_list.html.erb | 10 +++++++--- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/app/models/cites_process.rb b/app/models/cites_process.rb index dcd8ea942..b9a96dcc4 100644 --- a/app/models/cites_process.rb +++ b/app/models/cites_process.rb @@ -1,6 +1,8 @@ class CitesProcess < ActiveRecord::Base track_who_does_it - attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, :taxon_concept_id, :notes, :status, :document, :created_by_id, :updated_by_id + attr_accessible :start_event_id, :geo_entity_id, :resolution, :start_date, + :taxon_concept_id, :notes, :status, :document, :document_title, + :created_by_id, :updated_by_id belongs_to :taxon_concept belongs_to :geo_entity belongs_to :start_event, :class_name => 'Event' diff --git a/app/serializers/species/cites_process_serializer.rb b/app/serializers/species/cites_process_serializer.rb index e06a6f351..190390225 100644 --- a/app/serializers/species/cites_process_serializer.rb +++ b/app/serializers/species/cites_process_serializer.rb @@ -1,10 +1,8 @@ class Species::CitesProcessSerializer < ActiveModel::Serializer attributes :resolution, { :start_date_formatted => :start_date }, :document, - :notes, :geo_entity, :status, :start_event_name - + :document_title, :notes, :geo_entity, :status, :start_event_name def start_event_name object.start_event.try(:name) end - end diff --git a/app/views/admin/cites_captivity_processes/_form.html.erb b/app/views/admin/cites_captivity_processes/_form.html.erb index 88fbc7616..dfd15a023 100644 --- a/app/views/admin/cites_captivity_processes/_form.html.erb +++ b/app/views/admin/cites_captivity_processes/_form.html.erb @@ -46,12 +46,19 @@
    - +
    <%= f.text_area :document, :class => 'cites_captivity_process', :value => @cites_captivity_process.document %>
    +
    + +
    + <%= f.text_area :document_title, :class => 'cites_captivity_process', :value => @cites_captivity_process.document_title %> +
    +
    +
    diff --git a/app/views/admin/cites_captivity_processes/_list.html.erb b/app/views/admin/cites_captivity_processes/_list.html.erb index 14573d268..466b70474 100644 --- a/app/views/admin/cites_captivity_processes/_list.html.erb +++ b/app/views/admin/cites_captivity_processes/_list.html.erb @@ -1,10 +1,12 @@
    - + + + @@ -17,7 +19,9 @@ - + + + <% end -%> From fed80546e24087de9b195fd4714c3a9b7f001695 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 11:38:22 +0100 Subject: [PATCH 086/109] feat: add presence validation on document and doc title --- app/models/cites_captivity_process.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/cites_captivity_process.rb b/app/models/cites_captivity_process.rb index a44573c16..39dcd85b1 100644 --- a/app/models/cites_captivity_process.rb +++ b/app/models/cites_captivity_process.rb @@ -4,6 +4,8 @@ class CitesCaptivityProcess < CitesProcess # Change status field to Enum type after upgrading to rails 4.1 validates :status, presence: true, inclusion: {in: STATUS} + validates :document_title, presence: true, if: :document? + validates :document, presence: true, if: :document_title? before_validation :set_resolution_value private From 9d69b38e3d5371355a61a593842a4027bf2b13f9 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 12:34:22 +0100 Subject: [PATCH 087/109] chore: refactor filtering method on FE replacing filterProperty with filter, more concise and does not mess up with the order of the records --- .../species/controllers/taxon_concept_controller.js.coffee | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee index e5a317d62..c36238569 100644 --- a/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee +++ b/app/assets/javascripts/species/controllers/taxon_concept_controller.js.coffee @@ -144,10 +144,8 @@ Species.TaxonConceptController = Ember.ObjectController.extend Species.SearchCon ).property('citesSuspensions') currentCitesProcesses: (-> if @get('citesProcesses') != undefined - @get('citesProcesses').filterProperty('status', 'Ongoing') - .concat(@get('citesProcesses').filterProperty('status', 'Trade Suspension')) - .concat(@get('citesProcesses').filterProperty('status', 'Initiated')) - .concat(@get('citesProcesses').filterProperty('status', 'Retained')) + @get('citesProcesses').filter (item) -> + return item.status != 'Closed' else null ).property('citesProcesses') From 61c0dc09b9e1f3bfbe47c40689802478350ec709 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 12:34:54 +0100 Subject: [PATCH 088/109] fix: display doc only when present --- .../taxon_concept/_cites_processes.handlebars | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 430e30d27..db814a5a8 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -44,10 +44,12 @@ {{/if}} {{else}} {{process.notes}} -

    - - {{process.document_title}} - + {{#if process.document}} +

    + + {{process.document_title}} + + {{/if}} {{/ifEquals}} From 81cabfb6eb8aca9e96f8e81675330707f934c08c Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 12:35:40 +0100 Subject: [PATCH 089/109] fix: properly order the processes, by resolution and country --- app/serializers/species/show_taxon_concept_serializer_cites.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 3a9ebc9b3..e002d33e1 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -14,7 +14,7 @@ def processes CitesProcess.includes(:start_event) .joins("LEFT JOIN geo_entities ON geo_entity_id = geo_entities.id") .where(taxon_concept_id: object.id) - .order('cites_processes.type', 'geo_entities.name_en') + .order('resolution', 'geo_entities.name_en') end def include_distribution_references? From a90bb09a6675f04f47d60588f3f303028ca7a9f1 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Tue, 18 Oct 2022 14:29:26 +0100 Subject: [PATCH 090/109] fix: add trade_restrictions.id to query --- app/serializers/species/show_taxon_concept_serializer_cites.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 3d6feff8c..775f13d3d 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -20,6 +20,7 @@ def quotas ) ", object_and_children: object_and_children, ancestors: ancestors, taxon_concept_id: object.id). select(<<-SQL + trade_restrictions.id, trade_restrictions.notes, trade_restrictions.url, trade_restrictions.start_date, @@ -32,9 +33,9 @@ def quotas trade_restrictions.nomenclature_note_en, trade_restrictions.nomenclature_note_fr, trade_restrictions.nomenclature_note_es, + trade_restrictions.source_ids, geo_entity_en, unit_en, - source_ids, CASE WHEN taxon_concept->>'rank' = '#{object.rank_name}' THEN NULL From 5b16a147451b245ea0670e5384e8427791f68d9e Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Tue, 18 Oct 2022 15:34:42 +0100 Subject: [PATCH 091/109] feat: add source_ids to suspensions in trade endpoint --- .../api/v1/taxon_concepts_controller.rb | 2 +- .../species/cites_suspension_serializer.rb | 3 +- .../show_taxon_concept_serializer_cites.rb | 2 + ...ource_ids_to_api_cites_suspensions_view.rb | 6 ++ .../20221014151355.sql | 78 +++++++++++++++++++ 5 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb create mode 100644 db/views/api_cites_suspensions_view/20221014151355.sql diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index 312c9a0bb..203adc680 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -23,7 +23,7 @@ def show includes(:common_names => :language, :distributions => :geo_entity, :quotas => [:geo_entity, :sources], - :cites_suspensions => :geo_entity). + :cites_suspensions => [:geo_entity, :sources]). includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS s = Species::ShowTaxonConceptSerializerCms diff --git a/app/serializers/species/cites_suspension_serializer.rb b/app/serializers/species/cites_suspension_serializer.rb index d1072a166..ad8df1e21 100644 --- a/app/serializers/species/cites_suspension_serializer.rb +++ b/app/serializers/species/cites_suspension_serializer.rb @@ -4,7 +4,8 @@ class Species::CitesSuspensionSerializer < ActiveModel::Serializer :nomenclature_note_es, :geo_entity, :applies_to_import, - :start_notification + :start_notification, + :source_ids def geo_entity object['geo_entity_en'] diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index 775f13d3d..329b275d8 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -67,6 +67,7 @@ def cites_suspensions AND trade_restrictions.taxon_concept_id IN (:ancestors)) ", object_and_children: object_and_children, ancestors: ancestors, taxon_concept_id: object.id). select(<<-SQL + trade_restrictions.id, trade_restrictions.notes, trade_restrictions.start_date, trade_restrictions.end_date, @@ -80,6 +81,7 @@ def cites_suspensions trade_restrictions.geo_entity_en, trade_restrictions.applies_to_import, trade_restrictions.start_notification, + trade_restrictions.source_ids, CASE WHEN taxon_concept->>'rank' = '#{object.rank_name}' THEN NULL diff --git a/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb b/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb new file mode 100644 index 000000000..d010dd244 --- /dev/null +++ b/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb @@ -0,0 +1,6 @@ +class AddSourceIdsToApiCitesSuspensionsView < ActiveRecord::Migration + def change + execute "DROP VIEW IF EXISTS api_cites_suspensions_view" + execute "CREATE VIEW api_cites_suspensions_view AS #{view_sql('20221014151355', 'api_cites_suspensions_view')}" + end +end diff --git a/db/views/api_cites_suspensions_view/20221014151355.sql b/db/views/api_cites_suspensions_view/20221014151355.sql new file mode 100644 index 000000000..caab53feb --- /dev/null +++ b/db/views/api_cites_suspensions_view/20221014151355.sql @@ -0,0 +1,78 @@ +SELECT + tr.*, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_en, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_en, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_es, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_es, + ROW_TO_JSON( + ROW( + geo_entities.iso_code2, + geo_entities.name_fr, + geo_entity_types.name + )::api_geo_entity + ) AS geo_entity_fr, + COALESCE(trade_restriction_sources.source_ids, '[]') AS source_ids, + ROW_TO_JSON( + ROW( + events.name, + events.effective_at::DATE, + events.url + )::api_event + ) AS start_notification +FROM ( + SELECT * FROM ( + SELECT tr.*, + CASE + WHEN tr.taxon_concept_id IS NOT NULL THEN + ROW_TO_JSON( + ROW( + tr.taxon_concept_id, + taxon_concepts.full_name, + taxon_concepts.author_year, + taxon_concepts.data->'rank_name' + )::api_taxon_concept + ) + ELSE + NULL::JSON + END AS taxon_concept + FROM ( + SELECT + tr.id, + tr.type, + tr.taxon_concept_id, + tr.notes, + tr.start_date::DATE, + tr.end_date::DATE, + tr.is_current, + tr.geo_entity_id, + tr.applies_to_import, + tr.start_notification_id, + tr.end_notification_id, + tr.nomenclature_note_en, + tr.nomenclature_note_fr, + tr.nomenclature_note_es + FROM trade_restrictions tr + WHERE tr.type IN ('CitesSuspension') + ) tr + LEFT JOIN taxon_concepts ON taxon_concepts.id = tr.taxon_concept_id + ) cites_suspensions_without_taxon_concept +) tr +LEFT JOIN geo_entities ON geo_entities.id = tr.geo_entity_id +LEFT JOIN geo_entity_types ON geo_entities.geo_entity_type_id = geo_entity_types.id +JOIN events ON events.id = tr.start_notification_id + AND events.type IN ('CitesSuspensionNotification') +LEFT JOIN LATERAL ( + SELECT JSON_AGG(trade_restriction_sources.source_id) AS source_ids + FROM trade_restriction_sources + WHERE tr.id = trade_restriction_sources.trade_restriction_id +) trade_restriction_sources ON true; \ No newline at end of file From 0da8a8aea6673d5cf4ea1c90610d0e7cef6a2d4b Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Wed, 19 Oct 2022 09:25:49 +0100 Subject: [PATCH 092/109] fix: only uppercase first letter of term and for all locales --- lib/modules/trade/grouping/trade_plus_static.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/modules/trade/grouping/trade_plus_static.rb b/lib/modules/trade/grouping/trade_plus_static.rb index 470927286..61490aaf3 100644 --- a/lib/modules/trade/grouping/trade_plus_static.rb +++ b/lib/modules/trade/grouping/trade_plus_static.rb @@ -344,7 +344,11 @@ def sanitise_column_names next if attribute == 'year' || attribute.nil? name = attribute.include?('id') ? 'id' : attribute.include?('iso') ? 'iso2' : attribute.include?('code') ? 'code' : 'name' @sanitised_column_names << name - attribute = "INITCAP(#{attribute})" if attribute == 'term_en' + + if attribute == "term_#{@locale}" + attribute = "UPPER(SUBSTRING(#{attribute} from 1 for 1)) || LOWER(SUBSTRING(#{attribute} from 2))" + end + "#{attribute} AS #{name}" end.compact.uniq.join(',') end From 723ccd0841769bf79ac39b79b6b28b6e3c084754 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Thu, 20 Oct 2022 15:55:35 +0100 Subject: [PATCH 093/109] fix: allow searching for countries with non-standard characters in trade db --- .../javascripts/cites_trade/application.js | 35 +++++++++++++++++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index 4977def70..a473c7d9a 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -256,6 +256,35 @@ $(document).ready(function(){ unLock('initSourcesObj'); } + removeCasingAndDiacritics = function (value) { + return value.toString() + .normalize('NFD') + .replace(/[\u0300-\u036F]/g, '') + .toLowerCase() + } + + matchWithDiacritics = function (term, text) { + // If there are no search terms, return all of the data + if ($.trim(term) === '') { + return text; + } + + // Do not display the item if there is no 'text' property + if (typeof text === 'undefined') { + return null; + } + + var searchTerm = removeCasingAndDiacritics(term) + var optionText = removeCasingAndDiacritics(text) + + if (optionText.indexOf(searchTerm) > -1) { + return text; + } + + // Return `null` if the term should not be displayed + return null; + } + initExpctyImpcty = function (data) { var args = { data: data.geo_entities, @@ -272,7 +301,8 @@ $(document).ready(function(){ $('#expcty').select2({ width: '75%', allowClear: false, - closeOnSelect: false + closeOnSelect: false, + matcher: matchWithDiacritics }).on('change', function(e){ var selection = ""; if (e.val.length == 0) { @@ -298,7 +328,8 @@ $(document).ready(function(){ $('#impcty').select2({ width: '75%', allowClear: false, - closeOnSelect: false + closeOnSelect: false, + matcher: matchWithDiacritics }).on('change', function(e){ selection = ""; if (e.val.length == 0) { From f7e547de40cf57f5db47fdc9941d63c5a83067f7 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Thu, 20 Oct 2022 17:43:37 +0100 Subject: [PATCH 094/109] feat: Modify query to include EU countries based on their entry, exit dates --- app/models/trade/filter.rb | 73 ++++++++++++++++++++++++++++++++------ 1 file changed, 62 insertions(+), 11 deletions(-) diff --git a/app/models/trade/filter.rb b/app/models/trade/filter.rb index 262b11342..aae8b1c2d 100644 --- a/app/models/trade/filter.rb +++ b/app/models/trade/filter.rb @@ -80,11 +80,24 @@ def initialize_query end unless @importers_ids.empty? - @query = @query.where(:importer_id => @importers_ids) + if @importers_ids.include?(eu_id) + query = eu_country_date_range_query(@time_range_start,@time_range_end,'importer_id') + @query = @query.where(query) + else + @query = @query.where(:importer_id => exporter_importer_ids(@importers_ids)) + @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) + end end unless @exporters_ids.empty? - @query = @query.where(:exporter_id => @exporters_ids) + if @exporters_ids.include?(eu_id) + query = eu_country_date_range_query(@time_range_start,@time_range_end,'exporter_id') + @query = @query.where(query) + else + @query = @query.where(:exporter_id => exporter_importer_ids(@exporters_ids)) + @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) + end + end if !@units_ids.empty? @@ -125,19 +138,57 @@ def initialize_query end # Other cases - unless @time_range_start.blank? && @time_range_end.blank? - if @time_range_start.blank? - @query = @query.where(["year <= ?", @time_range_end]) - elsif @time_range_end.blank? - @query = @query.where(["year >= ?", @time_range_start]) - else - @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) - end - end + # unless @time_range_start.blank? && @time_range_end.blank? + # if @time_range_start.blank? + # @query = @query.where(["year <= ?", @time_range_end]) + # elsif @time_range_end.blank? + # @query = @query.where(["year >= ?", @time_range_start]) + # else + # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) + # end + # end initialize_internal_query if @internal end + def eu_id + GeoEntity.where(iso_code2: 'EU').pluck(:id).first + end + + def eu_country_ids + EuCountryDate.all.pluck(:geo_entity_id) + end + + def exporter_importer_ids(ids) + return ids unless ids.include?(eu_id) + + ids.delete(eu_id) + ids += eu_country_ids + end + + def eu_country_date_range_query(from,to,type) + range = (from..to) + h = Hash.new + range.each do |year| + countries = EuCountryDate.where("eu_accession_year <= #{year} and (eu_exit_year > #{year} OR eu_exit_year is null)") + h[year] = countries.pluck(:geo_entity_id) + end + + j = h.each_with_object({}) { |(k,v),h| (h[v] ||= []) << k } + + m=j.invert + arr = [] + + m.size.times.each_with_index do |n,i| + year1 = m.keys[i].first + year2 = m.keys[i].last + eu_ids = m.values[i].join(',') + arr << "trade_shipments.#{type} IN (#{eu_ids}) AND (year >= #{year1} AND year <= #{year2})" + end + + return arr.join(' OR ') + end + def initialize_internal_query if @report_type == :raw # includes would override the select clause From 8c6c5828c92bd193287dae06ae2c8afbc4bdbc2e Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 21 Oct 2022 10:42:04 +0100 Subject: [PATCH 095/109] fix: date range fix --- app/models/trade/filter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/trade/filter.rb b/app/models/trade/filter.rb index aae8b1c2d..980b9c29a 100644 --- a/app/models/trade/filter.rb +++ b/app/models/trade/filter.rb @@ -85,7 +85,7 @@ def initialize_query @query = @query.where(query) else @query = @query.where(:importer_id => exporter_importer_ids(@importers_ids)) - @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) + @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) end end @@ -95,7 +95,7 @@ def initialize_query @query = @query.where(query) else @query = @query.where(:exporter_id => exporter_importer_ids(@exporters_ids)) - @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) + @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) end end From 2978accfc6c757ee23268138a9b0394d685f1ae9 Mon Sep 17 00:00:00 2001 From: roshan-mathewtech Date: Fri, 21 Oct 2022 12:10:57 +0100 Subject: [PATCH 096/109] fix: added brackets to separate OR condition in the query --- app/models/trade/filter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/trade/filter.rb b/app/models/trade/filter.rb index 980b9c29a..bd62021f3 100644 --- a/app/models/trade/filter.rb +++ b/app/models/trade/filter.rb @@ -183,7 +183,7 @@ def eu_country_date_range_query(from,to,type) year1 = m.keys[i].first year2 = m.keys[i].last eu_ids = m.values[i].join(',') - arr << "trade_shipments.#{type} IN (#{eu_ids}) AND (year >= #{year1} AND year <= #{year2})" + arr << "(trade_shipments.#{type} IN (#{eu_ids}) AND (year >= #{year1} AND year <= #{year2}))" end return arr.join(' OR ') From 0dba52bbd81784256cd54167aea367cc821e44c8 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Mon, 24 Oct 2022 13:58:30 +0100 Subject: [PATCH 097/109] fix: only check for eu option if selects present --- app/assets/javascripts/cites_trade/application.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index aef27e8f0..bb8779c01 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -490,13 +490,19 @@ $(document).ready(function(){ ['imp', 'exp'].forEach(function (type) { const disclaimerEl = $('#eu_disclaimer_' + type) - hasEuDisclaimer(type) ? disclaimerEl.show() : disclaimerEl.hide() + if (disclaimerEl.length) { + hasEuDisclaimer(type) ? disclaimerEl.show() : disclaimerEl.hide() + } }) } function hasEuDisclaimer (type) { const selections = $('#'+ type + 'cty').val() + if (!selections) { + return false + } + return isEuInArray(selections) } From 30ee55401b576b67919d0ed8cfc40ff2cbe1e4ad Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Mon, 24 Oct 2022 14:58:19 +0100 Subject: [PATCH 098/109] feat: update eu disclaimer and add margin --- app/assets/stylesheets/cites_trade/citestrade.css | 4 ++++ app/views/cites_trade/home/index.html.erb | 4 ++-- config/locales/en.yml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/cites_trade/citestrade.css b/app/assets/stylesheets/cites_trade/citestrade.css index 816c4f87c..12b1acb6a 100644 --- a/app/assets/stylesheets/cites_trade/citestrade.css +++ b/app/assets/stylesheets/cites_trade/citestrade.css @@ -21,6 +21,10 @@ font-weight:700; padding: 3px 3px; } +.select_notes { + margin-top: 10px; +} + .banner { background-color: #ac9e89; width: 95%; diff --git a/app/views/cites_trade/home/index.html.erb b/app/views/cites_trade/home/index.html.erb index b32809a85..87be86720 100644 --- a/app/views/cites_trade/home/index.html.erb +++ b/app/views/cites_trade/home/index.html.erb @@ -89,7 +89,7 @@ -
    +
    <%= t('eu_disclaimer') %>
    @@ -102,7 +102,7 @@ -
    +
    <%= t('eu_disclaimer') %>
    diff --git a/config/locales/en.yml b/config/locales/en.yml index ee4dbc1bd..53aa14880 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -34,7 +34,7 @@ en: taxon_search: "Search for species or higher taxon" genus_title: "Search for genus:" - eu_disclaimer: 'This is the EU disclaimer text explaining how the EU selection works.' + eu_disclaimer: "Selection of 'European Union' will include trade data involving countries that were EU Member States at the time of trade (i.e. the year range of the query). Where the year range includes a country’s year of accession to/exit from the European Union, all trade relevant to the search query reported for that country and year will be included within the search results even if the accession/exit date was partway through that year." all_countries: "All Countries" all_sources: "All Sources" From 1746501445d3084e3b3af41d490a21d6a5c99910 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Tue, 25 Oct 2022 16:53:47 +0100 Subject: [PATCH 099/109] fix: add es and fr translation as english temporarily --- config/locales/es.yml | 2 ++ config/locales/fr.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/config/locales/es.yml b/config/locales/es.yml index eb9e44a5f..d2dd318cc 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -31,6 +31,8 @@ es: taxon_search: "Buscar por especie o grupo taxonómico" genus_title: "Seleccione un género:" + eu_disclaimer: "Selection of 'European Union' will include trade data involving countries that were EU Member States at the time of trade (i.e. the year range of the query). Where the year range includes a country’s year of accession to/exit from the European Union, all trade relevant to the search query reported for that country and year will be included within the search results even if the accession/exit date was partway through that year." + all_countries: "Todos los Países" all_sources: "Todos los Orígenes" all_purposes: "Todos los Objetivos" diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 149bc3cd6..142952b1f 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -31,6 +31,8 @@ fr: taxon_search: "Recherche par espèce ou taxon supérieur" genus_title: "Sélectionnez un genre" + eu_disclaimer: "Selection of 'European Union' will include trade data involving countries that were EU Member States at the time of trade (i.e. the year range of the query). Where the year range includes a country’s year of accession to/exit from the European Union, all trade relevant to the search query reported for that country and year will be included within the search results even if the accession/exit date was partway through that year." + all_countries: "Tous les Pays" all_sources: "Toutes les Sources" all_purposes: "Tous les Buts" From 1ee4e9232f71fdfc7e1f22fab8462bea05099116 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Wed, 26 Oct 2022 08:21:21 +0100 Subject: [PATCH 100/109] fix: remove unused code --- .../javascripts/cites_trade/application.js | 47 ------------------- 1 file changed, 47 deletions(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index bb8779c01..1bdf6bd92 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -20,14 +20,6 @@ $(document).ready(function(){ $.jGrowl(text); }; - function growlMeSticky(text){ - $.jGrowl(text, {sticky: true}); - }; - - function notyNormal(message){ - noty({layout: 'topRight', text: message, timeout: 4000}); - }; - function notySticky(message){ noty({ layout: 'top', type: 'information', @@ -76,17 +68,6 @@ $(document).ready(function(){ $('input,select').keypress(function(event) { return event.keyCode != 13; }); }; - function fixTaxonId (arr) { - return _.map(arr, function (obj) { - if (obj.name === 'taxon_concepts_ids[]') { - return {name: 'taxon_concepts_ids[]', value: selected_taxa}; - } else { - return obj; - } - }); - } - - function parseInputs ($inputs) { var values = {}; $inputs.each(function() { @@ -205,17 +186,6 @@ $(document).ready(function(){ hoverColor: '#D2EF9A' }); - - function getSelectionTextNew(source) { - var values = []; - - $('#ms-' + source).find('div.ms-selection ul.ms-list li').each(function() { - values.push($(this).text()); - }); - - return values.join(',') - } - function getSelectionText(source) { myValues = new Array(); $('#' + source + ' option:selected').each(function(index, value) { @@ -470,11 +440,6 @@ $(document).ready(function(){ function show_values_selection() { var year_from = $('#qryFrom').val(); var year_to = $('#qryTo').val(); - var exp_cty = $('#expctyms2side__dx').text(); - var imp_cty = $('#impctyms2side__dx').text(); - var sources = $('#sourcesms2side__dx').text(); - var purposes = $('#purposesms2side__dx').text(); - var terms = $('#termsms2side__dx').text(); $('#year_from > span').text(year_from); $('#year_to > span').text(year_to); @@ -543,18 +508,6 @@ $(document).ready(function(){ return taxonDisplayName.replace(new RegExp("(" + term + '|' + termWithHyphens+ ")", "gi"), transform); } - function parseTaxonData (data, term, showSpp) { - var d = data.auto_complete_taxon_concepts; - return _.map(d, function (element, index) { - var displayName = getTaxonDisplayName(element, showSpp) - return { - 'value': element.id, - 'label': displayName, - 'drop_label': getTaxonLabel(displayName, term) - }; - }); - } - function parseTaxonCascadeData(data, term, showSpp) { var d = data.auto_complete_taxon_concepts; var data_by_rank = []; From 9feb66c72529d43473f6be1c4fb7c18caac89b9d Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Wed, 26 Oct 2022 08:50:42 +0100 Subject: [PATCH 101/109] fix: prevent year_from greater than year_to for cites_trade selects --- .../javascripts/cites_trade/application.js | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index 1bdf6bd92..b657358a8 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -599,13 +599,30 @@ $(document).ready(function(){ show_values_selection(); setEuDisclaimerVisibility(); - $('#qryFrom, #qryTo').on('change',function() { - var y_from = $('#qryFrom').val(); - var y_to = $('#qryTo').val(); - $('#year_from > span').text(y_from); - $('#year_to > span').text(y_to); + $('#qryFrom, #qryTo').on('change', function(e) { + year_range = handleYearRangeChange(e.target.id) + + $('#year_from > span').text(year_range[0]) + $('#year_to > span').text(year_range[1]) }); + function handleYearRangeChange (id) { + var y_from = $('#qryFrom').val() + var y_to = $('#qryTo').val() + + if (y_from > y_to) { + if (id === 'qryFrom') { + y_to = y_from + $('#qryTo').val(y_to) + } else { + y_from = y_to + $('#qryFrom').val(y_from) + } + } + + return [y_from, y_to] + } + //Put functions to be executed here initialiseControls(); From c5d2b8d64376ac7109d021d12fa82efee7594d55 Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 27 Oct 2022 22:28:52 +0100 Subject: [PATCH 102/109] refactor/fix: eu entry exit date query to include edge cases --- app/models/trade/filter.rb | 135 +++++++++++++++++++++++++------------ 1 file changed, 91 insertions(+), 44 deletions(-) diff --git a/app/models/trade/filter.rb b/app/models/trade/filter.rb index bd62021f3..df8a3e2df 100644 --- a/app/models/trade/filter.rb +++ b/app/models/trade/filter.rb @@ -79,26 +79,38 @@ def initialize_query @query = @query.where(:term_id => @terms_ids) end + # unless @importers_ids.empty? + # if @importers_ids.include?(eu_id) + # query = eu_country_date_range_query(@time_range_start, @time_range_end, 'importer_id') + # @query = @query.where(query) + # else + # @query = @query.where(:importer_id => @importers_ids) + # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @exporters_ids.empty? + # end + # else + # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @exporters_ids.empty? + # end unless @importers_ids.empty? - if @importers_ids.include?(eu_id) - query = eu_country_date_range_query(@time_range_start,@time_range_end,'importer_id') - @query = @query.where(query) - else - @query = @query.where(:importer_id => exporter_importer_ids(@importers_ids)) - @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) - end + importers_ids = sanitize_importer_ids(@importers_ids) + @query = @query.where(:importer_id => importers_ids) end unless @exporters_ids.empty? - if @exporters_ids.include?(eu_id) - query = eu_country_date_range_query(@time_range_start,@time_range_end,'exporter_id') - @query = @query.where(query) - else - @query = @query.where(:exporter_id => exporter_importer_ids(@exporters_ids)) - @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) - end - + exporters_ids = sanitize_exporter_ids(@exporters_ids) + @query = @query.where(:exporter_id => exporters_ids) end + # + # unless @exporters_ids.empty? + # if @exporters_ids.include?(eu_id) + # query = eu_country_date_range_query(@time_range_start, @time_range_end, 'exporter_id') + # @query = @query.where(query) + # else + # @query = @query.where(:exporter_id => @exporters_ids) + # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @importers_ids.empty? + # end + # else + # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @importers_ids.empty? + # end if !@units_ids.empty? local_field = "unit_id" @@ -138,15 +150,17 @@ def initialize_query end # Other cases - # unless @time_range_start.blank? && @time_range_end.blank? - # if @time_range_start.blank? - # @query = @query.where(["year <= ?", @time_range_end]) - # elsif @time_range_end.blank? - # @query = @query.where(["year >= ?", @time_range_start]) - # else - # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_start]) - # end - # end + time_range_query + + unless @importer_eu_country_ids.blank? + query = eu_country_date_query(@time_range_start, @time_range_end, 'importer') + @query = @query.where.not(query) unless query.blank? + end + + unless @exporter_eu_country_ids.blank? + query = eu_country_date_query(@time_range_start, @time_range_end, 'exporter') + @query = @query.where.not(query) unless query.blank? + end initialize_internal_query if @internal end @@ -159,34 +173,67 @@ def eu_country_ids EuCountryDate.all.pluck(:geo_entity_id) end - def exporter_importer_ids(ids) + def sanitize_exporter_ids(ids) return ids unless ids.include?(eu_id) ids.delete(eu_id) - ids += eu_country_ids + # this is to collect only eu country IDs to apply EU rules query to + # e.g. EU + Austria we don't have to apply EU rules to Austria + @exporter_eu_country_ids = eu_country_ids - ids + (eu_country_ids + ids).uniq end - def eu_country_date_range_query(from,to,type) - range = (from..to) - h = Hash.new - range.each do |year| - countries = EuCountryDate.where("eu_accession_year <= #{year} and (eu_exit_year > #{year} OR eu_exit_year is null)") - h[year] = countries.pluck(:geo_entity_id) - end - - j = h.each_with_object({}) { |(k,v),h| (h[v] ||= []) << k } + def sanitize_importer_ids(ids) + return ids unless ids.include?(eu_id) + + ids.delete(eu_id) + @importer_eu_country_ids = eu_country_ids - ids + (eu_country_ids + ids).uniq + end + + def eu_country_date_query(start_year, end_year, type) + eu_country_ids = instance_variable_get("@#{type}_eu_country_ids") + country_query_arr = [] + eu_country_ids.each do |eu_country| + # check for multiple entries for the same countries(UK might rejoin at some point) + eu_entry_exit_dates(eu_country).each do |entry_date, exit_date| + + # exclude countries for which we will need to retreive all the shipments + # within the user selected year range anyway and this will happen if: + + # entry date 3 scenarios: + # entry_date < time_range -> keep all ships <=== + # time_range.include entry_date -> keep only ships with year < entry_date + # entry_date > time_range -> remove all ships / keep ships with year >= entry_date > time_range + + # exit date 3 scenarios: + # exit_date < time_range -> remove all ships + # time_range.include exit_date -> remove only ships with year >= exit_date + # exit_date > time_range -> kee all ships <==== + exit_date_check = exit_date.nil? ? true : (exit_date > end_year) # workaround to avoid nil > integer + next if (entry_date < start_year && exit_date_check) - m=j.invert - arr = [] - - m.size.times.each_with_index do |n,i| - year1 = m.keys[i].first - year2 = m.keys[i].last - eu_ids = m.values[i].join(',') - arr << "(trade_shipments.#{type} IN (#{eu_ids}) AND (year >= #{year1} AND year <= #{year2}))" + exit_year_check = exit_date.nil? ? 'AND TRUE' : "OR year >= #{exit_date}" + country_query_arr << "(trade_shipments.#{type}_id = #{eu_country} AND (year < #{entry_date} #{exit_year_check}))" + end end + country_query_arr.join(' OR ') + end + + def eu_entry_exit_dates(country_id) + EuCountryDate.where(geo_entity_id: country_id).pluck(:eu_accession_year, :eu_exit_year) + end - return arr.join(' OR ') + def time_range_query + unless @time_range_start.blank? && @time_range_end.blank? + if @time_range_start.blank? + @query = @query.where(["year <= ?", @time_range_end]) + elsif @time_range_end.blank? + @query = @query.where(["year >= ?", @time_range_start]) + else + @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) + end + end end def initialize_internal_query From 1add277e0985152d3b3544cfc7ee1744d373dc00 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 1 Nov 2022 09:22:23 +0000 Subject: [PATCH 103/109] chore: remove comments --- app/models/trade/filter.rb | 37 ++----------------------------------- 1 file changed, 2 insertions(+), 35 deletions(-) diff --git a/app/models/trade/filter.rb b/app/models/trade/filter.rb index df8a3e2df..7e7b612c0 100644 --- a/app/models/trade/filter.rb +++ b/app/models/trade/filter.rb @@ -79,17 +79,6 @@ def initialize_query @query = @query.where(:term_id => @terms_ids) end - # unless @importers_ids.empty? - # if @importers_ids.include?(eu_id) - # query = eu_country_date_range_query(@time_range_start, @time_range_end, 'importer_id') - # @query = @query.where(query) - # else - # @query = @query.where(:importer_id => @importers_ids) - # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @exporters_ids.empty? - # end - # else - # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @exporters_ids.empty? - # end unless @importers_ids.empty? importers_ids = sanitize_importer_ids(@importers_ids) @query = @query.where(:importer_id => importers_ids) @@ -99,18 +88,6 @@ def initialize_query exporters_ids = sanitize_exporter_ids(@exporters_ids) @query = @query.where(:exporter_id => exporters_ids) end - # - # unless @exporters_ids.empty? - # if @exporters_ids.include?(eu_id) - # query = eu_country_date_range_query(@time_range_start, @time_range_end, 'exporter_id') - # @query = @query.where(query) - # else - # @query = @query.where(:exporter_id => @exporters_ids) - # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @importers_ids.empty? - # end - # else - # @query = @query.where(["year >= ? AND year <= ?", @time_range_start, @time_range_end]) if @importers_ids.empty? - # end if !@units_ids.empty? local_field = "unit_id" @@ -187,7 +164,7 @@ def sanitize_importer_ids(ids) return ids unless ids.include?(eu_id) ids.delete(eu_id) - @importer_eu_country_ids = eu_country_ids - ids + @importer_eu_country_ids = eu_country_ids - ids (eu_country_ids + ids).uniq end @@ -199,17 +176,7 @@ def eu_country_date_query(start_year, end_year, type) eu_entry_exit_dates(eu_country).each do |entry_date, exit_date| # exclude countries for which we will need to retreive all the shipments - # within the user selected year range anyway and this will happen if: - - # entry date 3 scenarios: - # entry_date < time_range -> keep all ships <=== - # time_range.include entry_date -> keep only ships with year < entry_date - # entry_date > time_range -> remove all ships / keep ships with year >= entry_date > time_range - - # exit date 3 scenarios: - # exit_date < time_range -> remove all ships - # time_range.include exit_date -> remove only ships with year >= exit_date - # exit_date > time_range -> kee all ships <==== + # within the user selected year range anyway exit_date_check = exit_date.nil? ? true : (exit_date > end_year) # workaround to avoid nil > integer next if (entry_date < start_year && exit_date_check) From e631339f805bd4c6bf47389efc79a763de8b1785 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 1 Nov 2022 15:24:20 +0000 Subject: [PATCH 104/109] fix: reintroduce accessible attrs to allow record creation --- app/models/eu_country_date.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/eu_country_date.rb b/app/models/eu_country_date.rb index 4a0ca579d..a3a3920a3 100644 --- a/app/models/eu_country_date.rb +++ b/app/models/eu_country_date.rb @@ -1,4 +1,6 @@ class EuCountryDate < ActiveRecord::Base + attr_accessible :eu_accession_year, :eu_exit_year, :geo_entity + belongs_to :geo_entity validates :geo_entity, :eu_accession_year, :presence => true validate :is_country From 7a6addd5663c92b70a09f67ff43df090726b0289 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Fri, 11 Nov 2022 09:40:26 +0000 Subject: [PATCH 105/109] fix: make suspension and quota view migrations reversible --- ...221014141104_add_source_ids_to_api_cites_quotas_view.rb | 7 ++++++- ...4141105_add_source_ids_to_api_cites_suspensions_view.rb | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb b/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb index aeda116ca..ebe468591 100644 --- a/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb +++ b/db/migrate/20221014141104_add_source_ids_to_api_cites_quotas_view.rb @@ -1,6 +1,11 @@ class AddSourceIdsToApiCitesQuotasView < ActiveRecord::Migration - def change + def up execute "DROP VIEW IF EXISTS api_cites_quotas_view" execute "CREATE VIEW api_cites_quotas_view AS #{view_sql('20221014151355', 'api_cites_quotas_view')}" end + + def down + execute "DROP VIEW IF EXISTS api_cites_quotas_view" + execute "CREATE VIEW api_cites_quotas_view AS #{view_sql('20150512222755', 'api_cites_quotas_view')}" + end end diff --git a/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb b/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb index d010dd244..11bae3091 100644 --- a/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb +++ b/db/migrate/20221014141105_add_source_ids_to_api_cites_suspensions_view.rb @@ -1,6 +1,11 @@ class AddSourceIdsToApiCitesSuspensionsView < ActiveRecord::Migration - def change + def up execute "DROP VIEW IF EXISTS api_cites_suspensions_view" execute "CREATE VIEW api_cites_suspensions_view AS #{view_sql('20221014151355', 'api_cites_suspensions_view')}" end + + def down + execute "DROP VIEW IF EXISTS api_cites_suspensions_view" + execute "CREATE VIEW api_cites_suspensions_view AS #{view_sql('20150518122737', 'api_cites_suspensions_view')}" + end end From 625772443b722da2517dba7b518b788c76d60a26 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Fri, 11 Nov 2022 09:46:31 +0000 Subject: [PATCH 106/109] fix: fix merge typo in taxon_concepts_controller --- app/controllers/api/v1/taxon_concepts_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/taxon_concepts_controller.rb b/app/controllers/api/v1/taxon_concepts_controller.rb index fa80eedf5..32349af71 100644 --- a/app/controllers/api/v1/taxon_concepts_controller.rb +++ b/app/controllers/api/v1/taxon_concepts_controller.rb @@ -23,7 +23,7 @@ def show includes(:common_names => :language, :distributions => :geo_entity, :quotas => [:geo_entity, :sources], - :cites_suspensions => [:geo_entity, :sources]). + :cites_suspensions => [:geo_entity, :sources], :cites_processes => :geo_entity). includes(:taxonomy).find(params[:id]) if @taxon_concept.taxonomy.name == Taxonomy::CMS From 5f2e59abfd7be778bc1ab58187c83d0088d6da00 Mon Sep 17 00:00:00 2001 From: lucacug Date: Wed, 14 Dec 2022 15:20:54 +0000 Subject: [PATCH 107/109] feat: add translated cites trade eu disclaimer text (spanish and french) --- config/locales/es.yml | 3 +-- config/locales/fr.yml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/config/locales/es.yml b/config/locales/es.yml index 2f617b17a..500f4aa06 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -31,8 +31,7 @@ es: taxon_search: "Buscar por especie o grupo taxonómico" genus_title: "Seleccione un género:" - eu_disclaimer: "Selection of 'European Union' will include trade data involving countries that were EU Member States at the time of trade (i.e. the year range of the query). Where the year range includes a country’s year of accession to/exit from the European Union, all trade relevant to the search query reported for that country and year will be included within the search results even if the accession/exit date was partway through that year." - + eu_disclaimer: "La selección de 'Unión Europea' incluirá datos de comercio que involucren a países que eran Estados miembros de la UE en el momento del comercio (es decir, el rango de años de la búsqueda). Cuando el rango de años incluya el año de ingreso/salida de un país de la Unión Europea, todo el comercio relevante para la búsqueda reportado para ese país y año será incluido en los resultados de la búsqueda incluso cuando la fecha de ingreso/salida haya sido a mitad de ese año." all_countries: "Todos los Países" all_sources: "Todos los Orígenes" all_purposes: "Todos los Objetivos" diff --git a/config/locales/fr.yml b/config/locales/fr.yml index d460b1747..a684cd3ce 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -31,8 +31,7 @@ fr: taxon_search: "Recherche par espèce ou taxon supérieur" genus_title: "Sélectionnez un genre" - eu_disclaimer: "Selection of 'European Union' will include trade data involving countries that were EU Member States at the time of trade (i.e. the year range of the query). Where the year range includes a country’s year of accession to/exit from the European Union, all trade relevant to the search query reported for that country and year will be included within the search results even if the accession/exit date was partway through that year." - + eu_disclaimer: "Sélectionner 'Union européenne' inclura les données de commerce concernant les pays qui étaient des États membres de l'UE au moment des échanges (c'est-à-dire pendant la période de la requête). Lorsque la période comprend l'année d'adhésion d'un pays à l'Union européenne ou l’année de sortie d’un pays de l'Union européenne, tous les échanges commerciaux relatifs à la requête qui ont été communiqués pour ce pays et cette année seront inclus dans les résultats de la recherche, même si la date d'adhésion ou de sortie se situe au cours de cette année." all_countries: "Tous les Pays" all_sources: "Toutes les Sources" all_purposes: "Tous les Buts" From 919446355c53ee0946fb2bdde311e31d7154c0b9 Mon Sep 17 00:00:00 2001 From: lucacug Date: Thu, 15 Dec 2022 23:34:59 +0000 Subject: [PATCH 108/109] hotfix: comment out cites processes section temporarly --- .../species/templates/taxon_concept/legal.handlebars | 6 ++++-- config/schedule.rb | 7 ++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars b/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars index 896373a2e..0fd180a15 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/legal.handlebars @@ -35,11 +35,13 @@ {{/with}} -
    + + +
    diff --git a/config/schedule.rb b/config/schedule.rb index fcb94158d..adcbba550 100644 --- a/config/schedule.rb +++ b/config/schedule.rb @@ -24,6 +24,7 @@ rake "-s sitemap:refresh" end -every :sunday, :at => '1:30am' do - rake "rst_processes:import" -end +# TODO uncomment this when RST can go live +# every :sunday, :at => '1:30am' do +# rake "rst_processes:import" +# end From 2512b9934d7d11d0baab1c8884b038acc1475c48 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 16 Dec 2022 11:55:36 +0000 Subject: [PATCH 109/109] chore: update CHANGELOG --- CHANGELOG.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b531900b..b7503ce8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### 1.10.0 + +**CITES Trade DB** + +* Add EU importer/exporter grouping +* Add disclaimer text beneath the search when EU is selected + +**Species +** + +* Add CITES Processes(RST, Captive Breeding) to the legal section (temporarily hidden) +* Expand admin interface with CRUD for Captive breeding processes +* Add RST API client and scheduled task (temporarily disabled) to retrieve RST processes +* Add CITES Processes export via the admin interface +* Fix search with diacritics (searching for Turkiye will also return Türkiye) +* Add source_ids to quota and suspension internal API (used in SAT) + ### 1.9.0 * Add parameter to taxon concept show API internal endpoint to trimmed response for the mobile app
    RESOLUTIONREVIEW COUNTRY DATE ENTRYDOCUMENTCASE STATUSDETAILSSTATUS NOTES
    There are no current cases for this species.This species is not currently included in the CITES Reviews of Significant Trade or Captive Breeding
    + {{#if process.document}} + + Link + + {{/if}} {{process.status}} + {{process.notes}}
    + {{#if process.document}} + + {{process.document}} + + {{/if}} {{process.status}} + {{process.notes}}
    Captivity ProcessesProcesses <%= link_to 'Download', admin_exports_download_path(:data_type => "CitesProcesses", :filters => {}) %> From 24f3951cb26b85eedc78db4992245e2de9968d55 Mon Sep 17 00:00:00 2001 From: lucacug Date: Fri, 7 Oct 2022 15:46:44 +0100 Subject: [PATCH 053/109] fix: show link other than fulllink also in the history section --- .../species/templates/taxon_concept/_cites_processes.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 4e6cb6d43..a7275a8c5 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -78,7 +78,7 @@ {{#if process.document}} - {{process.document}} + Link {{/if}} - {{process.start_event_name}} ({{process.start_date}}) + {{#if process.start_event_name}} + {{process.start_event_name}} ({{process.start_date}}) + {{else}} + {{process.start_date}} + {{/if}} {{#if process.document}} @@ -73,7 +77,11 @@ {{process.geo_entity.name}} - {{process.start_event_name}} ({{process.start_date}}) + {{#if process.start_event_name}} + {{process.start_event_name}} ({{process.start_date}}) + {{else}} + {{process.start_date}} + {{/if}} {{#if process.document}} diff --git a/app/serializers/species/cites_process_serializer.rb b/app/serializers/species/cites_process_serializer.rb index 04c741cc9..e06a6f351 100644 --- a/app/serializers/species/cites_process_serializer.rb +++ b/app/serializers/species/cites_process_serializer.rb @@ -4,7 +4,7 @@ class Species::CitesProcessSerializer < ActiveModel::Serializer def start_event_name - object.start_event.name + object.start_event.try(:name) end end From ca78f19f53d510faa2c4b748806c900f61dd2811 Mon Sep 17 00:00:00 2001 From: lucacug Date: Mon, 17 Oct 2022 15:48:03 +0100 Subject: [PATCH 079/109] fix: order cites processes by type and country --- app/models/species/cites_processes_export.rb | 9 +++++---- .../species/show_taxon_concept_serializer_cites.rb | 5 ++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/models/species/cites_processes_export.rb b/app/models/species/cites_processes_export.rb index 2259d9abc..1cfbd5364 100644 --- a/app/models/species/cites_processes_export.rb +++ b/app/models/species/cites_processes_export.rb @@ -1,10 +1,11 @@ class Species::CitesProcessesExport < Species::CsvCopyExport def query - rel = CitesProcess.joins("LEFT JOIN taxon_concepts ON - taxon_concept_id = taxon_concepts.id LEFT JOIN geo_entities ON - geo_entity_id = geo_entities.id LEFT JOIN events ON - start_event_id = events.id").order('taxon_concepts.id','cites_processes.id') + rel = CitesProcess + .joins("LEFT JOIN taxon_concepts ON taxon_concept_id = taxon_concepts.id + LEFT JOIN geo_entities ON geo_entity_id = geo_entities.id + LEFT JOIN events ON start_event_id = events.id") + .order('taxon_concepts.full_name','cites_processes.type','geo_entities.name_en') rel.select(sql_columns) end diff --git a/app/serializers/species/show_taxon_concept_serializer_cites.rb b/app/serializers/species/show_taxon_concept_serializer_cites.rb index e3f002c55..3a9ebc9b3 100644 --- a/app/serializers/species/show_taxon_concept_serializer_cites.rb +++ b/app/serializers/species/show_taxon_concept_serializer_cites.rb @@ -11,7 +11,10 @@ class Species::ShowTaxonConceptSerializerCites < Species::ShowTaxonConceptSerial has_many :processes, :serializer => Species::CitesProcessSerializer, :key => :cites_processes def processes - CitesProcess.includes(:geo_entity, :start_event).where(taxon_concept_id: object.id).order(:start_date) + CitesProcess.includes(:start_event) + .joins("LEFT JOIN geo_entities ON geo_entity_id = geo_entities.id") + .where(taxon_concept_id: object.id) + .order('cites_processes.type', 'geo_entities.name_en') end def include_distribution_references? From 5f084ed040d02de25c91e9beff524e55cdbd949d Mon Sep 17 00:00:00 2001 From: lucacug Date: Mon, 17 Oct 2022 15:59:20 +0100 Subject: [PATCH 080/109] doc: add disclaimer text to about page --- app/views/pages/about.html.erb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/views/pages/about.html.erb b/app/views/pages/about.html.erb index 7245647d2..f166e182b 100644 --- a/app/views/pages/about.html.erb +++ b/app/views/pages/about.html.erb @@ -92,6 +92,11 @@ that when filtering on a country, all species that occur within that country and its territories will be provided.

    +

    Note on CITES Processes: The information for the cases relating to the + Significant Trade Review process has been obtained from the + CITES Review of Significant Trade Management System maintained by the + CITES Secretariat: rst.cites.org

    +

    Browser compatibility

    This site is optimised for Internet Explorer 11, Microsoft Edge, Firefox, Safari and Google Chrome. The site may not display properly in older browsers.

    @@ -147,7 +152,7 @@

    Document search

    - Species+ allows users to search for available CITES documents through the "Search for CITES Documents" tab and to refine these searches by taxon and by country. There are three categories of documents available: + Species+ allows users to search for available CITES documents through the "Search for CITES Documents" tab and to refine these searches by taxon and by country. There are three categories of documents available:

    • "Meetings" – this category includes CoP proposals, documents related to the CITES Review of Significant Trade process discussed within the Animals and Plants Committees, and documents related to meetings of the EU Scientific Review Group. CITES Standing Committee documents are not included within the documents search functionality.
    • "Identification materials" – this category includes materials from the CITES Identification Manual and identification materials hosted on the CITES Virtual College; and
    • From a91cf6a8838f00a7ef180d109b5108dc08ec2515 Mon Sep 17 00:00:00 2001 From: Will Kocur Date: Tue, 18 Oct 2022 10:23:32 +0100 Subject: [PATCH 081/109] feat: add region to geo_entities endpoint --- .../javascripts/cites_trade/application.js | 24 +++++-------------- app/models/geo_entity_type.rb | 2 +- 2 files changed, 7 insertions(+), 19 deletions(-) diff --git a/app/assets/javascripts/cites_trade/application.js b/app/assets/javascripts/cites_trade/application.js index 8141acd25..aef27e8f0 100644 --- a/app/assets/javascripts/cites_trade/application.js +++ b/app/assets/javascripts/cites_trade/application.js @@ -1,15 +1,8 @@ -//TODO: align with backend -const EU_OPTION = { - geo_entity_type: 'REGION', - id: 1001, - iso_code2: 'EU', - name: 'European Union' -} - $(document).ready(function(){ var ajaxFail, initExpctyImpcty, initTerms, initSources, initPurposes, countries = {}, units = {}, terms = {}, purposes = {}, sources = {}, + euId = '', selected_taxa = '', is_search_page = $('#form_expert').length > 0, is_download_page = $('#net_gross_options').length > 0, @@ -113,13 +106,6 @@ $(document).ready(function(){ function getParamsFromInputs(){ var values = parseInputs($('#form_expert :input')); - // TODO: add required logic here - ['exporters_ids', 'importers_ids'].forEach(function (key) { - if (isEuInArray(values[key])) { - console.log('Getting params: ' + key + ' contains EU.') - } - }) - return $.param({'filters': values}); } @@ -248,6 +234,10 @@ $(document).ready(function(){ initCountriesObj = function (data) { _.each(data.geo_entities, function (country) { countries[country.id] = country; + + if (country.iso_code2 == 'EU') { + euId = country.id.toString() + } }); unLock('initCountriesObj'); } @@ -274,8 +264,6 @@ $(document).ready(function(){ } initExpctyImpcty = function (data) { - data.geo_entities.push(EU_OPTION) - // TODO: Sort if required var args = { data: data.geo_entities, condition: function (item) {return item.iso_code2}, @@ -513,7 +501,7 @@ $(document).ready(function(){ } function isEuInArray (array) { - return array.indexOf(EU_OPTION.id.toString()) >= 0 + return array.indexOf(euId) >= 0 } $('#side .ui-button, #form .ui-button').hover(function() { diff --git a/app/models/geo_entity_type.rb b/app/models/geo_entity_type.rb index 880c01e34..02c5b6aa2 100644 --- a/app/models/geo_entity_type.rb +++ b/app/models/geo_entity_type.rb @@ -20,7 +20,7 @@ class GeoEntityType < ActiveRecord::Base "1" => [CITES_REGION], # CITES Checklist "2" => [COUNTRY, TERRITORY], # CITES Checklist "3" => [CITES_REGION, COUNTRY, TERRITORY], # Species+ - "4" => [COUNTRY, TERRITORY, TRADE_ENTITY], # CITES Trade + "4" => [COUNTRY, REGION, TERRITORY, TRADE_ENTITY], # CITES Trade "5" => [COUNTRY, TERRITORY] # E-library } CURRENT_ONLY_SETS = ['3'] From affb69ab58988b168ec2de84beae70a64e558a03 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 11:30:57 +0100 Subject: [PATCH 082/109] feat: add ember helpers to check string equality in templates --- .../javascripts/species/helpers/handlebars_helpers.js.coffee | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/javascripts/species/helpers/handlebars_helpers.js.coffee b/app/assets/javascripts/species/helpers/handlebars_helpers.js.coffee index d7b47fb4f..5f13f8cd2 100644 --- a/app/assets/javascripts/species/helpers/handlebars_helpers.js.coffee +++ b/app/assets/javascripts/species/helpers/handlebars_helpers.js.coffee @@ -62,3 +62,7 @@ Ember.Handlebars.helper 'truncate', (text, options) -> if text.length > limit text = text.substr(0, limit - 3) + "..." return text + +Ember.Handlebars.registerHelper 'ifEquals', (arg1, arg2, options) -> + arg1 = Ember.Handlebars.get(this, arg1, options) + if (arg1 == arg2) then options.fn(this) else options.inverse(this) From 1dcd6b8f0bde6b228288e2db50480ff71eec58e7 Mon Sep 17 00:00:00 2001 From: lucacug Date: Tue, 18 Oct 2022 11:32:26 +0100 Subject: [PATCH 083/109] feat: display notes and documents in the same column and hardcode doc title for rst when present --- .../taxon_concept/_cites_processes.handlebars | 48 +++++++++++-------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars index 015aa081f..430e30d27 100644 --- a/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars +++ b/app/assets/javascripts/species/templates/taxon_concept/_cites_processes.handlebars @@ -12,9 +12,8 @@
    REVIEW COUNTRY DATE ENTRYDETAILS STATUSNOTESDETAILS
    - {{#if process.document}} - - Link - - {{/if}} - {{process.status}} - {{process.notes}} + {{#ifEquals process.resolution 'Significant Trade'}} + {{#if process.document}} + + CITES RST Management System + + {{/if}} + {{else}} + {{process.notes}} +

    + + {{process.document_title}} + + {{/ifEquals}}
            
    - {{#if process.document}} - - Link - - {{/if}} - {{process.status}} - {{process.notes}} - + {{#ifEquals process.resolution 'Significant trade'}} + + CITES RST Management System + + {{else}} + {{process.notes}} +

    + + {{process.document_title}} + + {{/ifEquals}} +
    Resolution Country or TerritoryTypeMeeting Start date Status NotesDocument linkDocument title Actions Info
    <%= process.start_date_formatted %> <%= process.status %><%= process.notes %><%= process.notes %><%= process.document %><%= process.document_title %> <%= link_to edit_icon, edit_admin_taxon_concept_cites_captivity_process_path(@taxon_concept, process) @@ -28,7 +32,7 @@ %> - <%= tracking_info(process) %> + <%= tracking_info(process) %>